/* Professional Governing Council Styles */
.council-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f8fafc;
    color: #0b9c48; /* Enville Green */
    padding: 60px 0;
}

/* Institutional Hero Header */
.council-hero {
    /* Gradient blended with Enville Green */
    background: linear-gradient(135deg, rgba(11, 156, 72, 0.95) 0%, rgba(16, 155, 69, 0.85) 100%), 
                url('Image/poly (2).png') center/cover no-repeat;
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}
.council-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.council-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.gold-line {
    width: 50px;
    height: 3px;
    background-color: #0b9c48; /* Enville Green divider */
    margin: 15px auto;
}

/* Modern Responsive Grid */
.council-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Council Member Card */
.council-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.council-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(11, 156, 72, 0.12); /* Subtle Enville Green hover glow */
    border-color: #0b9c48;
}

/* Uniform Image Frame Container */
.council-img-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f1f5f9;
    position: relative;
}
.council-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}
.council-card:hover .council-img-container img {
    transform: scale(1.04);
}

/* Card Text Content */
.council-info {
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}
.council-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0b9c48; /* Enville Green for member names */
    margin-bottom: 8px;
    line-height: 1.35;
}
.council-info .post {
    font-size: 0.8rem;
    color: #109b45; /* Enville Green variant for roles */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}