/* About Page Styles
 * Scoped to .about-* classes to avoid global regressions
 */

.about-card {
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}

.about-title {
    margin: 0 0 18px;
    font-size: var(--text-3xl);
    text-align: center;
    letter-spacing: 0.2px;
    color: #fff;
}

.about-lede {
    margin: 0 0 22px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

.about-subtitle {
    margin: 28px 0 12px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.about-mini-heading {
    margin: 4px 0 12px;
    font-size: 0.95rem;
    color: #93c5fd;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-list {
    margin: 0 0 22px;
    padding-left: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
}

.about-list li {
    margin-bottom: 8px;
}

.about-list--compact {
    margin-top: 0;
}

.about-footer {
    margin: 0 0 28px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .about-card {
        padding: 32px 20px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-lede,
    .about-footer {
        font-size: 1rem;
    }
}
