/* Hero Section Styles - Shared across institutional pages */

.page-hero-section {
    background-color: white;
    padding: 3rem 0 2rem;
    position: relative;
}

.page-hero-content {
    text-align: center;
    position: relative;
}

.page-hero-label {
    position: absolute;
    top: 1rem;
    right: 0;
    background-color: var(--cisd-red, #dc2626);
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.page-hero-illustration {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-hero-illustration img {
    max-width: 100%;
    height: auto;
}

.page-hero-description {
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-description p {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-hero-label {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
        display: inline-block;
    }

    .page-hero-content {
        text-align: center;
    }

    .page-hero-section {
        padding: 2rem 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero-section {
        padding: 1.5rem 0 2rem;
    }

    .page-hero-description p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .page-hero-label {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    .page-hero-label {
        font-size: 14px;
        padding: 8px 16px;
    }
}
