/* Accreditations & Affiliations Page Styles */

/* Uses shared variables from common.css and about-common.css */

/* ============================================
   HERO SECTION 
   ============================================ */
.page-accreditations .dl-hero {
    background: linear-gradient(rgba(26, 102, 166, 0.88), rgba(26, 102, 166, 0.92)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    padding: 3rem 0;
    text-align: center;
}

.page-accreditations .dl-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.page-accreditations .dl-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.page-accreditations .dl-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-accreditations .dl-hero__breadcrumb a:hover {
    color: #fff;
}

.page-accreditations .dl-hero__breadcrumb .active {
    color: #fff;
}

.page-accreditations .dl-hero__home-icon {
    font-size: 0.85rem;
}

/* ============================================
   PAGE LAYOUT 
   ============================================ */
.page-accreditations .dl-page {
    padding: 2.5rem 0 2rem;
    background: #fff;
}

.page-accreditations .dl-page__container {
    max-width: 1140px;
}

.page-accreditations .dl-page__main img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1.75rem;
}

.page-accreditations .dl-page__main h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dl-blue);
    margin-bottom: 1rem;
}

.page-accreditations .dl-page__main h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dl-blue);
    margin: 1.5rem 0 0.75rem;
}

.page-accreditations .dl-page__main p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dl-text);
    margin-bottom: 1rem;
}

/* ============================================
   INTRODUCTION SECTION
   ============================================ */
.intro-content {
    padding: 0 0 2rem 0;
    border-bottom: 2px solid #f0f0f0;
}

.intro-content .lead {
    font-size: 1.1rem;
    color: var(--dl-blue);
    font-weight: 500;
}

.accred-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dl-text);
}

/* ============================================
   ACCREDITATION CARDS (Horizontal)
   ============================================ */
.accred-horizontal-card {
    background: #fafbfc;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.accred-horizontal-card:hover {
    box-shadow: 0 10px 40px rgba(26, 102, 166, 0.1);
    border-color: var(--dl-blue);
}

.accred-logo-img {
    padding: 2rem;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    object-fit: contain;
}

.accred-content {
    padding: 2.5rem;
    background: #fafbfc;
}

.accred-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--dl-blue), var(--dl-blue-dark));
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.accred-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dl-blue);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.accred-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dl-text);
    margin-bottom: 1rem;
}

.accred-content p strong {
    color: var(--dl-blue);
    font-weight: 600;
}

/* ============================================
   ACCREDITATION HIGHLIGHTS
   ============================================ */
.accred-highlights {
    background: #fff;
    padding: 1.5rem;
    border-left: 4px solid var(--dl-yellow);
    border-radius: 4px;
}

.accred-highlight-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dl-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accred-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accred-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--dl-text);
    line-height: 1.6;
}

.accred-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--dl-yellow);
    font-size: 1.2rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.accred-benefits {
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 2px solid #f0f0f0;
}

.accred-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dl-blue);
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.accred-section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--dl-yellow);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.benefit-card {
    background: linear-gradient(135deg, #f8fafb 0%, #f0f3f7 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--dl-blue);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 102, 166, 0.12);
    border-left-color: var(--dl-yellow);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.benefit-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dl-blue);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dl-text);
    margin: 0;
}


/* ============================================
   HIGHLIGHT BOX
   ============================================ */
.highlight-box {
    background: linear-gradient(135deg, rgba(26, 102, 166, 0.05) 0%, rgba(251, 178, 37, 0.05) 100%);
    border-left: 4px solid var(--dl-blue);
    padding: 1.75rem;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.highlight-box-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dl-blue);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-box p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--dl-text);
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .accred-horizontal-card {
        margin-bottom: 2rem;
    }

    .accred-logo-img {
        min-height: 200px;
        padding: 1.5rem;
    }

    .accred-content {
        padding: 1.75rem;
    }

    .accred-title {
        font-size: 1.4rem;
    }

    .accred-label {
        font-size: 0.7rem;
        padding: 0.35rem 0.8rem;
    }

    .benefit-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .page-accreditations .dl-hero__title {
        font-size: 1.5rem;
    }

    .page-accreditations .dl-page__main h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .accred-horizontal-card {
        border: none;
        box-shadow: 0 2px 8px rgba(26, 102, 166, 0.06);
    }

    .accred-logo-img {
        min-height: 150px;
        padding: 1rem;
    }

    .accred-content {
        padding: 1.25rem;
    }

    .accred-title {
        font-size: 1.2rem;
    }

    .accred-content p {
        font-size: 0.9rem;
    }

    .accred-highlights {
        padding: 1rem;
    }

    .page-accreditations .dl-hero {
        padding: 2rem 0;
    }

    .page-accreditations .dl-hero__title {
        font-size: 1.3rem;
    }

    .page-accreditations .dl-page {
        padding: 1.5rem 0 1rem;
    }

    .accred-benefits {
        margin-top: 2rem;
        padding: 1rem 0;
    }

    .accred-section-title {
        font-size: 1.4rem;
    }

    .benefit-card {
        padding: 1.25rem;
    }
}

/* ============================================
   ANIMATION & TRANSITIONS
   ============================================ */
.accred-horizontal-card,
.benefit-card,
.sidebar-list a {
    transition: all 0.3s ease;
}

/* Print Styles */
@media print {

    .dl-hero,
    .accred-sidebar {
        display: none;
    }

    .accred-horizontal-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}