/* ===================================
   INSTITUTIONS PAGE – DEDICATED STYLES
   =================================== */

/* --- Hero Section --- */
.inst-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    background-color: #000;
}

.inst-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.inst-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.7;
}

.inst-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.inst-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 30px;
    margin-top: 60px;
}

.inst-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.35;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.inst-hero-content h1 span {
    font-weight: 300;
    font-size: 2.8rem;
}

/* --- Shared heading style --- */
.inst-section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 40px;
    color: #111;
}

.inst-section-heading.white {
    color: #fff;
}

/* ===================================
   INSTITUTIONAL REALITIES SECTION
   =================================== */

.inst-realities {
    background: linear-gradient(170deg, #f0f4f8 0%, #e8edf3 40%, #dce3ea 100%);
    padding: 100px 0;
}

.inst-realities-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.inst-realities-left .inst-section-heading {
    margin-bottom: 30px;
}

.inst-realities-lead {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.8;
    color: #111;
    margin-bottom: 20px;
}

.inst-realities-left p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}

/* Right column: category cards */
.inst-realities-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inst-reality-card {
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.65);
    border-left: 3px solid #c46015;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.inst-reality-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(4px);
}

.inst-reality-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #c46015;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.inst-reality-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

/* ===================================
   AREAS OF INSTITUTIONAL SUPPORT (Dark)
   =================================== */

.inst-support {
    background-color: #000;
    padding: 0;
}

.inst-support-inner {
    display: flex;
    min-height: 100vh;
}

.inst-support-left {
    flex: 0 0 50%;
    display: flex;
    gap: 28px;
    padding: 80px 60px;
    align-items: flex-start;
    min-height: 100vh;
    background: #000;
}

.inst-support-body {
    max-width: 520px;
    padding: 80px 0;
}

.inst-support-left {
    flex: 0 0 50%;
    display: flex;
    gap: 28px;
    padding: 80px 60px;
    align-items: flex-start;
    min-height: 100vh;
    background: #000;
}

.inst-support-body {
    max-width: 520px;
    padding: 80px 0;
}

.inst-support-left h2 {
    margin-bottom: 50px;
}

/* Service items with white line accent */
.inst-service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.inst-service-line {
    width: 3px;
    min-height: 60px;
    background-color: #fff;
    flex-shrink: 0;
    margin-top: 4px;
    border-radius: 2px;
}

.inst-service-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #c46015;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.inst-service-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: #ccc;
}

/* Right: students image */
.inst-support-right {
    flex: 0 0 50%;
    position: sticky;
    top: 0;
    height: 100vh;
    align-self: flex-start;
}

.inst-support-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   HOW I ENGAGE (Light)
   =================================== */

.inst-engage {
    background-color: #fff;
    padding: 0;
}

.inst-engage-inner {
    display: flex;
    min-height: 100vh;
}

/* Left: lecture hall image */
.inst-engage-left {
    flex: 0 0 50%;
    position: sticky;
    top: 0;
    height: 100vh;
    align-self: flex-start;
}

.inst-engage-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inst-engage-right {
    flex: 0 0 50%;
    display: flex;
    gap: 28px;
    padding: 80px 60px;
    align-items: flex-start;
    min-height: 100vh;
    background: #fff;
}

.inst-engage-body {
    max-width: 520px;
    padding: 80px 0;
}

.inst-engage-right h2 {
    margin-bottom: 40px;
}

/* Principle items */
.inst-principle {
    margin-bottom: 28px;
    padding-left: 20px;
    border-left: 3px solid #c46015;
}

.inst-principle h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.inst-principle p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
}

/* ===================================
   WHAT THIS WORK ENABLES (Dark)
   =================================== */

.inst-enables {
    background-color: #111;
    padding: 100px 0;
}

.inst-enables-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: start;
}

/* Left: tagline + outcomes */
.inst-enables-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.55rem;
    font-weight: 300;
    font-style: italic;
    color: #c46015;
    margin-bottom: 30px;
    line-height: 1.5;
}

.inst-enables-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #ccc;
    margin-bottom: 20px;
}

