#news-hero-image {
    background-image: url('../images/news/news_hero_image.jpg'); 
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(84, 58, 51, 0.15);
    border-radius: inherit;
}

.hero-overlay h2 {
    font-family: 'Quickpen', sans-serif;
    font-size: 4em;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.news-list-section {
    padding: 80px 0 200px;
    background-color: #fff;
    margin-top: -30px;
    border-radius: 0;
    position: relative;
    z-index: 6;
}

.news-list-section .container {
    width: 90%;
    max-width: 900px; 
    margin: 0 auto;
}

.newsList-full {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsList-full a.content {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    text-decoration: none;
    color: #543A33;
    border-radius: 0;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.newsList-full a.content:hover {
    background-color: #F4C93F; 
}

.newsList-full .data {
    display: flex;
    align-items: baseline;
    gap: 1.5em;
    width: 100%;
}

.newsList-full time {
    font-family: 'DINSchrift', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    flex-shrink: 0;
    color: #888;
}

.newsList-full .news-title {
    margin: 0;
    line-height: 1.6;
    font-weight: 700;
}

.newsList-full a.content::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #d1c9c7;
    margin-left: auto;
    padding-left: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.newsList-full a.content:hover::after {
    transform: translateX(4px);
    color: #543A33;
}

.article-section {
    padding: 80px 0 200px; 
    background-color: #fff;
    margin-top: -30px;
    border-radius: 0;
    position: relative;
    z-index: 6;
}

.article-section .container {
    width: 90%;
    max-width: 1200px; 
    margin: 0 auto;
}

.article-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.article-date {
    font-family: 'DINSchrift', sans-serif;
    font-size: 1.2rem;
    color: #888;
    display: block;
    margin-bottom: 15px;
}

.article-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: #543A33;
}

.article-body {
    line-height: 2;
    font-size: 1rem;
    color: #543A33;
}

.article-body p {
    margin-bottom: 1.5em;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    margin: 2em auto;
    display: block;

}

.article-body a {
    color: #F4C93F;
    text-decoration: underline;
    font-weight: bold;
}

.article-body a:hover {
    color: #543A33;
}

.article-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    text-align: center;
}

.article-not-found {
    text-align: center;
    padding: 60px 0;
}

.article-not-found h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.article-not-found p {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 1.8rem;
    }
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link, .nav-link-placeholder {
    flex: 1;
    text-align: center;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none; 
    color: #543A33; 
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.prev-link {
    justify-content: flex-start;
}

.next-link {
    justify-content: flex-end;
}

.back-to-list {
    flex-shrink: 0; 
}

@media (max-width: 768px) {
    .article-navigation {
        flex-direction: column;
        gap: 20px;
    }
    .back-to-list {
        order: 1; 
    }
    .prev-link, .next-link, .nav-link-placeholder {
        order: 2;
    }
}