/* About page */

.about-hero {
    padding: 4rem 0;
}

.about-hero-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.about-hero-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    /* Frame both painters (heads ~40% down) rather than the wall above them */
    object-position: center 40%;
    display: block;
}

.about-feature-box {
    background: var(--brand-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.about-feature-box h3 {
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-feature-box ul {
    padding-left: 1.2rem;
    color: var(--muted);
    line-height: 1.9;
}

.about-card {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.about-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .about-hero {
        padding: 3rem 0;
    }

    /* Stacked hero: a banner-height image rather than a 420px slab */
    .about-hero-card img {
        height: 340px;
    }
}

@media (max-width: 575.98px) {
    .about-hero {
        padding: 2rem 0;
    }

    .about-hero-card img {
        height: 300px;
    }
}
