```css
/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #006b3f;
    --primary-dark: #004d2d;
    --secondary: #f4b400;
    --dark: #17231d;
    --text: #4b5751;
    --light: #f5f8f6;
    --white: #ffffff;
    --border: #e1e8e3;
    --shadow: 0 10px 35px rgba(0, 0, 0, .08);
    --radius: 12px;
    --container: 1240px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font-family: inherit;
}

.container {
    width: min(92%, var(--container));
    margin: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,.9);
    font-size: 13px;
}

.top-bar-content {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-links {
    display: flex;
    gap: 22px;
}

.top-links a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-links a:hover {
    color: var(--secondary);
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,.07);
}

.header-content {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-placeholder {
    width: 55px;
    height: 55px;
    border: 2px dashed #aab5ae;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #758079;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    color: var(--primary);
    font-size: 22px;
}

.logo-text span {
    color: #68756d;
    font-size: 9px;
    text-transform: uppercase;
}

.navbar {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.navbar > a,
.nav-dropdown > a {
    padding: 30px 10px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.navbar > a:hover,
.navbar > a.active,
.nav-dropdown > a:hover {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a i {
    font-size: 8px;
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 225px;
    background: white;
    border-top: 3px solid var(--primary);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 17px;
    font-size: 13px;
    border-bottom: 1px solid #edf1ee;
}

.dropdown-menu a:hover {
    color: var(--primary);
    background: var(--light);
}

.search-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    color: var(--primary);
    cursor: pointer;
}

.search-button:hover {
    color: white;
    background: var(--primary);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(0, 50, 30, .95),
            rgba(0, 80, 50, .65),
            rgba(0, 0, 0, .15)
        ),
        linear-gradient(
            135deg,
            #174c35,
            #527563
        );

    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 850px;
}

.hero-label {
    display: inline-block;
    color: var(--secondary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    margin-bottom: 20px;
}

.hero h1 {
    max-width: 850px;
    font-size: clamp(40px,5vw,68px);
    line-height: 1.08;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    max-width: 680px;
    color: rgba(255,255,255,.9);
    font-size: 19px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    padding: 13px 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: .25s;
}

.btn-primary {
    background: var(--secondary);
    color: #222;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    background: #edf4ef;
}

.hero-controls {
    position: absolute;
    bottom: 30px;
    right: 5%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-controls button {
    width: 40px;
    height: 40px;
    color: white;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;
}

.hero-dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,.5);
    border-radius: 50%;
}

.hero-dot.active {
    width: 25px;
    background: var(--secondary);
    border-radius: 20px;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

section {
    padding: 90px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.section-heading.center {
    display: block;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px;
}

.section-heading > div > span,
.section-heading > span {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.section-heading h2 {
    color: var(--dark);
    font-size: clamp(28px,3vw,40px);
    line-height: 1.2;
    margin-top: 5px;
}

.section-heading p {
    color: #6c766f;
    margin-top: 10px;
}

.view-all {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}


/* =========================================================
   QUICK ACCESS
========================================================= */

.quick-access {
    background: var(--light);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.quick-card {
    padding: 25px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: .3s;
}

.quick-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.quick-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,107,63,.09);
    color: var(--primary);
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 17px;
}

.quick-card h3 {
    color: var(--dark);
    font-size: 17px;
    margin-bottom: 7px;
}

.quick-card p {
    font-size: 13px;
    margin-bottom: 16px;
}

.quick-card > span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   ANNOUNCEMENTS
========================================================= */

.announcements {
    background: white;
}

.announcement-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.announcement-card {
    display: flex;
    gap: 18px;
    padding: 25px;
    background: var(--light);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
}

.announcement-date {
    min-width: 58px;
    height: 68px;
    color: white;
    background: var(--primary);
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.announcement-date strong {
    font-size: 24px;
    line-height: 1;
}

.announcement-date span {
    font-size: 10px;
}

.tag {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.announcement-card h3 {
    color: var(--dark);
    font-size: 17px;
    line-height: 1.3;
    margin: 5px 0;
}

.announcement-card p {
    font-size: 13px;
}

.announcement-card a {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   NEWS ARTICLES
========================================================= */

.news-section {
    background: #f7f9f8;
}

.news-layout {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 30px;
}

.featured-news {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,.05);
}

.image-placeholder {
    min-height: 120px;
    background: linear-gradient(135deg,#dfe7e2,#bcc9c1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #68756d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.image-placeholder.large {
    min-height: 310px;
}

.news-content {
    padding: 28px;
}

.article-meta,
.story-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 11px;
    color: #7a837e;
}

.content-label {
    padding: 4px 8px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
    border-radius: 4px;
}

.news-label {
    background: rgba(0,107,63,.1);
    color: var(--primary);
}

.news-content h3 {
    color: var(--dark);
    font-size: 25px;
    line-height: 1.3;
    margin: 10px 0;
}

.news-content p {
    font-size: 14px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-top: 18px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.small-news {
    background: white;
    display: grid;
    grid-template-columns: 125px 1fr;
    gap: 18px;
    padding: 12px;
    border-radius: var(--radius);
}

.small-news h3 {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.3;
    margin: 5px 0;
}

.small-news a {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   EDUCATION STATISTICS
========================================================= */

.statistics {
    color: white;
    background: linear-gradient(110deg,var(--primary-dark),var(--primary));
}

.section-heading.light span {
    color: var(--secondary);
}

.section-heading.light h2 {
    color: white;
}

.section-heading.light p {
    color: rgba(255,255,255,.75);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.stat-card {
    padding: 35px 20px;
    text-align: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
}

.stat-icon {
    color: var(--secondary);
    font-size: 24px;
    margin-bottom: 15px;
}

.stat-card strong {
    display: block;
    color: white;
    font-size: 38px;
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,.75);
}

.statistics-button {
    text-align: center;
    margin-top: 35px;
}


/* =========================================================
   STORIES
========================================================= */

.stories-section {
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 20px;
}

.story-card {
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: .3s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.story-featured {
    grid-row: span 2;
}

.story-image {
    min-height: 190px;
    background: linear-gradient(135deg,#d9e3dd,#b7c5bc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #66736b;
    font-size: 10px;
    font-weight: 800;
}

.large-story-image {
    min-height: 330px;
}

.story-content {
    padding: 22px;
}

.story-label {
    color: #7b5100;
    background: rgba(244,180,0,.15);
}

.story-content h3 {
    color: var(--dark);
    font-size: 19px;
    line-height: 1.35;
    margin: 10px 0;
}

.story-featured .story-content h3 {
    font-size: 25px;
}

.story-content p {
    font-size: 13px;
}

.story-link {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    margin-top: 14px;
}


/* =========================================================
   PRIORITIES
========================================================= */

.priorities {
    background: white;
}

.priority-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.priority-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: .3s;
}

.priority-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.priority-card > i {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 17px;
}

.priority-card h3 {
    color: var(--dark);
    margin-bottom: 7px;
}

.priority-card p {
    font-size: 13px;
}


/* =========================================================
   RESOURCES
========================================================= */

.resources {
    background: var(--light);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

.resource-card {
    display: grid;
    grid-template-columns: 50px 1fr 20px;
    gap: 15px;
    align-items: center;
    padding: 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.resource-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,107,63,.1);
    color: var(--primary);
    border-radius: 8px;
}

.resource-card span {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}

.resource-card h3 {
    color: var(--dark);
    font-size: 15px;
}

.resource-card small {
    font-size: 11px;
    color: #7a837e;
}


/* =========================================================
   LEADERSHIP
========================================================= */

.leadership {
    background: white;
}

.leadership-grid {
    max-width: 1050px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.leader-card {
    background: var(--light);
    overflow: hidden;
    border-radius: var(--radius);
}

.leader-image {
    height: 290px;
    background: linear-gradient(135deg,#dbe4df,#b9c6be);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #657269;
    font-size: 11px;
    font-weight: 700;
}

.leader-info {
    padding: 22px;
    text-align: center;
}

.leader-info h3 {
    color: var(--dark);
    font-size: 17px;
}

.leader-info span {
    display: block;
    color: var(--primary);
    font-size: 12px;
    margin: 4px 0 14px;
}

.leader-info a {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   OPPORTUNITIES
========================================================= */

.opportunities {
    background: var(--primary-dark);
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.opportunity-card {
    display: grid;
    grid-template-columns: 45px 1fr 20px;
    gap: 15px;
    align-items: center;
    padding: 25px;
    color: white;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
}

.opportunity-card > i:first-child {
    color: var(--secondary);
    font-size: 24px;
}

.opportunity-card h3 {
    font-size: 17px;
}

.opportunity-card p {
    color: rgba(255,255,255,.7);
    font-size: 12px;
}

.opportunity-card .arrow {
    color: var(--secondary);
}


/* =========================================================
   EVENTS
========================================================= */

.events {
    background: white;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.event-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.event-date {
    width: 58px;
    height: 68px;
    flex-shrink: 0;
    color: white;
    background: var(--primary);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-date strong {
    font-size: 24px;
    line-height: 1;
}

.event-date span {
    font-size: 10px;
}

.event-card > div:last-child > span {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}

.event-card h3 {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.3;
    margin: 5px 0;
}

.event-card p {
    font-size: 11px;
    margin: 8px 0;
}

.event-card a {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   PARTNERS
========================================================= */

.partners {
    background: var(--light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 15px;
}

.partner-logo {
    height: 100px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 10px;
    color: #7a847e;
}


/* =========================================================
   SOCIAL
========================================================= */

.social-section {
    background: white;
}

.social-content {
    padding: 45px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.social-content span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.social-content h2 {
    color: var(--dark);
    font-size: 30px;
}

.social-content p {
    font-size: 13px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    color: white;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: #222;
    background: var(--secondary);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 70px 0 0;
    background: #111a15;
    color: rgba(255,255,255,.7);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.7fr repeat(4,1fr);
    gap: 40px;
    padding-bottom: 55px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo strong {
    display: block;
    color: white;
    font-size: 21px;
}

.footer-logo span {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
}

.footer-about p {
    max-width: 350px;
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-column h3 {
    color: white;
    font-size: 15px;
    margin-bottom: 15px;
}

.footer-column a {
    display: block;
    font-size: 12px;
    margin: 9px 0;
}

.footer-column a:hover {
    color: var(--secondary);
}

.footer-column p {
    font-size: 12px;
    margin: 10px 0;
}

.footer-column p i {
    width: 20px;
    color: var(--secondary);
}

.footer-bottom {
    min-height: 70px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 11px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a:hover {
    color: var(--secondary);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:1100px) {

    .navbar > a,
    .nav-dropdown > a {
        padding-left: 6px;
        padding-right: 6px;
        font-size: 11px;
    }

    .quick-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-main {
        grid-template-columns: 2fr repeat(2,1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:768px) {

    section {
        padding: 60px 0;
    }

    .top-bar {
        display: none;
    }

    .header-content {
        min-height: 72px;
    }

    .logo-text span {
        display: none;
    }

    .navbar {
        display: none;
    }

    .search-button {
        margin-left: auto;
    }

    .hero {
        min-height: 520px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-heading {
        display: block;
    }

    .section-heading .view-all {
        display: inline-block;
        margin-top: 15px;
    }

    .quick-grid,
    .announcement-grid,
    .statistics-grid,
    .priority-grid,
    .resource-grid,
    .leadership-grid,
    .opportunity-grid,
    .event-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .news-layout {
        grid-template-columns: 1fr;
    }

    .story-featured {
        grid-row: auto;
    }

    .partners-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .social-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1/-1;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px 0;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width:480px) {

    .hero h1 {
        font-size: 34px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .small-news {
        grid-template-columns: 95px 1fr;
    }

    .social-content {
        padding: 30px 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 5px;
    }

}


/* =========================================================
   FEATURED STORIES
========================================================= */

.stories-section {
    background: #ffffff;
    padding: 80px 0;
}


/* ---------------------------------------------------------
   SECTION HEADER
--------------------------------------------------------- */

.stories-section .section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.stories-section .section-heading > div > span {
    display: block;
    color: #006b3f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.stories-section .section-heading h2 {
    color: #17231d;
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 18px;
}

.stories-section .section-heading p {
    color: #59645e;
    font-size: 13px;
    margin: 0;
    max-width: 600px;
}

.stories-section .view-all {
    color: #006b3f;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.stories-section .view-all i {
    margin-left: 3px;
    font-size: 9px;
}


/* ---------------------------------------------------------
   MAIN STORIES LAYOUT
--------------------------------------------------------- */

.stories-grid {
    display: grid;
    grid-template-columns: 1.35fr 1.65fr;
    gap: 14px;
    align-items: stretch;
}


/* ---------------------------------------------------------
   FEATURED LARGE STORY
--------------------------------------------------------- */

.story-featured {
    background: #ffffff;
    border: 1px solid #dce4df;
    border-radius: 8px;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    min-width: 0;
}


/* ---------------------------------------------------------
   SMALL STORIES GRID
--------------------------------------------------------- */

.stories-small-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 14px;
    min-width: 0;
}


/*
   Make the third story appear underneath
   the first small story.
*/

.stories-small-grid .story-small:nth-child(3) {
    grid-column: 1;
}


/* ---------------------------------------------------------
   ALL STORY CARDS
--------------------------------------------------------- */

.story-card {
    background: #ffffff;
    border: 1px solid #dce4df;
    border-radius: 8px;
    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}


/* ---------------------------------------------------------
   STORY IMAGE
--------------------------------------------------------- */

.story-image {
    width: 100%;
    height: 118px;
    overflow: hidden;
    background: #dce5df;
}

.story-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition: transform .4s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.04);
}


/* ---------------------------------------------------------
   LARGE FEATURED IMAGE
--------------------------------------------------------- */

.large-story-image {
    height: 207px;
}


/* ---------------------------------------------------------
   STORY CONTENT
--------------------------------------------------------- */

.story-content {
    padding: 14px;
}


/* ---------------------------------------------------------
   STORY META
--------------------------------------------------------- */

.story-meta {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 7px;

    color: #7a837e;
    font-size: 8px;
    line-height: 1.2;
}


/* ---------------------------------------------------------
   STORY LABEL
--------------------------------------------------------- */

.content-label.story-label {
    display: inline-block;

    padding: 4px 6px;

    background: #fff3d2;
    color: #735300;

    border-radius: 3px;

    font-size: 7px;
    font-weight: 800;
    line-height: 1;

    text-transform: uppercase;
    letter-spacing: .3px;
}


/* ---------------------------------------------------------
   STORY TITLES
--------------------------------------------------------- */

.story-content h3 {
    color: #101914;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;

    margin: 7px 0 8px;
}

.story-content h3 a {
    color: inherit;
    text-decoration: none;
}

.story-content h3 a:hover {
    color: #006b3f;
}


/* LARGE STORY TITLE */

.story-featured .story-content h3 {
    font-size: 20px;
    line-height: 1.25;
}


/* ---------------------------------------------------------
   STORY DESCRIPTION
--------------------------------------------------------- */

.story-content p {
    color: #66716b;
    font-size: 10px;
    line-height: 1.5;

    margin: 0;
}


/* ---------------------------------------------------------
   READ STORY LINK
--------------------------------------------------------- */

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: #006b3f !important;

    font-size: 9px;
    font-weight: 700;

    margin-top: 12px;

    text-decoration: none !important;
}

.story-link:hover {
    color: #004d2d !important;
}

.story-link i {
    font-size: 8px;
}


/* ---------------------------------------------------------
   SMALL STORY CARD
--------------------------------------------------------- */

.story-small {
    min-width: 0;
}

.story-small .story-content {
    min-height: 130px;
}

.story-small .story-content h3 {
    font-size: 14px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .large-story-image {
        height: 280px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .stories-section {
        padding: 60px 0;
    }

    .stories-section .section-heading {
        display: block;
    }

    .stories-section .section-heading h2 {
        font-size: 30px;
    }

    .stories-section .view-all {
        display: inline-block;
        margin-top: 15px;
    }

    .stories-small-grid {
        grid-template-columns: 1fr;
    }

    .stories-small-grid .story-small:nth-child(3) {
        grid-column: auto;
    }

    .story-image,
    .large-story-image {
        height: 220px;
    }

    .story-featured .story-content h3 {
        font-size: 19px;
    }

}



/* =========================================================
   LATEST NEWS ARTICLES
========================================================= */

.news-section {
    background: #f6f8f7;
    padding: 80px 0;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.news-section .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 30px;

    margin-bottom: 38px;
}

.news-section .section-heading > div > span {
    display: block;

    color: #006b3f;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    margin-bottom: 8px;
}

.news-section .section-heading h2 {
    color: #101914;

    font-size: 43px;
    font-weight: 500;

    line-height: 1.1;

    margin: 0 0 17px;
}

.news-section .section-heading p {
    color: #58655f;

    font-size: 16px;

    margin: 0;

    max-width: 700px;
}

.news-section .view-all {
    color: #006b3f;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    text-decoration: none;
}

.news-section .view-all:hover {
    color: #004d2d;
}


/* =========================================================
   MAIN NEWS LAYOUT
========================================================= */

.news-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(400px, 1fr);

    gap: 32px;

    align-items: start;
}


/* =========================================================
   FEATURED NEWS CARD
========================================================= */

.featured-news {

    background: #ffffff;

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.05);

    border: 1px solid #edf1ee;
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.featured-news-image {

    width: 100%;

    height: 350px;

    overflow: hidden;

    background: #dce5df;
}

.featured-news-image a {

    display: block;

    width: 100%;
    height: 100%;
}

.featured-news-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .4s ease;
}

.featured-news:hover .featured-news-image img {

    transform: scale(1.03);
}


/* =========================================================
   FEATURED CONTENT
========================================================= */

.news-content {

    padding: 34px 32px 36px;
}


/* =========================================================
   ARTICLE META
========================================================= */

.article-meta {

    display: flex;

    align-items: center;

    gap: 17px;

    margin-bottom: 13px;
}

.content-label.news-label {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 78px;

    height: 16px;

    padding: 0 12px;

    background: #c9151d;

    color: #ffffff;

    border-radius: 5px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .8px;

    line-height: 1;

    text-transform: uppercase;
}

.news-date {

    color: #718078;

    font-size: 11px;
}


/* =========================================================
   FEATURED TITLE
========================================================= */

.news-content h3 {

    margin: 0 0 15px;

    color: #101914;

    font-size: 28px;

    font-weight: 500;

    line-height: 1.25;
}

.news-content h3 a {

    color: inherit;

    text-decoration: none;
}

.news-content h3 a:hover {

    color: #006b3f;
}


/* =========================================================
   FEATURED DESCRIPTION
========================================================= */

.news-content p {

    color: #536159;

    font-size: 14px;

    line-height: 1.8;

    margin: 0;
}


/* =========================================================
   READ FULL ARTICLE
========================================================= */

.read-more {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 28px;

    color: #006b3f !important;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none !important;
}

.read-more:hover {

    color: #004d2d !important;
}

.read-more i {

    font-size: 11px;
}


/* =========================================================
   RIGHT SIDE NEWS LIST
========================================================= */

.news-list {

    display: flex;

    flex-direction: column;

    gap: 20px;

    min-width: 0;
}


/* =========================================================
   SMALL NEWS CARD
========================================================= */

.small-news {

    display: grid;

    grid-template-columns: 145px minmax(0, 1fr);

    gap: 20px;

    align-items: center;

    min-height: 162px;

    padding: 14px;

    background: #ffffff;

    border-radius: 14px;

    border: 1px solid #edf1ee;

    box-shadow:
        0 6px 25px rgba(0, 0, 0, 0.04);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.small-news:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.07);
}


/* =========================================================
   SMALL NEWS IMAGE
========================================================= */

.small-news-image {

    width: 145px;

    height: 134px;

    overflow: hidden;

    background: #dce5df;
}

.small-news-image a {

    display: block;

    width: 100%;
    height: 100%;
}

.small-news-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .4s ease;
}

.small-news:hover .small-news-image img {

    transform: scale(1.04);
}


/* =========================================================
   SMALL NEWS CONTENT
========================================================= */

.small-news-content {

    min-width: 0;
}


/* =========================================================
   SMALL NEWS TITLE
========================================================= */

.small-news-content h3 {

    margin: 8px 0 8px;

    color: #101914;

    font-size: 17px;

    font-weight: 500;

    line-height: 1.35;
}

.small-news-content h3 a {

    color: inherit;

    text-decoration: none;
}

.small-news-content h3 a:hover {

    color: #006b3f;
}


/* =========================================================
   SMALL READ MORE
========================================================= */

.small-read-more {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #006b3f !important;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none !important;
}

.small-read-more:hover {

    color: #004d2d !important;
}

.small-read-more i {

    font-size: 9px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .news-layout {

        grid-template-columns: 1fr;

    }

    .featured-news-image {

        height: 350px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .news-section {

        padding: 60px 0;

    }

    .news-section .section-heading {

        display: block;

    }

    .news-section .section-heading h2 {

        font-size: 34px;

    }

    .news-section .section-heading p {

        font-size: 14px;

    }

    .news-section .view-all {

        display: inline-block;

        margin-top: 18px;

    }

    .featured-news-image {

        height: 240px;

    }

    .news-content {

        padding: 25px 20px 28px;

    }

    .news-content h3 {

        font-size: 23px;

    }

    .small-news {

        grid-template-columns: 105px minmax(0, 1fr);

        gap: 14px;

        min-height: 125px;

        padding: 10px;

    }

    .small-news-image {

        width: 105px;

        height: 105px;

    }

    .small-news-content h3 {

        font-size: 14px;

    }

    .content-label.news-label {

        min-width: 60px;

        height: 15px;

        padding: 0 8px;

        font-size: 8px;

    }

    .news-date {

        font-size: 9px;

    }

}

/* =========================================================
   PRESS RELEASES / EVENTS
========================================================= */

.events {
    width: 100%;
    background: #ffffff;
    padding: 70px 0;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.events .section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}


/* Small heading */

.events .section-heading span {

    display: block;

    color: #006b3f;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 15px;
}


/* Main heading */

.events .section-heading h2 {

    margin: 0;

    color: #17231d;

    font-size: 50px;

    font-weight: 400;

    line-height: 1.1;
}


/* Full calendar */

.events .view-all {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: #006b3f;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none !important;

    white-space: nowrap;
}

.events .view-all:hover {

    color: #004d2d;
}


/* =========================================================
   EVENT GRID
========================================================= */

.event-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    width: 100%;
}


/* =========================================================
   EVENT CARD
========================================================= */

.event-card {

    display: flex;

    align-items: flex-start;

    gap: 25px;

    min-height: 225px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #dce4df;

    border-radius: 15px;

    box-sizing: border-box;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.event-card:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .07);
}


/* =========================================================
   DATE BOX
========================================================= */

.event-date {

    flex: 0 0 73px;

    width: 73px;

    height: 85px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: #007443;

    color: #ffffff;

    border-radius: 7px;

    text-align: center;
}


.event-date strong {

    display: block;

    font-size: 30px;

    font-weight: 800;

    line-height: 1;

    margin-bottom: 6px;
}


.event-date span {

    display: block;

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .5px;

    line-height: 1;
}


/* =========================================================
   EVENT CONTENT
========================================================= */

.event-content {

    flex: 1;

    min-width: 0;
}


/* =========================================================
   EVENT CATEGORY
========================================================= */

.event-category {

    display: block;

    color: #007443;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .6px;

    text-transform: uppercase;

    margin: 8px 0 15px;
}


/* =========================================================
   EVENT TITLE
========================================================= */

.event-content h3 {

    margin: 0 0 18px;

    font-size: 19px;

    font-weight: 500;

    line-height: 1.35;

    color: #111a16;
}


.event-content h3 a {

    color: inherit;

    text-decoration: none !important;
}


.event-content h3 a:hover {

    color: #007443;
}


/* =========================================================
   LOCATION
========================================================= */

.event-location {

    display: flex;

    align-items: center;

    gap: 5px;

    color: #5c6661;

    font-size: 12px;

    margin-bottom: 22px;
}


.event-location i {

    color: #5c6661;

    font-size: 13px;
}


/* =========================================================
   VIEW EVENT
========================================================= */

.event-link {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: #007443 !important;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none !important;
}


.event-link:hover {

    color: #004d2d !important;
}


.event-link i {

    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .event-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .events {

        padding: 55px 0;

    }


    .events .section-heading {

        display: block;

        margin-bottom: 30px;

    }


    .events .section-heading h2 {

        font-size: 36px;

    }


    .events .view-all {

        margin-top: 20px;

    }


    .event-grid {

        grid-template-columns: 1fr;

        gap: 16px;

    }


    .event-card {

        padding: 22px;

        gap: 18px;

        min-height: auto;

    }


    .event-date {

        flex: 0 0 65px;

        width: 65px;

        height: 78px;

    }


    .event-date strong {

        font-size: 26px;

    }


    .event-content h3 {

        font-size: 17px;

    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .event-card {

        gap: 14px;

        padding: 18px;

    }


    .event-date {

        flex: 0 0 58px;

        width: 58px;

        height: 72px;

    }


    .event-date strong {

        font-size: 23px;

    }


    .event-date span {

        font-size: 10px;

    }


    .event-category {

        font-size: 9px;

    }


    .event-content h3 {

        font-size: 15px;

    }

}
