/* ==========================================================================
   KSPL ABOUT US PAGE SPECIFIC STYLING (PREMIUM LIGHT REDESIGN)
   ========================================================================== */

.about-page-container {
    padding-top: 130px;
    padding-bottom: 90px;
    min-height: 90vh;
}

/* About Hero Card */
.about-hero-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 36px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 45px;
    box-shadow: var(--elevated-shadow);
    overflow: hidden;
}

/* Glimmer background rotating effect in Hero Card */
.about-hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(242, 192, 31, 0.12) 0%, transparent 75%),
        radial-gradient(circle at 70% 70%, rgba(144, 23, 29, 0.1) 0%, transparent 75%);
    pointer-events: none;
    animation: slow-bg-rotation-about 25s linear infinite;
}

@keyframes slow-bg-rotation-about {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, var(--burgundy) 0%, var(--gold) 100%);
    border-radius: 3px;
}

.about-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 25px auto 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Editorial intro card */
.editorial-card, .gov-card {
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    box-shadow: var(--elevated-shadow);
    padding: 40px;
    margin-bottom: 40px;
}

.editorial-card h2, .gov-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 850;
    color: var(--burgundy);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.editorial-card p, .gov-card p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.7;
}

.editorial-card p:last-child, .gov-card p:last-child {
    margin-bottom: 0;
}

/* Mission & Vision Splits */
.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.mv-card {
    border-radius: 28px;
    padding: 35px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--elevated-shadow);
    border-color: var(--glass-border-gold);
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.mv-icon {
    font-size: 2.2rem;
}

.mv-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 850;
    color: var(--text-primary);
}

.mv-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 25px;
}

.mv-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mv-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet-check {
    color: var(--gold);
    font-weight: 900;
    font-size: 1.2rem;
    margin-top: -2px;
    line-height: 1;
}

.mv-list p {
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Sustainable Impact Callout */
.impact-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    box-shadow: var(--elevated-shadow);
    padding: 40px 40px 40px 50px;
    margin-bottom: 60px;
    overflow: hidden;
}

.impact-accent-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, var(--burgundy), var(--gold));
    border-radius: 24px 0 0 24px;
}

.impact-card h2 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.impact-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--burgundy-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.impact-card p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.impact-card p:last-child {
    margin-bottom: 0;
}

/* Internal Ambassadors margins */
.ambassadors-section-inside {
    margin-bottom: 60px;
}



/* Responsive design adjustments */
@media (max-width: 992px) {
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .about-page-container {
        padding-top: 110px;
    }

    .about-hero-card {
        padding: 40px 20px;
        border-radius: 24px;
        margin-bottom: 30px;
    }

    .editorial-card, .gov-card {
        padding: 24px;
        border-radius: 24px;
        margin-bottom: 25px;
    }

    .mv-card {
        padding: 24px;
        border-radius: 24px;
    }

    .impact-card {
        padding: 24px 24px 24px 32px;
        border-radius: 24px;
        margin-bottom: 40px;
    }

    .impact-card h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
}
