/* =========================================================
   SHORTCODE GERAL DE PALESTRAS
   Layout inspirado na página do expositor
========================================================= */

.edx-talks-schedule-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.edx-talks-day-header {
    margin: 34px 0 18px;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
}

.edx-talks-schedule-wrapper > .edx-talks-day-header:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.edx-talks-day-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    color: #111827;
    font-weight: 700;
    text-align: center;
}

.edx-talks-day-divider {
    margin-top: 4px;
}

/* Card */
.edx-talk-card--schedule {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 22px;
    padding: 22px 0;
    border-top: 1px solid #ececec;
    background: transparent;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
}

.edx-talk-card--schedule:first-of-type {
    border-top: 0;
}

/* Coluna da logo */
.edx-talk-card__logo-col {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.edx-talk-card__logo-image {
    max-width: 140px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.edx-talk-card__logo-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    background: #f3f4f6;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

/* Coluna do conteúdo */
.edx-talk-card__content-col {
    min-width: 0;
}

.edx-talk-card__headline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.edx-talk-card__time-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f5f5f5;
    color: #444;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.edx-talk-card__sep {
    color: #c4c7cc;
    font-weight: 500;
}

.edx-talk-card__title-inline {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #111827;
    flex: 1 1 320px;
    min-width: 220px;
}

.edx-talk-card__track-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

/* Nome do expositor */
.edx-talk-card__exhibitor-name {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.4;
    color: #111827;
    font-weight: 600;
}

/* Meta */
.edx-talk-card__meta {
    display: grid;
    gap: 6px;
    font-size: 15px;
    line-height: 1.55;
    color: #4b5563;
}

.edx-talk-card__speaker-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.edx-talk-card__speaker-text {
    min-width: 0;
}

.edx-talk-card__location-row {
    min-width: 0;
}

/* LinkedIn mono */
.edx-talk-card__linkedin {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dcdcdc;
    border-radius: 999px;
    background: #ffffff;
    color: #444;
    text-decoration: none;
    transition: all 0.2s ease;
}

.edx-talk-card__linkedin:hover {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}

/* Resumo */
.edx-talk-card__summary-box {
    margin-top: 12px;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    background: #f9fafb;
    border-radius: 10px;
}

.edx-talk-card__summary-box p {
    margin: 8px 0 0;
}

.edx-talk-card__summary-box p:first-of-type {
    margin-top: 6px;
}

.edx-talk-card__summary-box p:last-child {
    margin-bottom: 0;
}

/* Vazio */
.edx-talks-empty {
    padding: 18px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    color: #374151;
}

/* Responsivo */
@media (max-width: 900px) {
    .edx-talk-card--schedule {
        grid-template-columns: 130px 1fr;
        gap: 18px;
    }

    .edx-talk-card__logo-image {
        max-width: 110px;
        max-height: 74px;
    }

    .edx-talk-card__title-inline {
        font-size: 17px;
    }
}

@media (max-width: 640px) {
    .edx-talks-day-title {
        font-size: 22px;
    }

    .edx-talk-card--schedule {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px 0;
    }

    .edx-talk-card__logo-col {
        justify-content: flex-start;
    }

    .edx-talk-card__headline {
        gap: 6px;
    }

    .edx-talk-card__time-badge {
        font-size: 13px;
        padding: 5px 9px;
    }

    .edx-talk-card__sep {
        display: none;
    }

    .edx-talk-card__title-inline {
        flex-basis: 100%;
        min-width: 100%;
        font-size: 17px;
    }

    .edx-talk-card__exhibitor-name {
        font-size: 15px;
    }

    .edx-talk-card__meta {
        font-size: 14px;
    }

    .edx-talk-card__summary-box {
        font-size: 14px;
        line-height: 1.65;
    }
}
/* =========================================================
   SHORTCODE GERAL DE PALESTRAS - ESTILO AGENDA
========================================================= */

.edx-talks-schedule-modern {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
}

/* Card do dia */
.edx-talks-modern__day-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.edx-talks-modern__day-body {
    display: flex;
    flex-direction: column;
}

.edx-talks-modern__day-header {
    padding: 0 0 1px;
}

.edx-talks-modern__day-body {
    border-top: 1px solid #e5e7eb;
    padding-top: 1px;
    padding-bottom: 1px;
    
}

/* Cabeçalho da data */
.edx-talks-modern__day-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.edx-talks-modern__day-title {
    width: 100%;
    display: block;
    padding: 18px 24px;
    text-align: center;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    background: var(--edx-secondary-color, #666666);
}

/* Linha da palestra */
.edx-talk-modern {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: stretch;
    border-top: 1px solid #e8e8e8;
    background: #ffffff;
}

.edx-talks-modern__day-body .edx-talk-modern:first-child {
    border-top: 0;
}

/* Coluna do horário */
.edx-talk-modern__time-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px 24px;
    background: var(--edx-secondary-color, #666666);
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.edx-talk-modern__time {
    display: block;
    text-align: center;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

/* Coluna de conteúdo */
.edx-talk-modern__content-col {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 22px;
    align-items: center;
    padding: 26px 24px;
    background: #ffffff;
}

/* Logo */
.edx-talk-modern__logo-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.edx-talk-modern__logo-image {
    max-width: 150px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.edx-talk-modern__logo-placeholder {
    width: 88px;
    height: 88px;
    border-radius: 14px;
    background: #f3f4f6;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

/* Info */
.edx-talk-modern__info-col {
    min-width: 0;
}

.edx-talk-modern__title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin-bottom: 8px;
}

.edx-talk-modern__title {
    margin: 0;
    font-size: 22px;
    line-height: 1.3;
    color: #2f3140;
    font-weight: 700;
}

.edx-talk-modern__track-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

/* Expositor */
.edx-talk-modern__exhibitor {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    text-transform: uppercase;
}

.edx-talk-modern__exhibitor-link {
    color: #4a4d5f;
    text-decoration: none;
}

.edx-talk-modern__exhibitor-link:hover {
    text-decoration: underline;
}

/* Meta */
.edx-talk-modern__meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.edx-talk-modern__meta-text {
    font-size: 15px;
    line-height: 1.55;
    color: #4a4d5f;
}

/* LinkedIn mono */
.edx-talk-modern__linkedin {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4d4d8;
    border-radius: 999px;
    background: #ffffff;
    color: #444;
    text-decoration: none;
    transition: all 0.2s ease;
}

.edx-talk-modern__linkedin:hover {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}

/* Resumo */
.edx-talk-modern__summary {
    margin-top: 10px;
    padding: 12px 14px;
    background: #f7f7f8;
    border-radius: 10px;
    color: #4a4d5f;
    font-size: 14px;
    line-height: 1.7;
}

.edx-talk-modern__summary p {
    margin: 8px 0 0;
}

.edx-talk-modern__summary p:first-of-type {
    margin-top: 6px;
}

.edx-talk-modern__summary p:last-child {
    margin-bottom: 0;
}

.edx-talks-empty {
    padding: 18px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    color: #374151;
}

/* Responsivo */
@media (max-width: 1100px) {
    .edx-talk-modern {
        grid-template-columns: 220px 1fr;
    }

    .edx-talk-modern__content-col {
        grid-template-columns: 140px 1fr;
    }

    .edx-talk-modern__time {
        font-size: 20px;
    }

    .edx-talk-modern__title {
        font-size: 20px;
    }
}

@media (max-width: 800px) {
    .edx-talk-modern {
        grid-template-columns: 1fr;
    }

    .edx-talk-modern__time-col {
        justify-content: flex-start;
        padding: 16px 18px;
    }

    .edx-talk-modern__time {
        text-align: left;
        font-size: 20px;
    }

    .edx-talk-modern__content-col {
        grid-template-columns: 1fr;
        padding: 18px;
        gap: 16px;
    }

    .edx-talk-modern__logo-col {
        justify-content: flex-start;
    }

    .edx-talk-modern__logo-image {
        max-width: 130px;
        max-height: 60px;
    }

    .edx-talks-modern__day-title {
        font-size: 20px;
        padding: 16px 18px;
    }
}

@media (max-width: 560px) {
    .edx-talk-modern__title {
        font-size: 18px;
    }

    .edx-talk-modern__time {
        font-size: 18px;
    }

    .edx-talk-modern__meta-text,
    .edx-talk-modern__exhibitor {
        font-size: 14px;
    }

    .edx-talk-modern__summary {
        font-size: 13px;
    }

    .edx-talks-modern__day-title {
        font-size: 18px;
    }
}