@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,300;1,400;1,600;1,700&display=swap");

:root {
    --blue: #0000a9;
    --blue-dark: #000080;
    --blue-light: #1a1aff;
    --green: #11914f;
    --green-light: #e8f5ee;
    --bg-gray: #e0dede;
    --bg-light-gray: #f6f6f6;
    --white: #ffffff;
    --dark: #1a1a2e;
    --text-dark: #333333;
    --text-gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER / NAVIGATION (WordPress-style)
   ============================================ */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    transition:
        background 0.3s,
        box-shadow 0.3s;
}

#main-header.transparent {
    background: transparent;
    box-shadow: none;
}

#main-header.transparent .header-container .logo img {
    filter: none;
}

#main-header.transparent .td-menu > .td-menu-item > a {
    color: var(--text-dark);
}

#main-header.transparent .btn-partner {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

#main-header.transparent .menu-toggle span {
    background: var(--text-dark);
}

#main-header.scrolled {
    background: var(--white);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

#main-header.scrolled .header-container .logo img {
    filter: none;
}

#main-header.scrolled .td-menu > .td-menu-item > a {
    color: var(--text-dark);
}

#main-header.scrolled .btn-partner {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

#main-header.scrolled .menu-toggle span {
    background: var(--text-dark);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-container .logo img {
    height: 70px;
    width: auto;
    transition: filter 0.3s;
}

/* ---- WordPress-style Menu ---- */
.td-nav {
    display: flex;
    align-items: center;
}

.td-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: stretch;
}

.td-menu > .td-menu-item {
    position: relative;
}

.td-menu > .td-menu-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 18px 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--blue) !important;
    white-space: nowrap;
    transition: color 0.1s;
    position: relative;
}

.td-menu > .td-menu-item:hover > a,
.td-menu > .td-menu-item.current > a {
    color: var(--green) !important;
}

.td-menu > .td-menu-item > a i {
    font-size: 9px;
    transition: transform 0.25s;
    margin-top: 1px;
}

.td-menu > .td-menu-item:hover > a i {
    transform: rotate(180deg);
}

/* ---- Sub-menu (dropdown) ---- */
.td-sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-top: 3px solid var(--blue);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    list-style: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.1s ease,
        visibility 0.1s ease,
        transform 0.1s ease;
    z-index: 9999;
}

.td-menu-item-has-children:hover > .td-sub-menu {
    opacity: 1;
    visibility: visible;
}

.td-sub-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.td-sub-menu li:last-child {
    border-bottom: none;
}

.td-sub-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition:
        background 0.1s,
        color 0.1s;
}

.td-sub-menu li a:hover {
    background: var(--green);
    color: white;
}

/* ---- Header right ---- */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-partner {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 9px 22px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid var(--blue);
}

.btn-partner:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
}

/* ---- Mobile nav header/footer (hidden desktop) ---- */
.td-nav-mobile-header,
.td-nav-mobile-footer {
    display: none;
}

.td-nav-close {
    display: none;
}

/* ---- Menu toggle (hamburger) ---- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-blue {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--blue);
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Nunito", sans-serif;
}

.btn-blue:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--blue);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Nunito", sans-serif;
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--blue);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--blue);
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Nunito", sans-serif;
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
}

.btn-green {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--green);
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Nunito", sans-serif;
}

.btn-green:hover {
    background: #0d7a40;
    border-color: #0d7a40;
}

/* ============================================
   HOME - HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: calc(100vh - 100px);
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-top: 100px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../../images/Home/imgi_83_image_adobe_express-scaled.jpg")
        center/cover no-repeat;
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    color: var(--blue);
}

.hero-content h1 {
    font-size: clamp(48px, 8vw, 110px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 12px;
    color: var(--blue);
    text-transform: uppercase;
}

.hero-content .hero-subtitle {
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 600;
    max-width: 1000px;
    margin-bottom: 40px;
    line-height: 1.4;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content .hero-subtitle .highlight {
    color: white;
    text-decoration: underline;
    text-shadow: none;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn-blue {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    padding: 15px 40px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-buttons .btn-blue:hover {
    background: var(--blue);
    border-color: var(--blue);
}

/* ============================================
   HOME - TARGETED APPROACH
   ============================================ */
