.chamber-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    justify-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .chamber-team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .chamber-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 540px) {
    .chamber-team-grid {
        grid-template-columns: 1fr;
    }
}

.chamber-team-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    padding: 20px;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chamber-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.chamber-team-avatar-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    border: 3px solid #0d6efd;
}

.chamber-team-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chamber-team-info {
    width: 100%;
}

.chamber-team-name {
    margin: 0 0 6px;
    font-size: 1.1rem;
    color: #111827;
}

.chamber-team-title {
    margin: 0 0 8px;
    color: #6b7280;
}

.chamber-team-email a {
    color: #0d6efd;
    text-decoration: none;
    word-break: break-word;
}

.chamber-team-email a:hover {
    text-decoration: underline;
}
