/* ==================================================
   MANAGEMENT & STAFF PAGE (ISOLATED CSS)
   ================================================== */

/* ================= MANAGEMENT SECTION ================= */

.management-section {
    padding: 40px 0;
}

.management-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Leadership card */
.management-card {
    display: flex;
    gap: 28px;
    margin-bottom: 30px;
    padding: 24px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    align-items: flex-start;
}

/* Leadership image (BIGGER than staff) */
.management-card img {
    width: 220px;          /* ✅ clearly larger */
    height: 280px;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
    border: 1px solid #ddd;
    flex-shrink: 0;
}

/* Text content */
.management-content {
    flex: 1;
}

.management-content h3 {
    margin: 0 0 6px;
    font-size: 21px;
    font-weight: 700;
    color: #0a3d62;
}

.management-content .designation {
    font-weight: 600;
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
}

.management-content p {
    line-height: 1.7;
    color: #374151;
    font-size: 15px;
}

/* ================= STAFF SECTION ================= */

.staff-section {
    padding: 40px 0;
}

.staff-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* 5-column grid */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* ✅ 5 PER ROW */
    gap: 20px;
}

/* Staff card */
.staff-card {
    background: #ffffff;
    padding: 14px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Staff image (smaller than leadership) */
.staff-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Staff text */
.staff-card h4 {
    margin: 6px 0 4px;
    font-size: 15px;
    font-weight: 600;
    color: #0a3d62;
}

.staff-card .designation {
    font-size: 13px;
    color: #555;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1200px) {
    .staff-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .staff-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .management-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .management-card img {
        width: 240px;
        height: 300px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .management-card img {
        width: 200px;
        height: 260px;
    }
}