.approach-section {
    padding: 80px 0;
    background: var(--white);
}

.approach-section h2 {
    font-size: clamp(28px, 3vw, 40px);
    color: var(--blue);
    margin-bottom: 10px;
    font-weight: 800;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--blue);
    margin-top: 15px;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-image .large-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.approach-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.approach-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.approach-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.approach-images img:first-child {
    grid-column: 1 / -1;
    height: 250px;
}

/* ============================================
   HOME - STATS
   ============================================ */
.stats-section {
    padding: 100px 0;
    background:
        linear-gradient(
            135deg,
            rgba(0, 51, 102, 0.85) 0%,
            rgba(0, 102, 204, 0.85) 100%
        ),
        url("../../images/Home/imgi_85_jean-philippe-delberghe-75xPHEQBmvA-unsplash-scaled.jpg")
            center/cover no-repeat;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 150px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item .stat-icon {
    font-size: 80px;
    color: var(--white);
    margin-bottom: 20px;
}

.stat-item .stat-number {
    font-size: 72px;
    font-weight: 300;
    color: var(--white);
    display: block;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   HOME - LATEST NEWS
   ============================================ */
.news-section {
    padding: 80px 0;
    background: var(--white);
}

.news-section h2 {
    font-size: clamp(28px, 3vw, 36px);
    color: var(--blue);
    margin-bottom: 10px;
    text-align: center;
}

.news-section .section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card .news-card-content {
    padding: 20px;
}

.news-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card .news-type {
    font-size: 12px;
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.news-card .news-date {
    font-size: 13px;
    color: var(--text-gray);
}

.news-card .read-more {
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.news-center {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   HOME - PARTNERS
   ============================================ */
.partners-section {
    padding: 80px 0;
    background: var(--white);
}

.partners-section h2 {
    font-size: clamp(28px, 3vw, 36px);
    color: var(--blue);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
    letter-spacing: 2px;
}

.partners-slider-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.slider-arrow {
    background: var(--text-gray);
    color: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    flex-shrink: 0;
    transition: background 0.3s;
}

.slider-arrow:hover {
    background: var(--blue);
}

.partners-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 40px;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none; /* IE and Edge */
}

.partners-grid::-webkit-scrollbar {
    display: none;
}

.partners-grid a {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-grid img {
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform 0.3s;
}

.partners-grid img:hover {
    transform: scale(1.05);
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
    position: relative;
    padding: 180px 0 60px;
    overflow: hidden;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../../images/Home/imgi_83_image_adobe_express-scaled.jpg")
        center/cover no-repeat;
    opacity: 0.15;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 12px 30px;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    border-radius: 5px;
}

/* ============================================
   ABOUT TANDEM
   ============================================ */
.about-project-section {
    padding: 80px 0;
}

.about-project-section h2 {
    font-size: clamp(28px, 3vw, 36px);
    color: var(--blue);
    margin-bottom: 30px;
    font-style: italic;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.about-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.about-text ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Objectives */
.objectives-section {
    padding: 60px 0 80px;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.objective-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s;
}

.objective-card:hover {
    transform: translateY(-5px);
}

.objective-card .obj-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.objective-card .obj-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.objective-card h3 {
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 15px;
    font-style: italic;
}

.objective-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Challenge / Goal / Impact sections */
.highlight-section {
    padding: 60px 0;
}

.highlight-section.bg-green-pale {
    background: var(--green-light);
}

.highlight-section.bg-gray {
    background: var(--bg-light-gray);
}

.highlight-section .highlight-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.highlight-section .highlight-header img {
    width: 40px;
    height: 40px;
}

.highlight-section .highlight-header h2 {
    font-size: clamp(24px, 2.5vw, 32px);
    color: var(--blue);
    font-style: italic;
}

.highlight-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 900px;
}

.highlight-section ul {
    list-style-type: disc;
    padding-left: 20px;
    max-width: 900px;
}

.highlight-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 10px;
}

/* ============================================
   WHAT ARE SMRs
   ============================================ */
.smr-content-section {
    padding: 80px 0;
}

.smr-content-section h2 {
    font-size: clamp(28px, 3vw, 36px);
    color: var(--text-dark);
    margin-bottom: 30px;
}

.smr-content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.smr-content-section a {
    color: var(--blue);
    text-decoration: underline;
}

.smr-hybrid-section {
    padding: 60px 0 80px;
}

.smr-hybrid-section h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.smr-hybrid-section .hybrid-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 30px;
}

.hybrid-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: var(--bg-light-gray);
    border-radius: 15px;
}

.hybrid-item {
    text-align: center;
    padding: 20px;
    min-width: 140px;
}

.hybrid-item i {
    font-size: 36px;
    color: var(--green);
    margin-bottom: 10px;
    display: block;
}

.hybrid-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.hybrid-arrow {
    font-size: 24px;
    color: var(--blue);
}

.hybrid-result {
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: var(--text-gray);
}

.hybrid-result img {
    width: 100px;
    margin-top: 10px;
}

/* ============================================
   PROJECT PARTNERS
   ============================================ */
.partners-page-section {
    padding: 80px 0;
}

.coordinator-section {
    text-align: center;
    padding: 40px 0 60px;
    border-bottom: 1px solid var(--bg-gray);
    margin-bottom: 60px;
}

.coordinator-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.coordinator-section img {
    height: 80px;
    margin-bottom: 15px;
}

.coordinator-section p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.partner-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.partner-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.partner-item .partner-logo {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item .partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-item .partner-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.partner-item .partner-info p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* ============================================
   THE PROJECT - WORK PACKAGES
   ============================================ */
.wp-section {
    padding: 80px 0;
}

.wp-section h2 {
    font-size: clamp(28px, 3vw, 36px);
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.wp-section .wp-subtitle {
    width: 60px;
    height: 3px;
    background: var(--blue);
    margin-bottom: 40px;
}

.wp-diagram {
    width: 100%;
    margin-bottom: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.wp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.wp-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.wp-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--blue);
}

.wp-card .wp-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.wp-card .wp-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wp-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
}

.wp-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
}

.wp-card ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.wp-card ul li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 5px;
}

