/* ========================
   PONENTE / SPEAKER SECTION
   ======================== */

.ponente-section {
    width: 100%;
    background: #F4F5F7;
    color: #252728;
    padding: 0;
    overflow: hidden;
    margin-top: 60px;
    margin-bottom: 60px;
}

.ponente-container {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

/* Columna imagen */
.ponente-image-col {
    flex: 0 0 42%;
    max-width: 42%;
    position: relative;
    overflow: hidden;
}

.ponente-image-col picture {
    display: block;
    width: 100%;
    height: 100%;
}

.ponente-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Columna contenido */
.ponente-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 60px 60px 50px;
}

.ponente-label {
    display: inline-block;
    color: var(--primario-Black, #252728);
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: normal;
    margin-bottom: 16px;
}

.ponente-name {
    font-family: Montserrat, sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 6px 0;
    color: #252728;
}

.ponente-role {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin: 0 0 24px 0;
    font-style: italic;
}

.ponente-bio {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: #444;
    margin: 0 0 14px 0;
}

.ponente-bio:last-of-type {
    margin-bottom: 28px;
}

.ponente-bio strong {
    color: #252728;
    font-weight: 600;
    font-size: inherit;
}

/* CTA box */
.ponente-cta-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 28px;
}

.ponente-cta-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #252728;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.ponente-cta-icon svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

.ponente-cta-text strong {
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #252728;
    margin-bottom: 6px;
}

.ponente-cta-text p {
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Botón */
.btn-ponente {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #252728;
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    width: fit-content;
    letter-spacing: 0.3px;
}

.btn-ponente:hover {
    background: #3E4041;
    transform: translateY(-1px);
}

/* ========================
   RESPONSIVE
   ======================== */

@media (max-width: 900px) {
    .ponente-container {
        flex-direction: column;
    }

    .ponente-image-col {
        flex: none;
        max-width: 100%;
        height: 320px;
    }

    .ponente-content-col {
        padding: 36px 24px 40px 24px;
    }

    .ponente-name {
        font-size: 28px;
    }

    .ponente-role {
        font-size: 14px;
    }

    .ponente-bio {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ponente-image-col {
        height: 280px;
    }

    .ponente-content-col {
        padding: 28px 20px 36px 20px;
    }

    .ponente-name {
        font-size: 24px;
    }

    .ponente-cta-box {
        flex-direction: column;
        gap: 12px;
        padding: 16px 18px;
    }

    .btn-ponente {
        width: 100%;
        text-align: center;
    }
}
