/* ── Badge ─────────────────────────────────────────────────────────────── */

.t4p-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px 3px 8px;
    border-radius: 999px;
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 14px;
    color: #ffffff;
}

.t4p-badge::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.t4p-badge--virtual,
.t4p-badge--presencial {
    background-color: #FF0000;
    color: #ffffff;
    border: none;
}

.t4p-badge--virtual::before,
.t4p-badge--presencial::before {
    background-color: #ffffff;
}

/* ── Botón CTA ──────────────────────────────────────────────────────────── */

.t4p-cta {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: none;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border-style: solid;
    border-width: 1px;
    border-color: #ffffff;
    border-radius: 9px;
    padding: 16px 32px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s;
}

.t4p-cta:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* ── Ponente ────────────────────────────────────────────────────────────── */

.t4p-ponente {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t4p-ponente__foto-wrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.t4p-ponente__foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.t4p-ponente__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.t4p-ponente__nombre {
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.3;
    color: inherit;
}

.t4p-ponente__cargo {
    font-weight: 400;
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.3;
}
