/* ===========================================================
   About Us page — extends the shared .tp-* inner-page template
   =========================================================== */

/* ---------- "Why KMSchool?" lead line ---------- */
.ab-lead {
    font-size: 18px !important;
    font-weight: 600;
    color: #85C555 !important;
    margin-bottom: 18px !important;
    line-height: 28px !important;
}

/* ---------- CCMA video (right column of the intro row) ---------- */
.ab-video-figure {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
    background: #000;
}

.ab-video-figure iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ---------- "Learn more" buttons on the alternating rows ---------- */
.ab-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #30A7DF;
    font-size: 15.5px;
    font-weight: 600;
    text-decoration: none;
}

.ab-link::after {
    content: '\2192';
    transition: transform 0.15s;
}

.ab-link:hover::after {
    transform: translateX(4px);
}

/* ---------- Vision outcomes grid (compact cards) ---------- */
.ab-outcomes {
    list-style: none;
    margin: 18px 0 22px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ab-outcomes li {
    background: #ffffff;
    border: 1px solid #e4edf3;
    border-radius: 12px;
    padding: 14px 16px;
}

.ab-outcomes strong {
    display: block;
    font-size: 15px;
    color: #0E4459;
    margin-bottom: 4px;
}

.ab-outcomes span {
    font-size: 13.5px;
    line-height: 20px;
    color: #4A5565;
}

/* ===========================================================
   Vision & Approach detail page
   =========================================================== */
.va-band {
    background: #ffffff;
    padding: 84px 50px;
}

.va-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 46px;
}

.va-head span {
    color: #30A7DF;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.va-head h2 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #101828;
    margin-top: 10px;
}

.va-head p {
    color: #4A5565;
    font-size: 16px;
    line-height: 28px;
    margin-top: 14px;
}

.va-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.va-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 14px 34px rgba(14, 68, 89, 0.08);
    border-top: 4px solid #85C555;
}

.va-card .va-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eef7e6;
    color: #5a9e2c;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
}

.va-card h3 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0E4459;
    margin-bottom: 10px;
}

.va-card p {
    color: #4A5565;
    font-size: 15px;
    line-height: 25px;
}

@media (max-width: 900px) {
    .va-band {
        padding: 60px 28px;
    }

    .va-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ---------- Map (full-width / edge-to-edge) ---------- */
.ab-map {
    padding: 84px 0 0;
    background: #ffffff;
}

.ab-map-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
    padding: 0 24px;
}

.ab-map-head span {
    color: #30A7DF;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.ab-map-head h2 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #101828;
    margin-top: 10px;
}

.ab-map-head p {
    color: #4A5565;
    font-size: 16px;
    line-height: 26px;
    margin-top: 12px;
}

.ab-map-frame {
    width: 100%;
    margin: 0;
    overflow: hidden;
    line-height: 0;
}

.ab-map-frame iframe {
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .ab-ccma {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .ab-map {
        padding: 60px 0 0;
    }

    .ab-map-frame iframe {
        height: 320px;
    }
}

@media (max-width: 560px) {
    .ab-outcomes {
        grid-template-columns: 1fr;
    }
}
