/* =============================================================
   ABOUT SECTION  →  template-parts/home/about.php
   Style: stthomasghaziabad.org — image left with dot pattern, text right
   ============================================================= */

.about-section { background: #fff; overflow: hidden; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── LEFT: Image column ── */
.about-image-col { position: relative; }

.about-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Dot pattern — positioned behind and offset top-left */
.about-dots-pattern {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(circle, #1a3a6e 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    z-index: 0;
    opacity: 0.35;
}

/* Main school photo */
.about-img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(26,58,110,0.18);
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Watermark text on bottom of image */
.about-img-watermark {
    position: absolute;
    bottom: 16px;
    right: -12px;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    letter-spacing: 0.15em;
    pointer-events: none;
    text-transform: uppercase;
    line-height: 1;
}

/* ── RIGHT: Text column ── */
.about-text-col { padding-left: 8px; }

.about-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--navy);
    margin: 6px 0 4px;
    line-height: 1.2;
}

.about-school-sub {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 16px;
    display: block;
}

.about-divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 22px;
    border-radius: 2px;
}

.about-para {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.82;
    margin-bottom: 16px;
}

.about-btn { margin-top: 10px; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-col { order: -1; }
    .about-img-watermark { font-size: 2.5rem; }
}
