/* ----------------------------- */
/* About Intro Section */
/* ----------------------------- */
.about-intro {
    padding: 4rem 1rem;
    background: var(--background);
}

.about-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

/* ----------------------------- */
/* Text Content */
/* ----------------------------- */
.about-text {
    flex: 1.2;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.about-text h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

.about-lead {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: rgba(0, 0, 0, 0.8);
}

.about-text p {
    margin-bottom: 1rem;
    max-width: 620px;
}

/* About Link */
.about-link {
    margin-top: 1.2rem;
    display: inline-block;
}

/* ----------------------------- */
/* Highlights */
/* ----------------------------- */
.about-highlights {
    flex: 0.9;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.highlight-card {
    background: var(--white);
    padding: 1.4rem;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}

.highlight-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--primary);
}

.highlight-card span {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
}

/* ----------------------------- */
/* Responsive */
/* ----------------------------- */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-text p {
        max-width: 100%;
    }
}
