/* World Cup 2026 - single match template */

.wc2026-page {
    --wc2026-red: #e11d2a;
    --wc2026-dark: #1c1f26;
    --wc2026-muted: #6b7280;
    --wc2026-border: #ececec;
    color: #1c1f26;
    width: 100%;
    padding-bottom: 4rem;
}

.wc2026-wrap {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.wc2026-wrap--full { grid-template-columns: 1fr; }

.container {
    max-width: 1080px !important;
    ;
}

.wc2026-content { min-width: 0; }

/* ---------- Breadcrumb ---------- */
.wc2026-breadcrumb {
    font-size: 13px;
    color: var(--wc2026-muted);
    margin-bottom: 16px;
}
.wc2026-breadcrumb a { color: var(--wc2026-muted); text-decoration: none; }
.wc2026-breadcrumb a:hover { color: var(--wc2026-red); }
.wc2026-breadcrumb .sep { margin: 0 7px; opacity: .6; }
.wc2026-breadcrumb .current { color: #111; font-weight: 500; }

/* ---------- Hero (imagem de fundo + área de texto branca esmaecendo) ---------- */
.wc2026-hero {
    position: relative;
    background: #fff;
    color: #1c1f26;
    margin-bottom: 16px;
    min-height: calc(100vh - 83px);
    display: flex;
    align-items: center;
}

.wc2026-hero__container {
    position: relative;
    z-index: 2;
}

/* Imagem como fundo do hero, atrás de todo o conteúdo */
.wc2026-hero__media {
    max-width: 900px;
    margin-left: auto !important;
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: 0;
    background: #c3c3c3
}
.wc2026-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Véu branco sobre a imagem: sólido à esquerda, esmaece revelando a foto à direita */
.wc2026-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:linear-gradient(90deg,
        #fff 0%,
        #fff 38%,
        rgba(255, 255, 255, .85) 49%,
        rgba(255, 255, 255, 0) 63%);
    pointer-events: none;
}

.wc2026-hero__text {
    position: relative;
    z-index: 2;
    max-width: 56%;
    margin-bottom: 3rem;
}
.wc2026-hero.no-image .wc2026-hero__text { max-width: 100%; }

/* Card "Calendário da Copa" sobre a imagem, no canto superior direito */
.wc2026-hero__calendar {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    width: 240px;
    background: linear-gradient(160deg, #2a2350 0%, #1b1c3a 100%);
    color: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 14px 32px rgba(0,0,0,.32);
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}


.wc2026-calendar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 22px;
    border-radius: 12px;
    background: rgba(255,255,255,.12);
    margin-bottom: 14px;
}
.wc2026-calendar__title { font-size: 17px; font-weight: 600; margin: 0 0 8px; color: #fff; }
.wc2026-calendar__text { font-size: 13px; line-height: 1.45; color: #c7c9e0; margin: 0 0 16px; }
.wc2026-calendar__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--wc2026-red);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 10px;
    transition: background .15s ease;
    width: 100%;
    
}
.wc2026-calendar__btn:hover { background: #c4131f; color: #fff; }
.wc2026-calendar__btn .dashicons { font-size: 17px; width: 17px; height: 17px; margin-left: auto; }

.wc2026-badge {
    display: inline-block;
    background: var(--wc2026-red);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .5px;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.wc2026-hero__title {
    font-size: 52px;
    line-height: 1.1;
    margin: 0 0 14px;
    font-weight: 600;
    color: #111;
}
.wc2026-hero__excerpt {
    color: #374151;
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 32px;
    max-width: 420px;
}
.wc2026-hero__meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
    color: var(--wc2026-muted);
    font-size: 13px;
}
.wc2026-hero__meta li { display: flex; align-items: center; gap: 6px; }
.wc2026-hero__meta .dashicons { color: var(--wc2026-red); font-size: 17px; width: 17px; height: 17px; }

/* ---------- Scoreboard ---------- */
.wc2026-scoreboard {
    background: var(--wc2026-dark);
    color: #fff;
    border-radius: 16px;
    padding: 22px 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    position: relative;
    margin-top: -110px;
    z-index: 2;
}
.wc2026-scoreboard__match {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}
.wc2026-team {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .5px;
}
.wc2026-team--right { justify-content: flex-end; }
.wc2026-team__flag { width: 48px; height: 48px; border-radius: 50%; }
.wc2026-vs {
    font-size: 46px;
    font-weight: 700;
    opacity: .9;
}
.wc2026-scoreboard__time {
    display: flex;
    justify-content: center;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 16px;
    padding-top: 14px;
    font-size: 13px;
    color: #cbd5e1;
}
.wc2026-scoreboard__time span { display: inline-flex; align-items: center; gap: 6px; }
.wc2026-scoreboard__time .dashicons { font-size: 16px; width: 16px; height: 16px; }

/* ---------- CTA "Ver opções para assistir" ---------- */
.wc2026-watch {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    padding: 20px 24px;
    background: #fff;
   border: 1px solid var(--wc2026-border);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
}
.wc2026-watch__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-size: 26px;
    border-radius: 50%;
    background: #fdecec;
    color: var(--wc2026-red);
}
.wc2026-watch__body { flex: 1; min-width: 0; }
.wc2026-watch__title {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #111;
    margin-bottom: 4px;
}
.wc2026-watch__text {
    display: block;
    font-size: 14px;
    line-height: 1.45;
    color: var(--wc2026-muted);
}
.wc2026-watch__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--wc2026-red);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 11px 18px;
    border-radius: 10px;
    transition: background .15s ease;
    white-space: nowrap;
}
.wc2026-watch:hover .wc2026-watch__btn { background: #c4131f; }
.wc2026-watch__btn .dashicons { font-size: 17px; width: 17px; height: 17px; }

/* ---------- Mini-cards (atalhos) ---------- */
.wc2026-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 16px;
}
.wc2026-feature {
    display: block;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--wc2026-border);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.wc2026-feature:hover {
    border-color: #f3d3d6;
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.wc2026-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 20px;
    border-radius: 10px;
    background: #fdecec;
    color: var(--wc2026-red);
    margin-bottom: 10px;
}
.wc2026-feature__title { display: block; font-size: 14px; font-weight: 600; color: #111; margin-bottom: 3px; }
.wc2026-feature__text { display: block; font-size: 12px; line-height: 1.35; color: var(--wc2026-muted); }

/* ---------- Sections ---------- */
.wc2026-section { margin-top: 32px; }
.wc2026-section__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 6px;
}
.wc2026-section__title .dashicons { color: var(--wc2026-red); }
.wc2026-section__sub { margin: 0 0 16px; color: var(--wc2026-muted); font-size: 14px; }

