/* ============================================================================
   Team Badges CSS
   Simple, clean badge-style buttons for team section
   ============================================================================ */

.team-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.team-badge {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.team-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-badge-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.team-badge:hover .team-badge-icon {
    transform: scale(1.1);
}

.team-badge-icon i {
    font-size: 2.25rem;
    color: #2E5C9A !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.team-badge-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
    margin: 0;
}

/* Highlight Blue Text */
.highlight-blue {
    color: #2E5C9A;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .team-badges-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .team-badge {
        padding: 0.875rem 0.625rem;
    }

    .team-badge-icon {
        width: 35px;
        height: 35px;
    }

    .team-badge-icon i {
        font-size: 1.25rem;
    }

    .team-badge-text {
        font-size: 0.8125rem;
    }
}
