/* About page — builds on the Parents design system (parent.css tokens). */

.about-page .about-hero-subtitle {
    max-width: 640px;
    margin: 0 auto;
    font-size: clamp(1rem, 2vw, 1.12rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--parent-ink-2);
    text-align: center;
}

.about-prose {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 100px;
}

.about-prose p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--parent-ink-2);
    margin: 0 0 20px;
}

.about-prose p:last-child {
    margin-bottom: 0;
}

/* Feature cards reuse .parent-how-card; center the content without the number. */
.about-value-card {
    text-align: center;
}

/* Comparison layout */
.about-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 880px;
    margin: 0 auto;
}

.about-compare-card {
    background: var(--parent-white);
    border: 1px solid var(--parent-line);
    border-radius: var(--parent-radius);
    padding: 38px 34px;
}

.about-compare-card--us {
    border-color: rgba(196, 82, 42, 0.28);
    box-shadow: 0 16px 40px rgba(196, 82, 42, 0.07);
}

.about-compare-card--alt {
    background: #f4f1ed;
}

.about-compare-title {
    font-family: "Literata", serif;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0 0 22px;
    color: var(--parent-ink);
}

.about-compare-card--us .about-compare-title {
    color: var(--parent-accent);
}

.about-compare-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--parent-ink);
}

.about-compare-list--muted li {
    color: var(--parent-ink-2);
    font-weight: 300;
}

.about-check {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-top: 1px;
    color: var(--parent-accent);
}

.about-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 9px;
    background: var(--parent-ink-3);
}

/* Secondary CTA button on the dark CTA block */
.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.about-btn-light {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.about-btn-light:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .about-compare-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .about-prose {
    margin-bottom: 0px;
}
}
