/* Hero Egresados (inspirado en el mock) */
.alumni-hero {
    position: relative;
    padding: 5rem 1rem;
    height: 90vh;
}

/* Cabecera */
.alh-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 1.25rem;
}

.alh-title {
    margin: 0;
    font-weight: 800;
    line-height: .92;
    letter-spacing: -.02em;
}

.alh-title__primary {
    font-size: 4rem;
    display: block;
}

.alh-title__accent {
    margin-top: 1rem;
    display: block;
    font-size: 2.2rem;
    color: var(--color-primary-600);
}

/* Imágenes de fondo */
.alh-photo {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    background-image: var(--img), linear-gradient(135deg, #d7d1cb 0%, #f0ede9 100%);
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.alh-photo--left {
    bottom: 66px;
    left: 60px;
    width: 320px;
    height: 470px;
}

.alh-photo--center {
    bottom: 106px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 242px;
}

.alh-photo--right {
    top: 80px;
    right: 80px;
    width: 306px;
    height: 420px;
}

/* Ajustes responsivos */
@media (max-width: 1200px) {
    .alh-photo--left {
        width: 260px;
        height: 340px;
        left: 40px;
    }
    
    .alh-photo--center {
        width: 420px;
        height: 300px;
    }
    
    .alh-photo--right {
        width: 240px;
        height: 240px;
        right: 60px;
    }
}

@media (max-width: 768px) {
    .alumni-hero {
        height: 70vh;
    }
    .alh-panel {
        padding: 1.25rem;
        border-radius: 20px;
    }

    .alh-title__primary {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .alh-title__accent {
        font-size: clamp(2.4rem, 10vw, 3.6rem);
    }
    
    .alh-photo--center {
        width: 90%;
        max-width: 400px;
        height: 165px;
        bottom: 190px;
    }
}