/* ============================
   ABOUT SUB-HERO IMAGE
   ============================ */

.about-subhero {
    background: #000;
    padding: 1.5rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.about-subhero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
    box-sizing: border-box;
}

.about-subhero-image-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 14px 32px rgba(0,0,0,0.75);
    background: radial-gradient(circle at top left, rgba(200,167,99,0.12), rgba(0,0,0,1));
}

.about-subhero-image {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

/* Optional caption */
.about-subhero-caption {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #e6e6e6;
    opacity: 0.9;
    font-style: italic;
    text-align: right;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .about-subhero {
        padding: 1.5rem 0 2.5rem;
    }

    .about-subhero-inner {
        padding: 0 0.75rem;
    }

    .about-subhero-image {
        max-height: 320px;
    }
}