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

.about-container {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 20px 60px;
    /* space for nav/header */
    box-sizing: border-box;
}

.about-card {
    width: 100%;
    max-width: 820px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 44px;
    box-sizing: border-box;
}

.about-title {
    margin: 0 0 18px;
    font-size: 2.4rem;
    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-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-footer {
    margin: 0 0 28px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.about-cta {
    display: flex;
    justify-content: center;
}

.about-cta-btn {
    text-decoration: none;
    padding: 1rem 2rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .about-container {
        padding: 90px 16px 40px;
    }

    .about-card {
        padding: 28px 22px;
    }

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

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