/* ===================================
   Sección InfoGlobus - Tarjetas Visibles
   =================================== */

/* Override para hacer las tarjetas siempre visibles */
.experts_team_section .experts_box {
    background-color: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.experts_team_section .experts_box:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-5px);
}

/* Asegurar que las columnas tengan la misma altura */
.experts_team_section .row {
    display: flex;
    flex-wrap: wrap;
}

.experts_team_section .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

/* Hacer que el contenido de texto ocupe el espacio disponible */
.experts_team_section .experts_box .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Estilos para los títulos */
.experts_team_section .experts_box .text h3 {
    color: var(--dark-purple) !important;
    margin-bottom: 1rem;
}

/* Estilos para los párrafos */
.experts_team_section .experts_box .text p {
    color: var(--body-text-purple);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

/* Imagen circular con borde */
.experts_team_section .experts_box img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto 30px;
    transition: transform 0.3s ease;
}

.experts_team_section .experts_box:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .experts_team_section .experts_box {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .experts_team_section .experts_box img {
        width: 120px;
        height: 120px;
    }

    .experts_team_section .experts_box {
        padding: 25px 20px;
    }

    .experts_team_section .experts_box .text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .experts_team_section .experts_box img {
        width: 100px;
        height: 100px;
    }

    .experts_team_section .experts_box {
        padding: 20px 15px;
    }

    .experts_team_section .experts_box .text h3 {
        font-size: 1.1rem;
    }

    .experts_team_section .experts_box .text p {
        font-size: 0.9rem;
    }
}
