/* ==========================================================
   ABOUT PAGE
   ========================================================== */

.about-intro__figure {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background-color: var(--color-light);
    aspect-ratio: 4 / 5;
}

.about-intro__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-intro__content .section__header {
    margin-bottom: var(--space-5);
}

/* Philosophy */

.about-philosophy__grid {
    display: grid;
    gap: var(--grid-gap);
    grid-template-columns: 1fr;
}

.about-philosophy__card {
    padding: var(--space-6);
    background-color: var(--color-white);
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.about-philosophy__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

@media (hover: none) {
    .about-philosophy__card:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }
}

.about-philosophy__title {
    margin-bottom: var(--space-3);
    font-size: var(--font-size-h4);
}

.about-philosophy__text {
    margin: 0;
    max-width: none;
    color: var(--color-text-light);
}

/* Credentials */

.about-credentials__list {
    display: grid;
    gap: var(--space-5);
    grid-template-columns: 1fr;
}

.about-credentials__item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    padding: var(--space-5);
    background-color: var(--color-off-white);
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--radius-lg);
}

.about-credentials__icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    color: var(--color-primary);
    background-color: var(--color-accent-soft);
    border-radius: var(--radius-md);
}

.about-credentials__title {
    margin-bottom: var(--space-2);
    font-size: var(--font-size-md);
}

.about-credentials__text {
    margin: 0;
    max-width: none;
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* Story */

.about-story__content p {
    max-width: none;
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
}

.about-story__content p:last-child {
    margin-bottom: 0;
}

/* Expectations */

.about-expect__grid {
    display: grid;
    gap: var(--grid-gap);
    grid-template-columns: 1fr;
}

.about-expect__card {
    padding: var(--space-6);
    background-color: var(--color-off-white);
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--radius-lg);
}

.about-expect__number {
    display: block;
    margin-bottom: var(--space-3);
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-extrabold);
    letter-spacing: var(--letter-spacing-wide);
    color: var(--color-accent);
}

.about-expect__title {
    margin-bottom: var(--space-3);
    font-size: var(--font-size-h4);
}

.about-expect__text {
    margin: 0;
    max-width: none;
    color: var(--color-text-light);
}

@media (min-width: 768px) {
    .about-philosophy__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-credentials__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-expect__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro__split {
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .about-expect__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
