.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 60px;
}

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: 48px;
    padding: 52px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(241, 250, 238, 0.72));
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-hero h1,
.about-story h2 {
    margin: 0;
    color: var(--dark-color);
    line-height: 1.18;
}

.about-hero h1 {
    max-width: 620px;
    font-size: 2.6rem;
}

.about-hero-lead {
    margin: 20px 0 30px;
    color: #555;
    font-size: 1.2rem;
}

.about-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    color: var(--light-color);
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-hero-button:hover {
    color: var(--light-color);
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.about-carousel {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16 / 10;
    justify-self: center;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-carousel.is-dragging {
    cursor: grabbing;
}

.about-carousel-track {
    display: flex;
    width: 600%;
    height: 100%;
    transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.about-carousel.is-dragging .about-carousel-track,
.about-carousel-track.is-resetting {
    transition: none;
}

.about-carousel-slide {
    flex: 0 0 calc(100% / 6);
    margin: 0;
}

.about-carousel-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
}

.about-story {
    margin-top: 60px;
    text-align: center;
}

.about-story h2 {
    align-self: center;
    width: fit-content;
    margin: 0 0 32px;
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 1.18;
    text-align: center;
}

.about-story h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    margin-top: 14px;
    background-color: var(--primary-color);
}

.about-story-content {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    min-height: 450px;
    margin: 0;
    padding: 44px 52px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-section-heading {
    margin-bottom: 24px;
}

.about-story-content p {
    margin: 0 0 22px;
    color: #555;
    font-size: 1.22rem;
    line-height: 1.75;
}

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

.about-story-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--primary-color);
    font-size: 1.45rem;
}

@media (max-width: 900px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .about-page {
        padding: 0 0 40px;
    }

    .about-hero {
        gap: 32px;
        padding: 30px 22px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-story {
        margin-top: 42px;
    }

    .about-story-content {
        min-height: 0;
        padding: 32px 24px;
    }

    .about-story-content p {
        font-size: 1.1rem;
    }
}

