.emeron-yt {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 10px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.emeron-yt__cab {
    margin-bottom: 24px;
}

.emeron-yt__cab h2 {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 700;
    color: #13385D;
}

.emeron-yt__cab h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.emeron-yt__cab h2 a:hover {
    color: #2E76AA;
    text-decoration: underline;
}

.emeron-yt__linha {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #2E76AA 0%, #cfd8e3 100%);
    border-radius: 2px;
}

.emeron-yt__card {
    display: flex;
    background: #16181c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
    border: 1px solid #2E76AA;
}

/* ---------- Vídeo principal (abre no YouTube) ---------- */

.emeron-yt__principal {
    flex: 0 0 65%;
    max-width: 65%;
    display: flex;
    flex-direction: column;
}

.emeron-yt__principal-thumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #13385D;
    border: 2px solid #2E76AA;
    border-radius: 6px 6px 0 0;
    box-sizing: border-box;
    padding: 14px 0;
}

.emeron-yt__principal-thumb-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.emeron-yt__principal-thumb-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.emeron-yt__principal:hover .emeron-yt__principal-thumb img {
    transform: scale(1.03);
}

.emeron-yt__play-grande {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.85);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.emeron-yt__assistir-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    background: rgba(19, 56, 93, 0.9);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.15s ease;
}

.emeron-yt__assistir-badge:hover {
    background: rgba(46, 118, 170, 0.95);
}

.emeron-yt__principal-titulo {
    display: block;
    padding: 18px 22px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
}

/* ---------- Lista lateral ---------- */

.emeron-yt__lista {
    flex: 0 0 35%;
    max-width: 35%;
    display: flex;
    flex-direction: column;
    max-height: 640px;
    overflow-y: auto;
}

.emeron-yt__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 20px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.15s ease;
}

.emeron-yt__item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.emeron-yt__thumb {
    position: relative;
    flex: 0 0 120px;
    width: 120px;
    height: 68px;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
}

.emeron-yt__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.emeron-yt__play {
    position: absolute;
    left: 6px;
    bottom: 6px;
    color: #fff;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 3px;
    padding: 1px 5px;
}

.emeron-yt__item-titulo {
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
    flex: 1 1 auto;
}

/* ---------- Responsivo ---------- */

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

    .emeron-yt__principal,
    .emeron-yt__lista {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .emeron-yt__lista {
        max-height: none;
    }
}

@media (max-width: 480px) {
    .emeron-yt__cab h2 {
        font-size: 22px;
    }

    .emeron-yt__item {
        padding: 12px 14px;
    }

    .emeron-yt__thumb {
        flex-basis: 96px;
        width: 96px;
        height: 54px;
    }
}
