/* ==========================================================================
   SPECIALISTS SECTION (Sequence)
   ========================================================================== */

.ccl-specialists-section {
    padding: 80px 0;
    background-color: #f8fafd;
}

.ccl-specialists-header {
    margin-bottom: 50px !important;
    align-items: flex-end;
}



.ccl-specialists-header p {
    font-size: 18px;
    color: var(--color-gray-dark);
    margin: 0 !important;
    line-height: 1.4;
    text-align: left; /* Alineado a la derecha */
    font-weight: 300;
}

/* Container for the grid and the connecting line */
.ccl-specialists-grid-container {
    position: relative;
    margin-top: 60px;
}

/* Horizontal Connecting Line */
.ccl-step-line {
    position: absolute;
    top: 231px; /* Center of numbers: (180px img + 30px gap) + (42px number / 2) */
    left: 0;
    right: 0;
    height: 1px;
    background-color: #d1d5db;
    z-index: 1;
}

/* Specialists Grid */
.ccl-specialists-grid {
    position: relative;
    z-index: 2;
    gap: 0 !important;
}

.ccl-specialist-item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Profile Image */
.ccl-spec-image-wrap {
    width: 180px !important;
    height: 180px !important;
    margin: 0 auto 30px auto !important;
    position: relative;
}

.ccl-spec-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 50% !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Step Number Circle */
.ccl-spec-step-number {
    width: 42px !important;
    height: 42px !important;
    background-color: var(--color-accent) !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 20px auto !important;
    border: none !important; /* Borde eliminado */
    z-index: 3;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,160,223,0.1);
    transition: all 0.3s ease-in-out;
}

.ccl-spec-step-number:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 20px rgba(0, 116, 197, 0.4);
    cursor: pointer;
}

/* Label */
.ccl-spec-label {
    font-size: 16px !important;
    font-weight: 500;
    color: var(--color-gray-dark) !important; /* Cambiado a gris oscuro */
    margin: 0 auto !important;
    max-width: 200px;
    line-height: 1.3 !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .ccl-step-line {
        display: none;
    }
    
    .ccl-specialists-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .ccl-specialist-item {
        margin-bottom: 50px;
    }
}
