

.ponente-single {
    font-family: 'Lato', sans-serif;
    color: #1b1c19;
}


.ponente-header {
    padding: 48px 0;
    display: flex;
    gap: 44px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .ponente-header {
        flex-direction: column;
        padding: 32px 0;
    }
}

.ponente-header__sidebar {
    width: 240px;
    flex-shrink: 0;
}

.ponente-header__img-wrap {
    width: 240px;
    height: 280px;
    border-radius: 12px;
    background: #e8ecec;
    position: relative;
    overflow: hidden;
}

.ponente-header__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ponente-header__img-head {
    position: absolute;
    left: 50%;
    top: 22%;
    transform: translateX(-50%);
    width: 38%;
    height: 33%;
    border-radius: 50%;
    background: #b7c1c0;
}

.ponente-header__img-body {
    position: absolute;
    left: 50%;
    bottom: -14%;
    transform: translateX(-50%);
    width: 74%;
    height: 52%;
    border-radius: 50% 50% 0 0;
    background: #b7c1c0;
}

.ponente-header__img-label {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #9aa3a1;
}

.ponente-social {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ponente-social__btn {
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ponente-social__btn:focus-visible {
    outline: 3px solid #008a9c;
    outline-offset: 2px;
    border-radius: 6px;
}

.ponente-social__btn--primary {
    background: #008a9c;
    color: #ffffff;
    font-weight: 900;
}

.ponente-social__btn--primary:hover {
    background: #007686;
    color: #ffffff;
}

.ponente-social__row {
    display: flex;
    gap: 10px;
}

.ponente-social__btn--secondary {
    flex: 1;
    padding: 11px;
    border: 1.5px solid #008a9c;
    color: #008a9c;
}

.ponente-social__btn--secondary:hover {
    background: #f4fcfe;
}


.ponente-info {
    flex: 1;
}

.ponente-info__name {
    margin: 14px 0 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 42px;
}

.ponente-info__role {
    margin-top: 10px;
    font-size: 19px;
    color: #008a9c;
    font-weight: 700;
}

.ponente-meta {
    margin-top: 16px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 15px;
}

.ponente-meta__item-label {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #9aa3a1;
}

.ponente-meta__item-val {
    margin-top: 3px;
    font-weight: 700;
}

.ponente-bio__title {
    margin: 30px 0 12px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 22px;
}

.ponente-bio p {
    margin: 0 0 14px 0;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.7;
    color: #3a3f3d;
}


.ponente-section {
    padding: 24px 0;
    margin-top: 32px;
    border-top: 1px solid #eef1f1;
}

.ponente-section__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ponente-section__title {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 26px;
}


.ponente-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 991px) {
    .ponente-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ponente-events-grid {
        grid-template-columns: 1fr;
    }
}

.ponente-event-card {
    text-decoration: none;
    color: inherit;
    border: 1px solid #e6e9e9;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: block;
    transition: border-color 0.2s ease;
}

.ponente-event-card:hover {
    border-color: #37bad9;
}

.ponente-event-card__img {
    height: 120px;
    background: repeating-linear-gradient(45deg, #e9edec 0 12px, #f4f6f6 12px 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', monospace;
    font-size: 11px;
    color: #9aa3a1;
}

.ponente-event-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ponente-event-card__body {
    padding: 18px 20px;
}

.ponente-event-card__tag {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #008a9c;
}

.ponente-event-card__title {
    margin: 7px 0 0;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3;
}

.ponente-event-card__role {
    margin-top: 6px;
    font-size: 13px;
    color: #707b7b;
}


.ponente-resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 991px) {
    .ponente-resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ponente-resources-grid {
        grid-template-columns: 1fr;
    }
}

.ponente-resource-card {
    border: 1px solid #e6e9e9;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: border-color 0.2s ease;
}

.ponente-resource-card:hover {
    border-color: #37bad9;
}

.ponente-resource-card__video {
    position: relative;
    aspect-ratio: 16/9;
    background: repeating-linear-gradient(45deg, #e9edec 0 12px, #f4f6f6 12px 24px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ponente-resource-card__video-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #008a9c;
    color: #008a9c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
}

.ponente-resource-card__doc {
    aspect-ratio: 16/9;
    background: #16201f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ponente-resource-card__doc-icon {
    width: 44px;
    height: 56px;
    border-radius: 5px;
    background: #0c1413;
    color: #37bad9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
}

.ponente-resource-card__body {
    padding: 16px 18px;
}

.ponente-resource-card__kind {
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: .5px;
    color: #008a9c;
}

.ponente-resource-card__title {
    margin: 7px 0 0;
    font-weight: 700;
    font-size: 15.5px;
    line-height: 1.3;
}

.ponente-resource-card__meta {
    margin-top: 6px;
    font-size: 12.5px;
    color: #707b7b;
}