/* ==========================================================================
   About Page Styles
   ========================================================================== */

/* ---------- Story Section ---------- */

.about-story {
    max-width: 75ch;
    margin-inline: auto;
}

.about-story h2 {
    margin-bottom: var(--space-6);
}

.about-story p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
}

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

/* ---------- Values Grid ---------- */

.about-values h2 {
    text-align: center;
    margin-bottom: var(--space-12);
}

.about-values .info-card {
    text-align: center;
}

.about-values .info-card svg {
    width: 48px;
    height: 48px;
    color: var(--color-primary-600);
    margin-inline: auto;
    margin-bottom: var(--space-4);
}

.about-values .info-card h3 {
    margin-bottom: var(--space-2);
    font-size: var(--text-xl);
}

.about-values .info-card p {
    color: var(--color-text-secondary);
}

/* ---------- Potted Advantage ---------- */

.about-potted {
    background-color: var(--color-primary-100);
}

.about-potted h2 {
    margin-bottom: var(--space-8);
}

.about-potted__benefits {
    display: grid;
    gap: var(--space-4);
}

.about-potted__benefit {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
}

.about-potted__benefit svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-primary-600);
    margin-top: 0.2em;
}

/* ---------- Photo Strip ---------- */

.about-photos h2 {
    text-align: center;
    margin-bottom: var(--space-8);
}

.about-photos__grid {
    display: grid;
    gap: var(--space-4);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .about-photos__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-photos__item img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--card-radius);
    width: 100%;
    height: auto;
}
