.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    margin-top: 5.625rem;
    gap: 2rem;
    width: 100vw;
    max-width: 100vw;
}

.hero-title {
    font-family: 'Finlandica', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    color: var(--white);
    text-align: center;
}

section {
    width: 80vw;
    max-width: 1200px;
    margin: 8rem auto;
}

.about-section {
    text-align: center;
}

.section-title {
    font-family: 'Finlandica', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: var(--black);
    text-align: center;
}

.news-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.news-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 80vw;
    max-width: 1200px;
    padding-top: 3rem;
    padding-bottom: 3rem;
    gap: 4rem;
}

.news-content {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: space-between;
    gap: 1rem;
}

.news-content h2 {
    font-family: 'Finlandica', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--black);
}

.news-date {
    font-family: 'Figtree', Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: #2e2e2e;
    margin: 0;
}

.news-content p {
    font-family: 'Figtree', Arial, sans-serif;
    font-weight: 400;
    color: var(--black);
}


.news-item:nth-child(even) {
    flex-direction: row-reverse;
}

.news-item + .news-item {
    border-top: 1px solid #000000;
    padding-top: 2rem;
}

.news-image {
    width: 15vw;
    border-radius: 15px;
    aspect-ratio: 12 / 16;
    height: auto;
    object-fit: cover;
}

.news-link {
    text-decoration: none;
    color: var(--white);
    background-color: var(--blue);
    padding: 0.5rem 2rem;
    border-radius: 5px;
    font-weight: 300;
    width: fit-content;
}





@media screen and (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .news-section {
        margin: 4rem auto;
    }

    .news-content h2 {
        font-size: 1.75rem;
    }

    .news-item {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .news-item:nth-child(even) {
        flex-direction: column;
    }
    
    .news-image {
        width: 80vw;
        border-radius: 15px;
        aspect-ratio: 4 / 3;
        height: auto;
        object-fit: cover;
    }

}