/* ==========================================================================
   Committee Component & Page Styles
   ========================================================================== */

/* Committee Card (Reusable on Home & Single Page) */
.committee-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 25px 20px;
    text-align: center;
    border: 1px solid var(--border-divider);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.committee-card:hover {
    transform: translateY(-5px);
}

.committee-img-container {
    position: relative;
    max-width: 150px;
    margin: 0 auto 30px auto;
    border-radius: 24px;
    padding: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: var(--bg-white);
}

.committee-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    border: none;
}

.committee-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.committee-name {
    font-size: 1rem;
    color: var(--primary-blue-dark);
    font-weight: 700;
    margin-bottom: 5px;
}

.committee-designation {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.committee-country-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-orange);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(245, 108, 10, 0.3);
    z-index: 2;
}

.committee-btn {
    margin-top: auto; /* Push to bottom */
}

/* Single Profile Info Block */
.profile-main-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 24px;
    border: 6px solid white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin: 0 auto 25px;
    display: block;
}

.profile-info-block {
    text-align: left;
    background: #f8fafc;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
}

.profile-info-item {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.profile-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.profile-info-item:first-child {
    padding-top: 0;
}

.profile-info-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.profile-info-label i {
    width: 22px;
    color: var(--accent-orange);
    font-size: 0.85rem;
}

.profile-info-value {
    font-size: 0.95rem;
    color: var(--primary-blue-dark);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    line-height: 1.4;
}

.profile-info-value:last-child {
    margin-bottom: 0;
}