/* ============================================
   RESOURCES
   ============================================ */
.resources-section {
    padding: 80px 0;
}

.resources-section h2 {
    font-size: clamp(28px, 3vw, 36px);
    color: var(--text-dark);
    margin-bottom: 10px;
}

.resources-section .res-underline {
    width: 60px;
    height: 3px;
    background: var(--blue);
    margin-bottom: 20px;
}

.resources-section .res-intro {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.deliverables-title {
    font-size: clamp(24px, 2.5vw, 30px);
    color: var(--blue);
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.deliverables-underline {
    width: 60px;
    height: 3px;
    background: var(--blue);
    margin: 0 auto 30px;
}

/* Accordion */
.accordion-section {
    margin-bottom: 60px;
}

.accordion-section h2 {
    font-size: clamp(24px, 2.5vw, 30px);
    color: var(--blue);
    text-align: center;
    margin-bottom: 30px;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--blue);
}

.accordion-header i {
    font-size: 16px;
    transition: transform 0.3s;
    color: var(--text-dark);
}

.accordion-header.active i.fa-plus {
    transform: rotate(45deg);
}

/* Project Outputs accordion style */
.accordion-outputs .accordion-item {
    border-bottom: none;
}

.accordion-outputs .accordion-header {
    font-size: 24px;
    font-weight: 700;
    color: var(--blue);
    padding: 25px 0;
}

.accordion-outputs .accordion-header i {
    font-size: 30px;
    color: var(--blue);
}

.accordion-outputs .accordion-header.active i {
    transform: none;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 35px;
}

.accordion-content.open {
    padding-bottom: 20px;
}

.accordion-content ul {
    list-style: disc;
    padding-left: 20px;
}

.accordion-content ul li {
    padding: 5px 0;
    font-size: 15px;
    color: var(--text-gray);
}

.accordion-content ul li a {
    color: var(--blue);
    text-decoration: underline;
}

.accordion-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

@media (max-width: 768px) {
    .accordion-columns {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NEWSROOM
   ============================================ */
.newsroom-section {
    padding: 80px 0;
}

.newsroom-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-row {
    display: block;
    text-decoration: none;
    padding-top: 20px;
}

.news-row-main {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.news-row-img {
    flex: 0 0 320px;
}

.news-row-img img {
    display: block;
    width: 320px;
    height: 202px;
    object-fit: cover;
}

.news-row-content {
    flex: 1;
    min-width: 0;
}

.news-row-title {
    font-family: "Nunito", sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1.3;
    color: var(--blue);
    margin-bottom: 18px;
    transition: color 0.3s;
}

.news-row:hover .news-row-title {
    color: var(--blue-light);
}

.news-row-desc {
    font-size: 16px;
    line-height: 2;
    color: #4a4a4a;
}

.news-row-footer {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    margin-top: 30px;
    padding: 12px 0;
}

.news-row-more {
    font-size: 15px;
    font-weight: 700;
    color: var(--blue);
}

.news-row-more i {
    font-size: 12px;
    margin-left: 4px;
    transition: margin-left 0.3s;
}

.news-row:hover .news-row-more i {
    margin-left: 9px;
}

@media (max-width: 768px) {
    .news-row-main {
        flex-direction: column;
        gap: 20px;
    }

    .news-row-img {
        flex: none;
        width: 100%;
    }

    .news-row-img img {
        width: 100%;
        height: auto;
    }
}

.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
}

.news-pagination a,
.news-pagination span.current {
    display: inline-block;
    min-width: 42px;
    padding: 8px 14px;
    text-align: center;
    font-weight: 700;
    color: var(--blue);
    border: 2px solid var(--blue);
    border-radius: 6px;
    text-decoration: none;
    transition:
        background 0.3s,
        color 0.3s;
}

.news-pagination a:hover {
    background: var(--blue);
    color: var(--white);
}

.news-pagination span.current {
    background: var(--blue);
    color: var(--white);
    cursor: default;
}

.newsroom-item {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 25px;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
    align-items: start;
}

.newsroom-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.newsroom-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.newsroom-item-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
    line-height: 1.3;
}

.newsroom-item-content h3 a:hover {
    text-decoration: underline;
}

.newsroom-item-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.newsroom-item-content .read-more-link {
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.newsroom-item-content .read-more-link:hover {
    text-decoration: underline;
}

/* ============================================
   EVENTS PAGE
   ============================================ */
.events-section {
    padding: 80px 0;
}

.events-section h2 {
    font-size: clamp(24px, 2.5vw, 32px);
    color: var(--blue);
    margin-bottom: 40px;
}

.events-list-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-card {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
    transition: background 0.3s;
}

.event-card:hover {
    background: #f9f9f9;
}

.event-date-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    text-align: center;
}

.event-date-col .event-month {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
}

.event-date-col .event-day {
    font-size: 42px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.1;
}

.event-date-col .event-year {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
}

.event-content-col {
    flex: 1;
}

.event-content-col .event-date-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 5px;
    display: block;
}

.event-content-col .event-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 8px;
}

