/* ==========================================================================
   About
   ========================================================================== */
.eyebrow{
    margin:0
}
.about__panel {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: 48px 44px;
}

.about__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.about__heading {
    max-width: 520px;
}

.about__heading .section-title {
    font-size: 36px;
    letter-spacing: -0.8px;
}

.about__text {
    margin: 0;
    max-width: 440px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.55;
    color: var(--color-text-secondary);
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 26px;
}

.stat-card__value {
    font-weight: 900;
    font-size: 40px;
    letter-spacing: -1px;
    color: var(--color-brand);
    line-height: 1;
}

.stat-card__label {
    margin-top: 12px;
    font-weight: 700;
    font-size: 15px;
    color: var(--color-text);
}

.stat-card__desc {
    margin-top: 5px;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.4;
    color: var(--color-text-muted);
}

/* ---- Responsive ------------------------------------------------------------ */

@media (max-width: 1080px) {
    .about__stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .about__panel {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    /* `1fr` tracks refuse to shrink below their content's min-content width,
       so this grid blew past the viewport on narrow phones. minmax(0, 1fr)
       lets the columns actually shrink. */
    .about__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* last few pixels: the big stat numerals sat a hair wider than a 320px
       screen. */
    .stat-card {
        padding: 20px;
    }

    .stat-card__value {
        font-size: 34px;
    }
}
