﻿.news-title a {
    text-decoration: none;
    color: #0071c1;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

    .news-title a:hover {
        text-decoration: underline;
    }

.news-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
}

.news-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1.5rem;
}
    .news-item h2 {
        margin-bottom: 1rem;
    }
        .news-item h2 a {
            text-decoration: none; color: #0077cc;
        }

        .news-item h2 a:hover {
            text-decoration: underline;
            color: #0077cc;
        }

.news-teaser {
    display: flex;
    gap: 10%;
    flex-wrap: wrap;
    align-items: flex-start;
}
    .news-teaser .news-image {
        flex: 0 0 20%;
        max-width: 20%;
    }
        .news-teaser .news-image img {
            width: 100%;
            height: auto;
            display: block;
        }
    .news-teaser .news-desc {
        flex: 0 0 70%;
        max-width: 70%;
    }
        .news-teaser .news-desc a {
            margin-left: 5px;
        }

.news-desc .more-link {
    margin-left: 0.3em;
    white-space: nowrap; 
}