.event-content-col .event-location {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.event-content-col .event-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ============================================
   SUPPORTERS & LINKED PROJECTS
   ============================================ */
.supporters-section {
    padding: 80px 0;
}

.supporters-section h2 {
    font-size: clamp(24px, 2.5vw, 32px);
    color: var(--blue);
    margin-bottom: 20px;
}

.supporters-section h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.supporters-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.supporters-block {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.linked-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.linked-project-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.linked-project-card:hover {
    transform: translateY(-3px);
}

.linked-project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.linked-project-card .lp-content {
    padding: 20px;
}

.linked-project-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.linked-project-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Advisory sections */
.advisory-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #e8f0ff 0%, #d4e6f1 50%, #b8d4c8 100%);
}

.advisory-section h2 {
    font-size: clamp(24px, 2.5vw, 32px);
    color: var(--blue);
    text-align: center;
    margin-bottom: 30px;
}

.advisory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.advisory-item {
    text-align: center;
    padding: 15px;
    font-size: 15px;
    color: var(--text-dark);
}

.advisory-item strong {
    display: block;
    margin-bottom: 3px;
}

/* ============================================
   ARTICLE / TEMPLATE_DYN
   ============================================ */
.article-banner {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--blue) 0%, #0000d4 100%);
    overflow: hidden;
}

