/**
 * Telenovisa News Manager - Estilos Principales
 * Diseño moderno tipo CNN/BBC/Listín Diario
 * Mobile First - Responsive
 */

/* ========================================
   VARIABLES CSS
   ======================================== */
:root {
    --tv43-primary: #e60000;
    --tv43-secondary: #0072c6;
    --tv43-background: #f5f5f5;
    --tv43-text: #1a1a1a;
    --tv43-text-light: #666666;
    --tv43-white: #ffffff;
    --tv43-border: #e0e0e0;
    --tv43-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --tv43-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --tv43-radius: 10px;
    --tv43-transition: all 0.3s ease;
    --tv43-font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --tv43-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ========================================
   RESET Y BASE
   ======================================== */
.tv43-destacadas,
.tv43-categoria,
.tv43-ticker-wrapper,
.tv43-en-vivo,
.tv43-trending,
.tv43-relacionadas {
    font-family: var(--tv43-font-body);
    line-height: 1.6;
    color: var(--tv43-text);
    box-sizing: border-box;
}

.tv43-destacadas *,
.tv43-categoria *,
.tv43-ticker-wrapper *,
.tv43-en-vivo *,
.tv43-trending *,
.tv43-relacionadas * {
    box-sizing: border-box;
}

.tv43-destacadas a,
.tv43-categoria a,
.tv43-ticker-wrapper a,
.tv43-en-vivo a,
.tv43-trending a,
.tv43-relacionadas a {
    text-decoration: none;
    color: inherit;
}

.tv43-destacadas img,
.tv43-categoria img,
.tv43-trending img,
.tv43-relacionadas img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   UTILIDADES
   ======================================== */
.tv43-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--tv43-white);
    margin-bottom: 8px;
}

