/* ============================================================
   ABOUT PAGE — CLEAN FINAL VERSION (Matches Live Layout)
============================================================ */

/* Page wrapper */
.about-page .section {
    padding: 0px 0;
}

/* -----------------------------------------
   HERO TOP (Title + Subtitle)
------------------------------------------ */
.about-hero-top {
    padding: 10px 0 6px;
}

.about-hero-inner {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--ink-900);
    margin-bottom: 6px;
    text-align: left;
}

.about-hero-sub {
    font-size: 18px;
    color: var(--ink-600);
    max-width: 600px;
    margin: 0;
    text-align: left;
}

/* -----------------------------------------
   INFORMATION CARDS (2×2 Grid)
------------------------------------------ */
.about-page .about-cards {
    max-width: 1250px;
    margin: 14px auto 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.about-page .about-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px 22px;
    border: 1px solid var(--border-light);
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.about-page .about-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.about-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-card ul li {
    font-size: 15px;
    padding-left: 22px;
    margin-bottom: 5px;
    position: relative;
}

.about-card ul li::before {
    content: "✔";
    color: #22c55e;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.about-card.we-are-not ul li::before {
    content: "✖";
    color: #ef4444;
}

/* -----------------------------------------
   HERO IMAGE CLONE (Homepage Style)
------------------------------------------ */
.about-hero-homeclone {
    position: relative;
    width: 100%;
    max-width: 1250px;
    margin: 18px auto 6px;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
}

.about-hero-homeclone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-homeclone-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 20px;
    text-align: center;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.28),
        rgba(0, 0, 0, 0.55)
    );
}

.about-hero-homeclone-overlay h2,
.about-hero-homeclone-overlay p {
    color: #ffffff !important;
}

.about-hero-homeclone-badge {
    width: 88px;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.4));
}

/* -----------------------------------------
   HERO TAGS (Mini Pills)
------------------------------------------ */
.hero-pills {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.pill {
    padding: 6px 14px;
    background: white !important;
    color: var(--ink-900) !important;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 600;
}

.pill:hover {
    background: var(--ink-100);
    color: var(--ink-900);
}



/* -----------------------------------------
   CTA (We educate, not regulate)
------------------------------------------ */
.about-page .cta-card {
    max-width: 70%;
    margin: 16px auto 0;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-light);

    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* -----------------------------------------
   Responsive
------------------------------------------ */
@media (max-width: 900px) {
    .about-hero-title {
        font-size: 40px;
    }

    .about-page .about-cards {
        grid-template-columns: 1fr;
    }

    .about-page .cta-card {
        max-width: 100%;
    }
}
