﻿h1 {
    margin-bottom: 50px;
}


h2 {
    text-align: start;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-decoration: underline;
}


h2:hover {
    text-decoration: none;
}


.news-item {
    margin-bottom: 25px;
}


.news-container {
    display: flex;
    gap: 10px;
}


.news-image {
    width: min(320px, 95%);
    border-radius: 8px;
    overflow: hidden;
    object-fit: cover;
    flex-shrink: 0;
}


.news-image img {
    display: block;
    width: 100%;
}


.news-date {
    font-style: italic;
    margin-bottom: 10px;
    display: block;
}


.news-content {
    text-indent: 2em;
}


@media (max-width: 800px) {
    h1 {
        margin-bottom: 20px;
    }


    .news-container {
        flex-direction: column;
    }


    .news-image {
        margin: 0 auto;
    }

}