.article-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../../images/Home/imgi_83_image_adobe_express-scaled.jpg")
        center/cover no-repeat;
    opacity: 0.15;
}

.article-banner .container {
    position: relative;
    z-index: 2;
}

.article-banner h1 {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 12px 30px;
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 800;
    border-radius: 5px;
    line-height: 1.3;
}

.article-meta {
    padding: 30px 0;
    text-align: center;
}

.article-meta .article-date {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
}

.article-meta .article-location {
    font-size: 16px;
    color: var(--green);
    font-weight: 600;
    font-style: italic;
}

.article-body {
    padding: 0 0 60px;
    max-width: 800px;
    margin: 0 auto;
}

.article-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.article-body ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.article-body ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.article-body a {
    color: var(--blue);
    text-decoration: underline;
}

.article-body .btn-green {
    text-decoration: none;
}

.article-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.article-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}

.article-gallery img:hover {
    transform: scale(1.03);
}

/* ============================================
   NEWS PAGE (existing template list)
   ============================================ */
.header-news {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--blue) 0%, #0000d4 100%);
    overflow: hidden;
}

.header-news::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../../images/Home/imgi_83_image_adobe_express-scaled.jpg")
        center/cover no-repeat;
    opacity: 0.15;
}

.header-news .container,
.header-news header {
    position: relative;
    z-index: 2;
}

.title-news {
    position: relative;
    z-index: 2;
    margin-top: 30px;
}

.title-news h1 {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 12px 30px;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    border-radius: 5px;
}

.title-news .subtitle {
    color: var(--white);
    margin-top: 15px;
    font-size: 16px;
    opacity: 0.9;
}

/* ============================================
   NEWS LIST BOXES
   ============================================ */
.newsBox {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
    align-items: start;
    border: none;
}

.newsBox:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.newsBox .img-container {
    border-radius: 8px;
    overflow: hidden;
}

.newsBox .img-container img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.newsBox .newsBox-txt {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsBox .newsBox-info h3,
.newsBox .newsBox-info h2 {
    font-size: 18px;
    color: var(--blue);
    font-weight: 700;
    line-height: 1.3;
}

.newsBox .newsBox-desc {
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
}

.newsBox .news-icon span {
    color: var(--text-gray);
    font-size: 13px;
}

.newsBox .time {
    font-size: 13px;
    color: var(--text-gray);
}

.news-grid-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.news-grid-container a {
    text-decoration: none;
}

.news-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 40px 0;
}

.news-sidebar h2 {
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 15px;
}

.events-list {
    display: flex;
    flex-direction: column;
}

.event-sidebar-item {
    display: block;
    padding: 10px 0;
    transition: color 0.3s;
}

.event-sidebar-item:hover {
    color: var(--blue);
}

.event-date {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
}

.event-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.event-divider {
    margin: 0;
    border: none;
    border-top: 1px solid #eee;
}

/* ============================================
   TEMPLATE_DYN (article detail)
   ============================================ */
.news-header {
    background-color: var(--green-light);
    padding: 10px 0;
}

.news-article-section {
    margin-block: 4rem;
}

.bg-green-pale {
    background-color: var(--green-light);
}

.text-heading {
    font-size: clamp(24px, 3vw, 36px);
    color: var(--text-dark);
    font-weight: 700;
}

