/* ADMINISTRATION PAGE */
.admin-hero {
        position: relative;
        height: 40vh;
        background: url('../images/admin_hero.jpg') center center / cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
}

.admin-hero-overlay {
        background: rgba(0, 0, 0, 0.4);
        width: 100%;
        height: 100%;
        text-align: center;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
}

.admin-section {
        background: var(--white-color);
        padding: 3rem 1rem;
}

.admin-container {
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
}

.admin-structure,
.admin-leadership {
        margin-bottom: 2rem;
}

.admin-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 1.5rem;
}

.admin-card {
        background: var(--secondary-color);
        border-radius: 8px;
        padding: 1rem;
        text-align: left;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.admin-card h3 {
        font-size: 1.2rem;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
}

.admin-leadership ul {
        list-style: none;
        margin: 0 auto;
        padding: 0;
        display: inline-block;
        text-align: left;
}

.admin-leadership li {
        margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
        .admin-grid {
                grid-template-columns: 1fr;
        }
}