.news-list-container {
    width: min(900px, 90%);
    margin: 80px auto;
    padding-bottom: 40px;
}

.news-item {
    padding: 25px 0;
    border-bottom: 1px solid rgba(16, 27, 5, 0.15);
}

.news-item:last-child {
    border-bottom: none;
}

.news-headline {
    cursor: pointer;
    font-size: 1.8rem;
    color: #101b05;
    font-weight: 700;
    margin-bottom: 8px;
}

a{
    text-decoration: none;
}

.news-date {
    font-size: 0.95rem;
    color: #5d825a;
    margin-bottom: 10px;
}

.news-summary {
    color: #5d825a;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.news-readmore {
    color: #378056;
    font-weight: 600;
    transition: color 0.2s ease;
}
.newsreadmore:hover {
    color: #ffffff;
}

.news-hero {
    width: 100%;
    height: 30vh;
    background-image: url('../img/news-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-hero-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.news-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-hero p {
    color: #e8f4e6;
    font-size: 1.15rem;
    line-height: 1.6;
}

