.hero_section {
    height: 500px;
    min-height: 300px;
}

.hero_background {
    height: 600px;
    min-height: 400px;
}

.hero_background img {
    object-position: bottom;
}

.hero_title_section {
    display: flex;
    justify-content: center;
    bottom: 0;
    left: 0;
    padding: 20px 0;
    backdrop-filter: blur(var(--glass-blur));
    background-color: rgba(0, 0, 0, 0.2);
}

.hero_title {
    flex-grow: 1;
    justify-self: stretch;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

.news_section {
    background-color: var(--background-color);
    backdrop-filter: none;
}

.news_container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    overflow: wrap;
    margin: 0;
}

.news_item {
    height: auto;
    width: auto;
    background-size: 110% 110%;
    background-position: center;
    background-color: var(--background-alt-color);
    text-decoration-line: none;

    a {
        display: block;
        padding: 0;
        margin: 0;
        height: 0;
        text-decoration: none;
        text-decoration-line: none;

        color: var(--text-color);

        &:hover {
            text-decoration-line: none;
            color: var(--primary-color);
            transition: 0.15s;
        }
    }

    p {
        text-wrap: nowrap;
    }

    &:hover {
        transform: scale(1.01);
        text-decoration-line: none;
    }
}

.news_item_info {
    padding: 8px;
    backdrop-filter: blur(var(--glass-blur));
    background-color: rgba(0, 0, 0, 0.2);
    height: auto;
    width: 100%;
}

.news_item_img {
    display: block;
    height: auto;
    background-color: #000000;
}

.news_item .news_item_info .news_item_description {
    display: none;
    height: 0;
}

@media only screen and (max-width: 1200px) {
    .news_container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 768px) {
    .news_container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        width: 100%;
    }
}