.tv43-breaking-badge {
    display: inline-block;
    background: var(--tv43-primary);
    color: var(--tv43-white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    animation: tv43-pulse 1.5s infinite;
}

@keyframes tv43-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.tv43-lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tv43-lazy.loaded {
    opacity: 1;
}

.tv43-no-posts {
    padding: 20px;
    text-align: center;
    color: var(--tv43-text-light);
    background: var(--tv43-background);
    border-radius: var(--tv43-radius);
}

.tv43-error {
    padding: 15px 20px;
    background: #fee;
    color: #c33;
    border-radius: var(--tv43-radius);
    border-left: 4px solid #c33;
}

/* ========================================
   NOTICIAS DESTACADAS
   ======================================== */
.tv43-destacadas {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

/* Noticia Principal */
.tv43-destacada-principal {
    background: var(--tv43-white);
    border-radius: var(--tv43-radius);
    overflow: hidden;
    box-shadow: var(--tv43-shadow);
    transition: var(--tv43-transition);
}

.tv43-destacada-principal:hover {
    box-shadow: var(--tv43-shadow-hover);
    transform: translateY(-2px);
}

.tv43-destacada-link {
    display: block;
}

.tv43-destacada-imagen {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.tv43-destacada-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tv43-destacada-principal:hover .tv43-destacada-imagen img {
    transform: scale(1.05);
}

.tv43-destacada-content {
    padding: 20px;
}

.tv43-destacada-titulo {
    font-family: var(--tv43-font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px 0;
    color: var(--tv43-text);
}

.tv43-destacada-excerpt {
    font-size: 15px;
    color: var(--tv43-text-light);
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.tv43-destacada-meta {
    font-size: 13px;
    color: var(--tv43-text-light);
}

.tv43-destacada-meta time {
    font-weight: 500;
}

/* Noticias Secundarias */
.tv43-destacadas-secundarias {
    display: grid;
    gap: 15px;
}

.tv43-destacada-secundaria {
    background: var(--tv43-white);
    border-radius: var(--tv43-radius);
    overflow: hidden;
    box-shadow: var(--tv43-shadow);
    transition: var(--tv43-transition);
}

.tv43-destacada-secundaria:hover {
    box-shadow: var(--tv43-shadow-hover);
    transform: translateY(-2px);
}

.tv43-secundaria-link {
    display: flex;
    gap: 15px;
    padding: 12px;
}

.tv43-secundaria-imagen {
    flex-shrink: 0;
    width: 100px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
}

.tv43-secundaria-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tv43-destacada-secundaria:hover .tv43-secundaria-imagen img {
    transform: scale(1.1);
}

.tv43-secundaria-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tv43-secundaria-titulo {
    font-family: var(--tv43-font-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px 0;
    color: var(--tv43-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tv43-secundaria-meta {
    font-size: 12px;
    color: var(--tv43-text-light);
}

/* Desktop: Layout de 2 columnas */
@media (min-width: 768px) {
    .tv43-destacadas {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .tv43-destacada-principal {
        grid-row: span 4;
    }

    .tv43-destacada-principal .tv43-destacada-imagen {
        aspect-ratio: 4 / 3;
    }

    .tv43-destacada-titulo {
        font-size: 26px;
    }

    .tv43-destacadas-secundarias {
        gap: 12px;
    }

    .tv43-secundaria-imagen {
        width: 120px;
        height: 85px;
    }

    .tv43-secundaria-titulo {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .tv43-destacada-titulo {
        font-size: 30px;
    }

    .tv43-destacada-excerpt {
        font-size: 16px;
    }
}

/* ========================================
   CATEGORÍA GRID
   ======================================== */
.tv43-categoria {
    margin-bottom: 40px;
}

.tv43-categoria-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--tv43-primary);
}

.tv43-categoria-titulo {
    font-family: var(--tv43-font-heading);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tv43-categoria-titulo a {
    color: var(--tv43-text);
    transition: color 0.3s ease;
}

.tv43-categoria-titulo a:hover {
    color: var(--tv43-primary);
}

.tv43-ver-mas {
    font-size: 14px;
    font-weight: 600;
    color: var(--tv43-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.tv43-ver-mas:hover {
    color: var(--tv43-primary);
}

.tv43-ver-mas span {
    transition: transform 0.3s ease;
}

.tv43-ver-mas:hover span {
    transform: translateX(4px);
}

.tv43-categoria-grid {
    display: grid;
    gap: 20px;
}

.tv43-categoria-card {
    background: var(--tv43-white);
    border-radius: var(--tv43-radius);
    overflow: hidden;
    box-shadow: var(--tv43-shadow);
    transition: var(--tv43-transition);
}

.tv43-categoria-card:hover {
    box-shadow: var(--tv43-shadow-hover);
    transform: translateY(-4px);
}

.tv43-card-link {
    display: block;
}

.tv43-card-imagen {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.tv43-card-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tv43-categoria-card:hover .tv43-card-imagen img {
    transform: scale(1.08);
}

.tv43-breaking-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--tv43-primary);
    color: var(--tv43-white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    animation: tv43-pulse 1.5s infinite;
}

.tv43-card-content {
    padding: 18px;
}

.tv43-card-titulo {
    font-family: var(--tv43-font-heading);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px 0;
    color: var(--tv43-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tv43-card-excerpt {
    font-size: 14px;
    color: var(--tv43-text-light);
    margin: 0 0 12px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tv43-card-meta {
    font-size: 12px;
    color: var(--tv43-text-light);
}

/* Grid responsive */
@media (min-width: 640px) {
    .tv43-categoria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .tv43-cols-2 .tv43-categoria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tv43-cols-3 .tv43-categoria-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tv43-cols-4 .tv43-categoria-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .tv43-cols-4 .tv43-categoria-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .tv43-categoria-titulo {
        font-size: 24px;
    }

    .tv43-card-titulo {
        font-size: 18px;
    }
}

/* ========================================
   TICKER DE NOTICIAS
   ======================================== */
.tv43-ticker-wrapper {
    display: flex;
    background: var(--tv43-white);
    border-radius: var(--tv43-radius);
    overflow: hidden;
    box-shadow: var(--tv43-shadow);
    margin-bottom: 30px;
    height: 50px;
}

.tv43-ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    color: var(--tv43-white);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    white-space: nowrap;
}

.tv43-ticker-icon {
    font-size: 16px;
}

.tv43-ticker-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
}

.tv43-ticker-content {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: tv43-ticker-scroll 30s linear infinite;
}

.tv43-ticker-wrapper:hover .tv43-ticker-content {
    animation-play-state: paused;
}

@keyframes tv43-ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tv43-ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--tv43-text);
    transition: color 0.3s ease;
}

.tv43-ticker-item:hover {
    color: var(--tv43-primary);
}

.tv43-ticker-separator {
    color: var(--tv43-border);
    font-size: 20px;
    line-height: 1;
}

/* Touch devices - enable swipe */
@media (hover: none) {
    .tv43-ticker-content {
        animation: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .tv43-ticker-content::-webkit-scrollbar {
        display: none;
    }

    .tv43-ticker-item {
        scroll-snap-align: start;
    }
}

/* ========================================
   EN VIVO
   ======================================== */
.tv43-en-vivo {
    background: var(--tv43-white);
    border-radius: var(--tv43-radius);
    overflow: hidden;
    box-shadow: var(--tv43-shadow);
    margin-bottom: 30px;
}

.tv43-en-vivo-header {
    padding: 20px;
    border-bottom: 1px solid var(--tv43-border);
}

.tv43-live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.tv43-live-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: tv43-live-pulse 1s infinite;
}

@keyframes tv43-live-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.tv43-live-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--tv43-primary);
    letter-spacing: 1px;
}

.tv43-en-vivo-titulo {
    font-family: var(--tv43-font-heading);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--tv43-text);
}

.tv43-en-vivo-video {
    background: #000;
}

.tv43-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.tv43-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.tv43-en-vivo-descripcion {
    padding: 20px;
    border-bottom: 1px solid var(--tv43-border);
}

.tv43-en-vivo-descripcion p {
    margin: 0;
    font-size: 15px;
    color: var(--tv43-text-light);
    line-height: 1.6;
}

.tv43-en-vivo-cta {
    padding: 20px;
}

.tv43-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--tv43-white);
    transition: var(--tv43-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tv43-cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .tv43-en-vivo-titulo {
        font-size: 28px;
    }

    .tv43-cta-button {
        padding: 16px 40px;
        font-size: 16px;
    }
}

/* ========================================
   TRENDING
   ======================================== */
.tv43-trending {
    margin-bottom: 30px;
}

.tv43-trending-header {
    margin-bottom: 20px;
}

.tv43-trending-titulo {
    font-family: var(--tv43-font-heading);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tv43-trending-icon {
    font-size: 24px;
}

/* Trending Grid */
.tv43-trending-grid .tv43-trending-content {
    display: grid;
    gap: 20px;
}

.tv43-trending-grid .tv43-trending-item {
    background: var(--tv43-white);
    border-radius: var(--tv43-radius);
    overflow: hidden;
    box-shadow: var(--tv43-shadow);
    transition: var(--tv43-transition);
}

.tv43-trending-grid .tv43-trending-item:hover {
    box-shadow: var(--tv43-shadow-hover);
    transform: translateY(-4px);
}

.tv43-trending-grid .tv43-trending-link {
    display: block;
}

.tv43-trending-grid .tv43-trending-imagen {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.tv43-trending-grid .tv43-trending-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tv43-trending-grid .tv43-trending-item:hover .tv43-trending-imagen img {
    transform: scale(1.08);
}

.tv43-trending-grid .tv43-trending-info {
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tv43-trending-numero {
    font-size: 28px;
    font-weight: 800;
    color: var(--tv43-primary);
    line-height: 1;
    flex-shrink: 0;
}

.tv43-trending-item-titulo {
    font-family: var(--tv43-font-heading);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: var(--tv43-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Trending List */
.tv43-trending-list .tv43-trending-content {
    background: var(--tv43-white);
    border-radius: var(--tv43-radius);
    overflow: hidden;
    box-shadow: var(--tv43-shadow);
}

.tv43-trending-list .tv43-trending-item {
    border-bottom: 1px solid var(--tv43-border);
    transition: background 0.3s ease;
}

.tv43-trending-list .tv43-trending-item:last-child {
    border-bottom: none;
}

.tv43-trending-list .tv43-trending-item:hover {
    background: var(--tv43-background);
}

.tv43-trending-list .tv43-trending-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
}

.tv43-trending-list .tv43-trending-numero {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.tv43-trending-list .tv43-trending-item-titulo {
    -webkit-line-clamp: 1;
}

@media (min-width: 640px) {
    .tv43-trending-grid .tv43-trending-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tv43-trending-grid .tv43-trending-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .tv43-trending-titulo {
        font-size: 24px;
    }
}

/* ========================================
   NOTICIAS RELACIONADAS
   ======================================== */
.tv43-relacionadas {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--tv43-border);
}

.tv43-relacionadas-titulo {
    font-family: var(--tv43-font-heading);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--tv43-text);
}

.tv43-relacionadas-grid {
    display: grid;
    gap: 20px;
}

.tv43-relacionada-card {
    background: var(--tv43-white);
    border-radius: var(--tv43-radius);
    overflow: hidden;
    box-shadow: var(--tv43-shadow);
    transition: var(--tv43-transition);
}

.tv43-relacionada-card:hover {
    box-shadow: var(--tv43-shadow-hover);
    transform: translateY(-4px);
}

.tv43-relacionada-link {
    display: block;
}

.tv43-relacionada-imagen {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.tv43-relacionada-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tv43-relacionada-card:hover .tv43-relacionada-imagen img {
    transform: scale(1.08);
}

.tv43-relacionada-titulo {
    font-family: var(--tv43-font-heading);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    padding: 15px;
    color: var(--tv43-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 640px) {
    .tv43-relacionadas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .tv43-relacionadas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   ANIMACIONES
   ======================================== */
@keyframes tv43-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tv43-destacada-principal,
.tv43-destacada-secundaria,
.tv43-categoria-card,
.tv43-trending-item,
.tv43-relacionada-card {
    animation: tv43-fade-in 0.5s ease forwards;
}

/* Stagger animation */
.tv43-destacada-secundaria:nth-child(1) { animation-delay: 0.1s; }
.tv43-destacada-secundaria:nth-child(2) { animation-delay: 0.2s; }
.tv43-destacada-secundaria:nth-child(3) { animation-delay: 0.3s; }
.tv43-destacada-secundaria:nth-child(4) { animation-delay: 0.4s; }

.tv43-categoria-card:nth-child(1) { animation-delay: 0.1s; }
.tv43-categoria-card:nth-child(2) { animation-delay: 0.2s; }
.tv43-categoria-card:nth-child(3) { animation-delay: 0.3s; }
.tv43-categoria-card:nth-child(4) { animation-delay: 0.4s; }
.tv43-categoria-card:nth-child(5) { animation-delay: 0.5s; }
.tv43-categoria-card:nth-child(6) { animation-delay: 0.6s; }

/* ========================================
   BOTÓN LEER MÁS
   ======================================== */
.tv43-leer-mas {
    display: block;
    padding: 12px 18px;
    background: var(--tv43-background);
    color: var(--tv43-primary);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: var(--tv43-transition);
    border-top: 1px solid var(--tv43-border);
}

.tv43-leer-mas:hover {
    background: var(--tv43-primary);
    color: var(--tv43-white);
}

/* ========================================
   PUBLICIDAD / CONTACTO
   ======================================== */
.tv43-publicidad {
    background: var(--tv43-white);
    border-radius: var(--tv43-radius);
    overflow: hidden;
    box-shadow: var(--tv43-shadow);
    margin-bottom: 30px;
    border: 2px solid var(--tv43-primary);
}

.tv43-publicidad-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--tv43-white);
}

.tv43-publicidad-icon {
    font-size: 24px;
}

.tv43-publicidad-titulo {
    font-family: var(--tv43-font-heading);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tv43-publicidad-content {
    padding: 20px;
}

.tv43-publicidad-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.tv43-publicidad-item:last-child {
    margin-bottom: 0;
}

.tv43-publicidad-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--tv43-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tv43-publicidad-valor {
    font-size: 15px;
    color: var(--tv43-text);
    line-height: 1.5;
}

.tv43-publicidad-valor a {
    color: var(--tv43-secondary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.tv43-publicidad-valor a:hover {
    color: var(--tv43-primary);
}

@media (min-width: 640px) {
    .tv43-publicidad-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }

    .tv43-publicidad-label {
        min-width: 100px;
        flex-shrink: 0;
    }
}