/* Conteúdo livre do post (editor clássico) */
.wc2026-content {
    display: grid;
    grid-template-columns: 1fr 268px;
    gap: 2rem;
}

.wc2026-content-body {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}
.wc2026-content-body > *:first-child { margin-top: 0; }
.wc2026-content-body > *:last-child { margin-bottom: 0; }
.wc2026-content-body p { margin: 0 0 16px; }
.wc2026-content-body h2 { font-size: 24px; font-weight: 600; margin: 28px 0 12px; color: #111; }
.wc2026-content-body h3 { font-size: 20px; font-weight: 600; margin: 24px 0 10px; color: #111; }
.wc2026-content-body h4 { font-size: 17px; font-weight: 600; margin: 20px 0 8px; color: #111; }
.wc2026-content-body ul, .wc2026-content-body ol { margin: 0 0 16px; padding-left: 22px; }
.wc2026-content-body li { margin: 6px 0; }
.wc2026-content-body a { color: var(--wc2026-red); text-decoration: underline; }
.wc2026-content-body img { max-width: 100%; height: auto; border-radius: 12px; }
.wc2026-content-body blockquote {
    margin: 18px 0;
    padding: 12px 18px;
    border-left: 4px solid var(--wc2026-red);
    background: #fdecec;
    border-radius: 8px;
}
.wc2026-content-body blockquote p:last-child { margin-bottom: 0; }

/* Prévia */
.wc2026-previa {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.wc2026-previa__card {
    border-radius: 14px;
    padding: 20px;
    background: #fdecec;
}
.wc2026-previa__card--2 { background: #eef0fb; }
.wc2026-previa__card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    font-size: 19px;
}
.wc2026-previa__card h3 img { width: 30px; height: 30px; border-radius: 50%; }
.wc2026-previa__card ul { list-style: none; margin: 0; padding: 0; }
.wc2026-previa__card li {
    position: relative;
    padding: 7px 0 7px;
    font-size: 15px;
    margin-bottom: 0;
    color: #374151;
}


/* Cards "Mais da Copa" */
.wc2026-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.wc2026-card { text-decoration: none; color: inherit; line-height: 1.1; }
.wc2026-card__thumb {
    display: block;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f1f1;
    margin-bottom: 8px;
}
.wc2026-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wc2026-card__title { font-size: 14px; font-weight: 600; line-height: 1.; }

/* ---------- Sidebar ---------- */
.wc2026-sidebar__box {
    position: sticky;
    top: 80px;   
    display: flex; 
    flex-direction: column; 
    gap: 22px;
}
.wc2026-widget {
    border: 1px solid var(--wc2026-border);
    border-radius: 14px;
    padding: 18px;
    background: #fff;
}
.wc2026-widget__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 14px;
}
.wc2026-widget__title .dashicons { color: var(--wc2026-red); }
.wc2026-widget__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--wc2026-red);
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
}
.wc2026-widget__more:hover { color: #c4131f; }
.wc2026-widget__more .dashicons { font-size: 16px; width: 16px; height: 16px; }

/* Mais lidas */
.wc2026-read { list-style: none; margin: 0; padding: 0; }
.wc2026-read__item + .wc2026-read__item { border-top: 1px solid var(--wc2026-border); }
.wc2026-read__item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    color: inherit;
}
.wc2026-read__thumb {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wc2026-read__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.wc2026-read__info { min-width: 0; }
.wc2026-read__title {
    display: block;
    font-size: 14px;
    font-weight: 5  00;
    line-height: 1.3;
    color: #111;
}
.wc2026-read__time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 5px;
    font-size: 12px;
    color: var(--wc2026-red);
}
.wc2026-read__time .dashicons { font-size: 14px; width: 14px; height: 14px; }

/* Próximos jogos */
.wc2026-next { list-style: none; margin: 0; padding: 0; }
.wc2026-next__item + .wc2026-next__item { border-top: 1px solid var(--wc2026-border); }
.wc2026-next__item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    color: inherit;
}
.wc2026-next__info { flex: 1; min-width: 0; }
.wc2026-next__teams { display: block; font-weight: 700; font-size: 14px; }
.wc2026-next__time { display: block; font-size: 12px; color: var(--wc2026-muted); }
.wc2026-next__arrow { color: var(--wc2026-muted); }

