﻿:root {
    --primary: #CF1736;
    --primary-dark: #A8122B;
    --primary-light: #E04A63;
    --foreground: #575756;
    --background: #ffffff;
    --muted: #f4f4f2;
    --muted-foreground: #888887;
    --border: #e8e8e6;
    --accent: #FBE7EB;
    --accent-foreground: #575756;
    --red: #E3000F;
    --radius: 0px;
    --brand-rgb: 207, 23, 54;
    --brand-overlay-strong: rgba(207, 23, 54, 0.82);
    --brand-overlay-left-strong: rgba(207, 23, 54, 0.6);
    --brand-overlay-left-soft: rgba(207, 23, 54, 0.3);
    --brand-focus-ring: rgba(207, 23, 54, 0.12);
    --footer-icon-color: #CF1736;
    --footer-heading-color: #585856;
    --footer-social-color: #9a9a98;
    --footer-social-hover: #585856;
    --ncd-learn-more-color: #7A1224;
    /* AQH CTA-specific */
    --aqh-cta-button: #396381;
    --aqh-cta-button-hover: #2f536c;
}

/* Project Objective overlay */
.obj-overlay {
    background: linear-gradient( to right, var(--brand-overlay-left-strong) 0%, var(--brand-overlay-left-soft) 50%, transparent 100% );
}

/* Publication hover overlay */
.pub-hover-overlay {
    background: var(--brand-overlay-strong);
}

/* Contact form focus ring */
.form-input:focus,
.form-textarea:focus {
    box-shadow: 0 0 0 3px var(--brand-focus-ring);
}

/* Footer elements used by partials.js */
.footer-contact-icon {
    color: var(--footer-icon-color);
}

.footer-heading {
    color: var(--footer-heading-color);
}

.footer-social-link {
    color: var(--footer-social-color);
}

    .footer-social-link:hover {
        color: var(--footer-social-hover);
        border-color: var(--footer-social-hover);
        background: white;
    }

.ncd-learn-more span {
    color: var(--ncd-learn-more-color);
}

/* AQH CTA section overrides only */
/* AQH CTA section overrides only */
.cta-bg {
    background: url('/assets/img/Nurse background.jpg') center/cover fixed;
}

/* strong blue layer across the whole banner */
.cta-overlay {
    background: rgba(54, 99, 129, 0.72) !important;
    mix-blend-mode: multiply !important;
}

/* extra blue depth from bottom to top, like the reference */
.cta-overlay2 {
    background: linear-gradient( to top, rgba(54, 99, 129, 0.88) 0%, rgba(54, 99, 129, 0.52) 50%, rgba(54, 99, 129, 0.18) 100% ) !important;
}

.btn-red {
    background: #396381;
}

    .btn-red:hover {
        background: #2f536c;
    }
    /* ============================================
   AQH HOME - STATISTICS BAR UNDER HERO
   ============================================ */

.section-statistics-aqh {
    background: var(--primary);
    color: #fff;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 5;
}

.statistics-aqh-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    text-align: center;
}

.statistics-aqh-item {
    padding: 0 1rem;
}

.statistics-aqh-value {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #fff;
    margin-bottom: 0.75rem;
}

.statistics-aqh-title {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.75rem;
    line-height: 1.45;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    max-width: 260px;
    margin: 0 auto;
    text-wrap: balance;
}

@media (min-width: 768px) {
    .statistics-aqh-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
    }

    .statistics-aqh-item {
        padding: 0 2rem;
    }

    .statistics-aqh-item + .statistics-aqh-item {
        border-left: 1px solid rgba(255, 255, 255, 0.20);
    }

    .statistics-aqh-title {
        font-size: 0.875rem;
        max-width: 280px;
    }
}

@media (max-width: 767.98px) {
    .section-statistics-aqh {
        padding: 2.25rem 0;
    }

    .statistics-aqh-grid {
        gap: 1.5rem 0;
    }

    .statistics-aqh-item:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, 0.16);
    }

    .statistics-aqh-item:nth-child(n + 3) {
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }
}
/* AQH only - Project Objective editable font sizes */
.section-objectives {
    --aqh-obj-heading-size: 2.1rem;
    --aqh-obj-desc-size: 1.15rem;
    --aqh-obj-heading-line-height: 1.08;
    --aqh-obj-desc-line-height: 1.55;
}

    .section-objectives .obj-heading {
        font-size: var(--aqh-obj-heading-size) !important;
        line-height: var(--aqh-obj-heading-line-height) !important;
        letter-spacing: -0.035em !important;
        margin-bottom: 1.5rem !important;
    }

    .section-objectives .obj-desc {
        font-size: var(--aqh-obj-desc-size) !important;
        line-height: var(--aqh-obj-desc-line-height) !important;
        padding-left: 1.25rem !important;
        margin-bottom: 2rem !important;
    }