/* ===== General Reset ===== */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* ===== Hero Section for Articles ===== */
.article-hero {
    background: #ffffff;
    padding: 40px 20px 40px 20px;
    margin-top: 0;
    text-align: center;
    min-height: 1px; /* <--- force the hero block to exist even if empty */
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-container h1 {
    font-size: 2rem;
    color: #002D5B;
    margin-bottom: 15px;
}

.hero-container p {
    font-size: 1.1rem;
    color: #6D6D6D;
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.hero-container .hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
}

/* ===== Summary Section ===== */
.article-summary {
    background: #F6F6F6;
    padding: 60px 20px;
}

.article-summary h2 {
    font-size: 1.5rem;
    color: #002D5B;
    text-align: center;
    margin-bottom: 30px;
}

.article-summary ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.article-summary ul li {
    margin-bottom: 10px;
    text-align: center;
}

.article-summary ul li a {
    text-decoration: none;
    color: #0044cc;
    font-size: 1rem;
}

.article-summary ul li a:hover {
    text-decoration: underline;
    color: #1E90FF;
}

/* ===== Section Styling ===== */
.article-section {
    width: 100%;
    background: #ffffff;
}

.article-section.grey {
    background: #F6F6F6;
}


/* Inner wrapper for content */
.section-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px; 
}

/* Headings inside sections */
.section-container h2 {
    color: #002D5B;
    margin-bottom: 20px;
    margin-top: 0;
    font-size: 1.7rem;
}

.section-container p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

/* Lists inside sections */
.section-container ul {
    padding-left: 20px;
    margin-bottom: 1rem;
}

.section-container a {
    color: #0044cc;
    text-decoration: none;
}

.section-container a:hover {
    text-decoration: underline;
}

/* ===== Navigation (Previous / Next Links) ===== */
.article-navigation {
    background: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.navigation-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.navigation-buttons a {
    background: #002D5B;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.navigation-buttons a:hover {
    background-color: #0044cc;
}

/* ===== Responsive Design ===== */
@media (max-width: 600px) {
    .hero-container h1 {
        font-size: 1.6rem;
    }

    .article-summary ul li {
        font-size: 0.95rem;
    }

    .navigation-buttons {
        flex-direction: column;
        gap: 20px;
    }
}

.article-dates {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #888;
}
.article-dates span {
    display: inline-block;
}

/* ===== Breadcrumbs Navigation ===== */
.breadcrumbs {
    font-size: 0.9rem;
    color: #666;
    padding: 90px 20px 20px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumbs a {
    color: #0044cc;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #333;
}

