/***** SUBPAGES (ABOUT & CONTACT) *****/

/* COMPACT HERO */
.hero--compact {
    padding: var(--space-lg) 0;
    min-height: auto;
}

/* SHARED SUBPAGE MEDIA */
.about-story__image,
.about-features__image,
.military-support__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-story__image img,
.about-features__image img,
.military-support__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ABOUT PAGE SPECIFIC */
.about-story__image {
    aspect-ratio: 4 / 3;
}

.about-stats {
    margin-top: var(--space-md);
}

.about-features__image {
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-values {
    background: var(--color-bg-primary);
}

.section-values h2 {
    color: var(--color-bg-white);
}

.feature-list-item {
    color: var(--color-text-dark);
}

.feature-list li {
    color: var(--color-text-muted);
}


/* MILITARY SUPPORT SECTION */
.military-support__badge-row {
    margin-top: var(--space-md);
}

.military-support__image {
    aspect-ratio: 16 / 10;
}

/* CONTACT PAGE SPECIFIC */
.contact-method h3 {
    margin-bottom: var(--space-2xs);
}

.area-item h3 {
    color: var(--color-bg-secondary);
    margin-bottom: var(--space-2xs);
}

/* RESPONSIVE OVERRIDES */
@media (max-width: 768px) {
    .about-story__image {
        aspect-ratio: 16 / 10;
        order: 1;
    }

    .about-features__image,
    .military-support__image {
        order: -1;
    }
}