.inst-enables-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inst-enables-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    color: #ddd;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.inst-enables-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c46015;
    font-size: 1.2rem;
}

/* Vertical divider */
.inst-enables-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    min-height: 300px;
    align-self: stretch;
}

/* Right: partnership CTA */
.inst-enables-right h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.inst-enables-right p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}

.inst-cta-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    padding: 14px 36px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.inst-cta-btn:hover {
    background-color: #c46015;
    border-color: #c46015;
    color: #fff;
}

.inst-cta-btn .arrow {
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.inst-cta-btn:hover .arrow {
    margin-left: 14px;
}

/* ===================================
   RESPONSIVE – TABLET (≤1024px)
   =================================== */

@media (max-width: 1024px) {
    .inst-hero-content h1 {
        font-size: 2.6rem;
    }

    .inst-hero-content h1 span {
        font-size: 2.2rem;
    }

    .inst-realities-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .inst-support-left,
    .inst-engagement-text {
        padding: 48px 36px;
    }

    .inst-engage-right {
        padding: 48px 36px;
    }

    .inst-enables-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .inst-enables-divider {
        width: 100%;
        height: 1px;
        min-height: unset;
    }
}

/* ===================================
   RESPONSIVE – MOBILE (≤768px)
   =================================== */

@media (max-width: 768px) {
    .inst-hero {
        height: 70vh;
        min-height: 450px;
    }

    .inst-hero-content h1 {
        font-size: 2rem;
    }

    .inst-hero-content h1 span {
        font-size: 1.7rem;
    }

    .inst-section-heading {
        font-size: 1.7rem;
        letter-spacing: 2px;
    }

    .inst-realities {
        padding: 70px 0;
    }

    .inst-realities-inner {
        padding: 0 24px;
    }

    /* Stack alternating sections */
    .inst-support-inner,
    .inst-engage-inner {
        flex-direction: column;
    }

    /* Force text first, image second on mobile */
    .inst-support-left,
    .inst-engage-right {
        order: 1;
    }

    .inst-support-right,
    .inst-engage-left {
        order: 2;
    }

    .inst-support-left,
    .inst-engage-right {
        flex: 1 1 auto;
        min-height: auto;
        padding: 40px 24px;
    }

    .inst-support-right,
    .inst-engage-left {
        flex: 1 1 auto;
        position: relative;
        height: auto;
        min-height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 24px;
        background-color: #000;
    }

    .inst-support-right img,
    .inst-engage-left img {
        height: auto;
        max-height: 400px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .inst-enables {
        padding: 70px 0;
    }

    .inst-enables-inner {
        padding: 0 24px;
    }

    .inst-enables-right h2 {
        font-size: 1.5rem;
    }
}

/* ===================================
   RESPONSIVE – SMALL MOBILE (≤480px)
   =================================== */

@media (max-width: 480px) {
    .inst-hero {
        height: 60vh;
        min-height: 360px;
    }

    .inst-hero-content h1 {
        font-size: 1.5rem;
    }

    .inst-hero-content h1 span {
        font-size: 1.3rem;
    }

    .inst-section-heading {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .inst-realities {
        padding: 50px 0;
    }

    .inst-realities-inner {
        padding: 0 16px;
    }

    .inst-reality-card {
        padding: 18px 20px;
    }

    .inst-support {
        padding: 50px 0;
    }

    .inst-support-left {
        padding: 30px 16px;
    }

    .inst-support-right {
        padding: 30px 16px;
    }

    .inst-support-right img {
        max-height: 350px;
    }

    .inst-engage {
        padding: 50px 0;
    }

    .inst-engage-right {
        padding: 30px 16px;
    }

    .inst-engage-left {
        padding: 30px 16px;
    }

    .inst-engage-left img {
        max-height: 350px;
    }

    .inst-enables {
        padding: 50px 0;
    }

    .inst-enables-inner {
        padding: 0 16px;
    }

    .inst-enables-tagline {
        font-size: 1.2rem;
    }

    .inst-cta-btn {
        padding: 12px 28px;
        font-size: 0.78rem;
    }
}