/* ---------- Bandeiras sobrepostas ---------- */
.wc2026-flags-overlap {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}
.wc2026-flags-overlap .wc2026-flag {
    width: var(--wc2026-flag-size, 40px);
    height: var(--wc2026-flag-size, 40px);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,.06);
    background: #fff;
    display: block;
}
.wc2026-flags-overlap .wc2026-flag--2 {
    margin-left: calc(var(--wc2026-flag-size, 40px) * -0.4);
}

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
    .wc2026-wrap { grid-template-columns: 1fr; }
    .wc2026-cards { grid-template-columns: repeat(2, 1fr); }
    .wc2026-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
    .wc2026-hero {
        display: block;
        min-height: 0;
    }
    /* Faixa inferior reservada para a imagem aparecer embaixo */
    .wc2026-hero { padding-bottom: 140px; }
    /* Esmaece de cima (branco) para baixo, revelando a foto na parte de baixo */
    .wc2026-hero::before {
        background: linear-gradient(0deg,
            rgba(255, 255, 255, 0) 0,
            rgba(255, 255, 255, 0) 29%,
            #fff 56%,
            #fff 100%);
    }
    .wc2026-hero__text {
        max-width: 100%;
        padding: 28px 0 0;
        margin-bottom: 2rem;
    }
    .wc2026-hero__calendar {
        position: relative;
        top: auto;
        right: auto;
        z-index: 2;
        width: auto;
        margin: 16px 0 0;
    }
    .wc2026-watch { flex-wrap: wrap; }
    .wc2026-watch__btn { width: 100%; justify-content: center; }
    .wc2026-content {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .wc2026-hero__title { font-size: 28px; }
    .wc2026-previa { grid-template-columns: 1fr; }
    .wc2026-cards { grid-template-columns: 1fr; }
    .wc2026-features { grid-template-columns: 1fr; }
    .wc2026-team { font-size: 16px; }
    .wc2026-team__flag { width: 38px; height: 38px; }
    .wc2026-scoreboard__time { flex-direction: column; gap: 8px; align-items: center; }
    .wc2026-watch__icon, .wc2026-calendar__icon { display: none; }
    .wc2026-hero__media { max-width: none; margin: 0;margin-top: auto;max-height: 372px; }
}

@media (max-width: 350px) {
    .wc2026-scoreboard {
        padding: 22px;
    }
}