/* ============================================================
   about.css — DignityTools About Page Styles
   ============================================================ */

/* ── METHODOLOGY CARDS ── */
.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: #fff;
}

.method-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

/* ── STATS TABLE ── */
.stats-table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.stats-table-row:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.stats-table-value {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── TEAM CARDS ── */
.team-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

.team-role {
    font-size: 0.78rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* ============================================================
   MOBILE RESPONSIVE — about.css
   ============================================================ */

@media (max-width: 767px) {

    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .stats-table-value {
        font-size: 1.2rem;
    }

    .team-avatar {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }
}
