
/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 32px;
}
.filter-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    background: none;
}
.filter-btn:hover { color: var(--navy-800); }
.filter-btn.active { color: var(--navy-800); border-bottom-color: var(--gold-500); }

/* Team Card */
.team-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}
.team-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.team-card.hidden { display: none; }

.tc-photo {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    background: var(--white);
}
.tc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s;
}
.team-card:hover .tc-photo img { transform: scale(1.04); }
.tc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--navy-900);
    color: var(--gold-400);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.tc-stats {
    display: flex;
    gap: 0;
    margin-bottom: 14px;
    background: #f9fafb;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
}
.tc-stat {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    border-right: 1px solid #f3f4f6;
}
.tc-stat:last-child { border-right: none; }
.tc-stat strong {
    display: block;
    font-size: 15px;
    font-weight: 900;
    color: var(--navy-800);
}
.tc-stat small {
    font-size: 10.5px;
    color: var(--text-light);
}

.tc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}
.tc-tag {
    font-size: 11.5px;
    padding: 3px 10px;
    background: var(--navy-50);
    color: var(--navy-700);
    border-radius: 20px;
    white-space: nowrap;
}

/* Culture Card */
.culture-card {
    text-align: center;
    padding: 28px 16px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}
.culture-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
}