/* ==========================================================================
   TRISDHA — INDUSTRIES PAGE STYLES
   Sections: Industries Hero, Editorial Industry Blocks
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* 1. INDUSTRIES HERO                                                      */
/* ---------------------------------------------------------------------- */
.industries-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 80px;
    overflow: hidden;
}

.industries-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.industries-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industries-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(14, 39, 72, 0.93) 0%, rgba(23, 63, 115, 0.85) 60%, rgba(14, 39, 72, 0.7) 100%);
    z-index: 1;
}

.industries-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: var(--trisdha-white);
}

.industries-hero-content h1 {
    color: var(--trisdha-white);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin-bottom: 20px;
}

.industries-hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0;
}

/* ---------------------------------------------------------------------- */
/* 2. EDITORIAL INDUSTRY BLOCKS                                            */
/* ---------------------------------------------------------------------- */
.industry-editorial {
    padding: 100px 0;
}

.editorial-media {
    position: relative;
}

.editorial-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 2px;
}

.editorial-index {
    position: absolute;
    top: -18px;
    left: -18px;
    background: var(--trisdha-navy);
    color: var(--trisdha-white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 14px 30px rgba(14, 39, 72, 0.25);
}

.editorial-content {
    max-width: 520px;
}

.editorial-content h2 {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.editorial-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--trisdha-charcoal);
    margin-bottom: 16px;
}

.editorial-content p:not(.editorial-lead) {
    color: var(--trisdha-grey);
    margin-bottom: 26px;
}

@media (max-width: 991.98px) {
    .industry-editorial {
        padding: 60px 0;
    }

    .editorial-index {
        top: -14px;
        left: -14px;
        width: 52px;
        height: 52px;
        font-size: 1rem;
    }

    .editorial-content {
        max-width: 100%;
    }
}
