/* =========================================================
   Accreditation page stylesheet
   Imports the global design system then adds page-specific
   sections: page-hero (accreditation photo), long-text detail
   cells, verify badge
   ========================================================= */

@import url("components.css");
@import url("style.css");


/* =========================================================
   Page Hero (compact inner-page version — same pattern as
   about.css, own background)
   ========================================================= */

.page-hero {
    height: 70vh !important;
    min-height: 420px;
    background: url("/assets/hero/hero-accreditation1.webp") no-repeat center center / cover !important;
}

.page-hero .hero-overlay {
    padding: calc(var(--nav-height) + 2.5rem) 0 4rem;
    display: flex;
    align-items: center;
    background-color: #35353577;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 18px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .85);
    transition: color .2s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.crumb-sep {
    opacity: .5;
}

.crumb-current {
    color: #fff;
    font-weight: 600;
}

.text-em {
    color: var(--c-red);
}

.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    margin-top: 28px;
}

.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
}

.hero-meta-item i {
    color: var(--c-green);
}


/* =========================================================
   Expanded detail grid — the accreditation page lists more
   fields than the homepage's summary version, so a couple of
   cells (Scope, Areas Covered) hold sentence-length values.
   Everything else reuses .accred-detail-grid / .accred-detail-cell
   from style.css untouched.
   ========================================================= */

.accred-detail-cell .v.long-text {
    font-weight: 600;
    font-size: .88rem;
    line-height: 1.5;
}


/* =========================================================
   Verify badge — the centre number, styled like a lookup
   code rather than a decorative pill
   ========================================================= */

.verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px dashed rgba(255, 255, 255, .3);
    border-radius: var(--radius-pill);
    padding: 10px 22px;
    margin-bottom: 28px;
}

.verify-badge .k {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9a999d;
    font-weight: 600;
}

.verify-badge .v {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .04em;
    color: #fff;
}


/* =========================================================
   Why our approval matters — reuses .feature-card, no new
   rules needed beyond the section itself
   ========================================================= */


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 991.98px) {
    .page-hero {
        height: auto;
        min-height: 380px;
        max-height: none;
    }
}

@media (max-width: 575.98px) {
    .page-hero .hero-overlay {
        padding: calc(var(--nav-height) + 1.5rem) 0 3rem;
    }

    .hero-meta-row {
        gap: 14px 20px;
        margin-top: 22px;
    }

    .verify-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        border-radius: var(--radius-md);
    }
}

@media (max-height: 1000px) {
    
    .page-hero .hero-overlay {
        padding: calc(var(--nav-height) + 1.5rem) 0 2.5rem;
    }
    .page-hero h1 {
        font-size: clamp(1.9rem, 2.5rem + 1.6vw, 3.8rem);
    }
    .hero-meta-row {
        margin-top: 18px;
    }
}

@media (max-height: 720px) {
    .page-hero{
        height: 75vh !important;
    }
    .page-hero h1 {
        font-size: clamp(1.9rem, 2.5rem + 1.6vw, 2.8rem);
    }
}