.text-subheading {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

.sideBox {
    background: var(--bg-light-gray);
    padding: 25px;
    border-radius: 10px;
}

.sideListNews {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.latest-post-item {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.latest-post-item:hover {
    opacity: 0.8;
}

.latest-post-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.latest-post-type {
    font-size: 11px;
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
}

.latest-post-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.has-border-radius {
    border-radius: 10px;
}

.list-squares {
    list-style: square;
    padding-left: 20px;
}

.list-squares li {
    margin-bottom: 8px;
}

.list-squares li a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

.list-squares li a:hover {
    text-decoration: underline;
}

.news-featured-image img {
    border-radius: 10px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--blue-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo-top {
    text-align: center;
    margin-bottom: 50px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
    text-decoration: none;
    font-weight: 600;
}

.footer-column ul li a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-column p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-eu-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-eu-section img {
    margin-bottom: 20px;
    max-width: 200px;
}

.eu-disclaimer {
    font-size: 11px;
    line-height: 1.6;
    opacity: 0.7;
    margin: 0;
    max-width: 300px;
}

.footer-bottom-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--blue-light);
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    transition:
        background 0.3s,
        transform 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--blue);
    transform: translateY(-3px);
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.copyright a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.bg-line {
    background: var(--bg-light-gray);
}

.mt-4 {
    margin-top: 1rem;
}
.mt-6 {
    margin-top: 1.5rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.ml-1 {
    margin-left: 0.25rem;
}
.ml-2 {
    margin-left: 0.5rem;
}
.has-text-centered {
    text-align: center;
}

.section {
    padding: 3rem 1.5rem;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.column {
    flex: 1;
    min-width: 0;
}

.column.is-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}
.column.is-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.column.is-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
}

.tag.is-dark {
    background: var(--dark);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.image.is-fullwidth {
    width: 100%;
    border-radius: 10px;
}

.is-hidden {
    display: none !important;
}

.notification.is-danger {
    background: #ff3860;
    color: white;
    padding: 15px;
    border-radius: 5px;
}

.box {
    border: none;
}

.button.is-dark {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .approach-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .partner-row {
        grid-template-columns: 1fr;
    }

    .news-layout {
        grid-template-columns: 1fr;
    }

    .news-sidebar {
        order: -1;
    }

    .footer-top,
    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .footer-eu-section {
        text-align: left;
    }

    .eu-disclaimer {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    /* Mobile navigation */
    .menu-toggle {
        display: flex;
    }

    .td-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.35s ease;
        z-index: 1000;
        overflow-y: auto;
        padding: 0;
        flex-direction: column;
    }

    .td-nav.open {
        right: 0;
    }

    .td-nav-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .td-nav-mobile-header img {
        height: 36px;
    }

    .td-nav-close {
        display: block;
        background: none;
        border: none;
        font-size: 28px;
        color: var(--text-dark);
        cursor: pointer;
        padding: 0 5px;
        line-height: 1;
    }

    .td-menu {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .td-menu > .td-menu-item > a {
        padding: 14px 20px;
        font-size: 15px;
        border-bottom: 1px solid #f0f0f0;
        justify-content: space-between;
        color: var(--text-dark) !important;
    }

    .td-menu > .td-menu-item > a::after {
        display: none;
    }

    .td-sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        z-index: auto;
    }

    .td-menu-item-has-children.open > .td-sub-menu {
        max-height: 300px;
    }

    .td-sub-menu li a {
        padding: 12px 20px 12px 35px;
        font-size: 14px;
        color: var(--text-gray);
    }

    .td-sub-menu li a:hover {
        padding-left: 35px;
        color: var(--blue);
        background: #fafafa;
    }

    .td-nav-mobile-footer {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        margin-top: auto;
        border-top: 1px solid #eee;
    }

    .td-nav-mobile-footer .btn-partner {
        text-align: center;
    }

    .td-nav-social a {
        font-size: 20px;
        color: var(--blue);
    }

    .header-right {
        display: none;
    }

    /* Content adjustments */
    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        gap: 40px;
    }

    .stat-item .stat-number {
        font-size: 36px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .wp-grid {
        grid-template-columns: 1fr;
    }

    .newsroom-item {
        grid-template-columns: 1fr;
    }

    .newsroom-item img {
        height: 200px;
    }

    .newsBox {
        grid-template-columns: 1fr;
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
    }

    .column.is-4,
    .column.is-6,
    .column.is-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .linked-projects-grid {
        grid-template-columns: 1fr;
    }

    .page-banner,
    .header-news,
    .article-banner {
        padding: 100px 0 40px;
    }
}

/* Mobile overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HOME NEWS TEMPLATE (home_news.html)
   ============================================ */
.news-content {
    padding: 15px 0 0;
}

.news-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.news-content .read-more {
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
}

.news-content .news-date {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 5px;
}
