/* ============================================================
   committees.css — Local Committees page
   ============================================================ */

/* ══════════════════════════════════════
   COMMITTEES INTRO
══════════════════════════════════════ */
.committees-intro { background: white; }
.committees-intro .section-sub { max-width: 100%; }
.committees-intro-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
}
.committees-intro-body .section-sub + .section-sub { margin-top: 1rem; }
.committees-intro-body .btn { margin-top: 2rem; }

.committees-intro-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.committees-intro-img img { width: 100%; height: 420px; object-fit: cover; }

@media (max-width: 900px) {
    .committees-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
    .committees-intro-img img { height: 280px; }
}

/* ══════════════════════════════════════
   NATIONAL TEAM
══════════════════════════════════════ */
.national-team-section {
    background: white; text-align: center;
    padding: 5rem 2rem;
}
.national-team-section .section-sub { max-width: 560px; margin: 1rem auto 2rem; }

/* ══════════════════════════════════════
   COMMITTEES GRID
══════════════════════════════════════ */
.committees-section { background: var(--light-gray); }

.lc-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem; margin-top: 3.5rem;
}

.lc-card {
    background: white; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    border: 2px solid transparent; transition: var(--transition);
}
.lc-card:hover { border-color: var(--blue); transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.lc-card-photo { height: 160px; overflow: hidden; }
.lc-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: var(--transition); }
.lc-card:hover .lc-card-photo img { transform: scale(1.06); }

.lc-card-top {
    padding: 1.5rem 1.5rem 1rem;
    position: relative; overflow: hidden;
}
.lc-name { font-size: 1.05rem; font-weight: 800; position: relative; z-index: 1; }
.lc-full { font-size: 0.82rem; color: var(--dark-gray); margin-top: 0.2rem; position: relative; z-index: 1; }

.lc-card-body { padding: 0 2rem 2rem; }
.lc-meta {
    display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
    padding: 1rem 0; border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray); margin-bottom: 1.25rem;
}
.lc-meta-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--dark-gray); }
.lc-meta-item span:first-child { font-size: 0.95rem; }

.lc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.lc-tag {
    background: var(--light-gray); color: var(--dark-gray);
    font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.7rem; border-radius: 50px;
}
.lc-card .btn { width: 100%; justify-content: center; }

@media (max-width: 1100px) { .lc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .lc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lc-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   MAP / LOCATION SECTION
══════════════════════════════════════ */
.map-section { background: white; }
.map-section .section-sub { max-width: 100%; margin-bottom: 2.5rem; }
.map-placeholder {
    width: 100%; height: 380px; border-radius: var(--radius);
    background: var(--light-gray);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 1rem; color: var(--mid-gray);
    border: 2px dashed #d1d5db;
}
.map-placeholder .map-icon { font-size: 3rem; }
.map-placeholder p { font-size: 0.9rem; font-weight: 500; }
