/*
Theme Name: MeuVasco
Theme URI: https://www.meuvasco.com.br
Author: Rafael / MeuVasco
Author URI: https://www.meuvasco.com.br
Description: Tema leve e personalizado do MeuVasco, inspirado no layout atual do site.
Version: 24.4
Text Domain: meuvasco-2025*/

:root {
    --mv-red: #cc0000;
    --mv-dark: #000000;
    --mv-bg: #f4f4f4;
    --mv-radius-card: 10px;
    --mv-radius-img: 6px;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--mv-bg);
    color: #111;
    font-size: 15px;
    line-height: 1.6;
}

/* Layout base */

.mv-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 15px 40px;
    display: flex;
    gap: 24px;
}

.mv-content {
    flex: 1 1 auto;
    width: calc(100% - 270px);
}

.mv-sidebar {
    width: 250px;
    flex: 0 0 250px;
}

/* Header */

.mv-header {
    background: var(--mv-dark);
    color: #fff;
}

.mv-header-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 10px 26px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.mv-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-logo img {
    max-height: 40px;
    width: auto;
}

/* Esconde a descrição longa do site que quebrava o layout */
.mv-site-title {
    display: none;
}

/* Desktop nav */

.mv-main-nav {
    margin-left: auto;
    flex: 1;
}

.mv-main-nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 22px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.mv-main-nav li {
    position: relative;
}

.mv-main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    padding-bottom: 6px;
}

.mv-main-nav a:hover {
    color: #ffffff;
}

.mv-main-nav li::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: transparent;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.mv-main-nav li:hover::after,
.mv-main-nav .current-menu-item::after,
.mv-main-nav .current_page_item::after {
    background: var(--mv-red);
}

/* Botão hamburger (mobile) */

.mv-menu-toggle-checkbox {
    display: none;
}

.mv-menu-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 6px 10px;
}

/* Footer */

.mv-footer {
    background: #111;
    color: #ccc;
    margin-top: 40px;
}

.mv-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    font-size: 0.85rem;
}

/* Hero da home */

.mv-hero {
    margin-bottom: 18px;
}

.mv-hero-grid {
    display: grid;
    grid-template-columns: 2.1fr 1.3fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
}

.mv-hero-main {
    grid-row: 1 / 3;
    position: relative;
    background: #000;
    color: #fff;
    border-radius: var(--mv-radius-card);
    overflow: hidden;
    min-height: 420px;
}

.mv-hero-main-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mv-hero-main-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 26px 26px 22px;
    background: linear-gradient(to top, rgba(0,0,0,0.92), rgba(0,0,0,0.3), transparent);
}

.mv-hero-main-title {
    font-size: 2.3rem;
    line-height: 1.22;
    margin: 0 0 8px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

.mv-hero-main-meta {
    font-size: 0.85rem;
    opacity: 0.92;
}

.mv-hero-main a {
    color: #fff;
    text-decoration: none;
}

.mv-hero-side {
    position: relative;
    border-radius: var(--mv-radius-card);
    overflow: hidden;
    background: #000;
    color: #fff;
    min-height: 200px;
}

.mv-hero-side-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mv-hero-side-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 16px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2), transparent);
}

.mv-hero-side-title {
    font-size: 1.15rem;
    margin: 0 0 4px;
    font-weight: 700;
}

.mv-hero-side-meta {
    font-size: 0.8rem;
    opacity: 0.9;
}

.mv-hero-side a {
    color: #fff;
    text-decoration: none;
}

/* Wrapper de lista */

.mv-list-wrapper {
    background: #fff;
    padding: 10px 0 10px;
    margin: 0 auto 30px;
    border-radius: var(--mv-radius-card);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.mv-list-header {
    padding: 14px 22px 4px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ícone da Cruz de Malta ao lado do título da seção */
.mv-section-icon {
    display: inline-block;
    font-family: 'meuvasco' !important;
    font-size: 20px;
    line-height: 1;
    color: var(--mv-red);
    margin-right: 8px;
    vertical-align: middle;
}

.mv-section-icon::before,






.mv-list-header h1,
.mv-list-header h2 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
}

.mv-list {
    margin: 0 22px 10px;
}

.mv-list-post {
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    gap: 22px;
    padding: 24px 0;
    border-top: 1px solid #eee;
}

.mv-list-post:first-child {
    border-top: none;
}

.mv-list-thumb img {
    width: 100%;
    height: 100%;
    max-height: 190px;
    object-fit: cover;
    border-radius: var(--mv-radius-img);
}

.mv-list-title {
    font-size: 1.3rem;
    margin: 0 0 6px;
    font-weight: 800;
}

.mv-list-title a {
    text-decoration: none;
    color: #111;
}

.mv-list-title a:hover {
    color: var(--mv-red);
}

.mv-list-excerpt {
    font-size: 0.96rem;
    color: #444;
    margin-bottom: 6px;
}

.mv-list-meta {
    font-size: 0.8rem;
    color: #777;
}

/* Share discreto dentro da lista */
.mv-list-share {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

/* Widgets */

.mv-widget {
    background: #fff;
    padding: 18px 16px;
    margin-bottom: 16px;
    border-radius: var(--mv-radius-card);
    /* sem sombra para ficar mais clean na sidebar */
    box-shadow: none;
    border: 1px solid #eee;
}

.mv-widget-title {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Conteúdo genérico / single */

.mv-post {
    background: #fff;
    padding: 26px 26px;
    margin: 24px auto;
    border-radius: var(--mv-radius-card);
    max-width: 900px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.mv-post h1,
.mv-post h2 {
    margin-top: 0;
}

.mv-post h1 {
    font-size: 2.1rem;
    line-height: 1.35;
    font-weight: 800;
}

.mv-post-meta {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 14px;
}

.mv-post-comments-link {
    color: #666666;
    text-decoration: none;
    font-weight: 500;
}

.mv-post-comments-link:hover {
    text-decoration: underline;
}

/* Área dos botões de compartilhar */
.mv-post-share {
    margin: 10px 0;
    opacity: 0.9;
    transform: scale(0.82);
    text-align: center;
}

/* Links dentro do conteúdo do post */
.mv-post-content a {
    color: var(--mv-red);
    text-decoration: underline;
}

.mv-post-content a:hover {
    color: #ff3333;
}

.mv-post-content a:visited {
    color: var(--mv-red);
}


/* Largura máxima do texto/imagens dentro do post */
.mv-single-main .mv-post-content {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Texto do conteúdo */
.mv-post-content,
.mv-page-content {
    font-size: 1rem;
    line-height: 1.8;
}

/* Limitar largura das imagens dentro do conteúdo */
.mv-post-content img,
.mv-post-content figure img {
    max-width: 640px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Tratar blocos wide/full do Gutenberg para não estourar */
.mv-post-content .alignwide,
.mv-post-content .alignfull,
.mv-post-content img.alignwide,
.mv-post-content img.alignfull,
.mv-post-content figure.alignwide,
.mv-post-content figure.alignfull {
    max-width: 640px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Figure e legenda (caption) das imagens */
.mv-post-content figure {
    margin: 0 0 1.5em;
    text-align: center;
}

.mv-post-content figcaption,
.mv-post-content .wp-caption-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 6px;
    text-align: center;
}

/* Comentários nativos do WP */

.mv-post .comments-area {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.mv-post .comments-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.mv-post .comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mv-post .comment-list > li {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.mv-post .comment-body {
    font-size: 0.95rem;
}

.mv-post .comment-meta {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 6px;
}

.mv-post .comment-author {
    font-weight: 600;
}

.mv-post .comment-content {
    margin-top: 4px;
}

.mv-post .reply {
    margin-top: 4px;
}

.mv-post .reply a {
    font-size: 0.8rem;
    color: var(--mv-red);
}

/* Formulário de comentário */

.mv-post .comment-respond {
    margin-top: 24px;
}

.mv-post .comment-respond h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.mv-post .comment-form p {
    margin-bottom: 10px;
}

.mv-post .comment-form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.mv-post .comment-form input[type="text"],
.mv-post .comment-form input[type="email"],
.mv-post .comment-form input[type="url"],
.mv-post .comment-form textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.mv-post .comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.mv-post .form-submit input[type="submit"] {
    background: var(--mv-red);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.95rem;
    cursor: pointer;
}

.mv-post .form-submit input[type="submit"]:hover {
    background: #111;
}

/* Paginação */

.mv-pagination {
    text-align: center;
    margin-top: 10px;
}

.mv-pagination .page-numbers {
    display: inline-block;
    margin: 0 4px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    color: #333;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.mv-pagination .page-numbers.current {
    background: var(--mv-red);
    color: #fff;
    font-weight: 600;
}

.mv-pagination .page-numbers:hover {
    background: #111;
    color: #fff;
}

/* Responsivo */

@media (max-width: 1200px) {
    .mv-header-inner {
        padding: 10px 18px;
        gap: 20px;
    }

    .mv-main-nav ul {
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    .mv-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 15px 40px;
    display: flex;
    gap: 24px;
}

    .mv-sidebar {
    width: 250px;
    flex: 0 0 250px;
}

    .mv-hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .mv-hero-main {
        grid-row: auto;
        min-height: 340px;
    }

    .mv-list-wrapper {
        margin: 8px auto 24px;
        border-radius: 8px;
    }

    .mv-list {
        margin: 0 16px 10px;
    }
}

@media (max-width: 768px) {
    .mv-header-inner {
        padding: 8px 14px;
    }

    .mv-main-nav {
        width: 100%;
        margin-left: 0;
        margin-top: 4px;
    }

    .mv-menu-toggle {
        display: block;
        margin-left: auto;
    }

    /* Esconde menu por padrão no mobile */
    .mv-main-nav {
        display: none;
    }

    #mv-menu-toggle:checked + label.mv-menu-toggle + nav.mv-main-nav {
        display: block;
    }

    .mv-main-nav ul {
        flex-direction: column;
        gap: 8px;
        padding: 10px 4px 12px;
        background: #000;
        border-top: 1px solid #222;
    }

    .mv-main-nav li {
        padding: 2px 4px;
    }

    .mv-main-nav a {
        font-size: 0.9rem;
    }

    .mv-list-post {
        grid-template-columns: 1fr;
    }

    .mv-post {
        margin: 16px auto;
        padding: 18px 14px;
    }

    .mv-post-share {
        transform: scale(0.9);
    }

    .mv-post-content img,
    .mv-post-content figure img {
        max-width: 100%;
    }
}

@media (max-width: 520px) {
    .mv-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 15px 40px;
    display: flex;
    gap: 24px;
}
}


/* === Ajustes extras de espaço na sidebar (v1.8.4) === */
.mv-sidebar .mv-widget {
    padding: 20px 20px;
}

.mv-sidebar .mv-widget-title {
    margin-bottom: 12px;
}

/* Classificação: linhas mais confortáveis */
.mv-sidebar .mvcs-table th,
.mv-sidebar .mvcs-table td {
    padding: 6px 6px;
    font-size: 13px;
}

/* Próximos jogos: mais espaçamento entre jogos */
.mv-sidebar .mvpj-game {
    padding: 8px 4px;
    border-bottom: 1px solid #f3f3f3;
}

.mv-sidebar .mvpj-game:last-child {
    border-bottom: none;
}

/* Um pouco mais de largura para a coluna da sidebar em telas grandes */
@media (min-width: 1025px) {
    .mv-sidebar {
    width: 250px;
    flex: 0 0 250px;
}
}
/* Ajustes extras de respiro na sidebar (classificação + próximos jogos) */
.mv-sidebar .mv-widget {
    padding: 20px 20px;
}

.mv-sidebar .mvcs-table th,
.mv-sidebar .mvcs-table td {
    padding: 6px 6px;
    font-size: 13px;
}

.mv-sidebar .mvpj-game {
    padding: 8px 4px;
    border-bottom: 1px solid #f3f3f3;
}

.mv-sidebar .mvpj-game:last-child {
    border-bottom: none;
}

.mv-sidebar .mv-widget-title {
    margin-bottom: 12px;
}

/* Força classificação da sidebar a usar toda a largura disponível */
.mv-sidebar .mvcs-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* Garante que a tabela da classificação ocupe todo o espaço */
.mv-sidebar .mvcs-table {
    width: 100%;
}

/* Ajuste de padding nas células para melhor leitura */
.mv-sidebar .mvcs-table th,
.mv-sidebar .mvcs-table td {
    padding-left: 8px;
    padding-right: 8px;
}


/* ---------------------------
 * Ajustes finos – layout mobile
 * --------------------------- */
@media (max-width: 1024px) {
    .mv-container {
        flex-direction: column;
        max-width: 100%;
        padding: 10px 12px 30px;
        gap: 16px;
    }

    .mv-main {
        width: 100%;
    }

    .mv-sidebar {
        width: 100%;
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    /* Hero em coluna no mobile */
    .mv-hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }

    .mv-hero-main,
    .mv-hero-secondary {
        min-height: 200px;
    }

    .mv-hero-main .mv-hero-meta,
    .mv-hero-main .mv-hero-title {
        font-size: 14px;
        padding: 10px 12px;
    }

    .mv-hero-main .mv-hero-title {
        font-size: 18px;
        line-height: 1.3;
    }

    /* Lista de últimas notícias mais compacta */
    .mv-post-list-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 10px 12px;
        gap: 10px;
    }

    .mv-post-thumb {
        width: 36%;
        min-width: 36%;
    }

    .mv-post-thumb img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }

    .mv-post-body {
        width: 64%;
    }

    .mv-post-title {
        font-size: 15px;
        line-height: 1.35;
        margin-bottom: 4px;
    }

    .mv-post-meta {
        font-size: 11px;
        opacity: .8;
    }

    .mv-post-excerpt {
        font-size: 13px;
        line-height: 1.4;
        max-height: 3.2em;
        overflow: hidden;
    }

    /* Sidebar em bloco cheio */
    .mv-sidebar .widget {
        margin-bottom: 14px;
        box-shadow: none;
        border-radius: 10px;
    }

    .mv-sidebar .mvcs-table,
    .mv-sidebar .mvcs-wrapper {
        font-size: 12px;
    }

    .mv-sidebar .mvcs-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Single post */
    .mv-single-wrap {
        max-width: 100%;
        padding: 12px 14px 30px;
    }

    .mv-single-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .mv-single-meta {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .mv-single-share {
        justify-content: flex-start;
        gap: 6px;
        margin-bottom: 14px;
    }

    .mv-single-content {
        font-size: 15px;
        line-height: 1.6;
    }

    .mv-single-content img {
        height: auto;
        max-height: 60vh;
    }
}


/* ---------------------------
 * Ajustes finos – mobile v19.4
 * --------------------------- */
@media (max-width: 768px) {
    /* HERO em coluna e com textos mais confortáveis */
    .mv-hero-grid {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .mv-hero-main,
    .mv-hero-secondary {
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
    }

    .mv-hero-title {
        word-break: normal;
        white-space: normal;
        font-size: 17px;
        line-height: 1.3;
        padding: 8px 12px;
    }

    .mv-hero-meta {
        font-size: 12px;
        padding: 0 12px 10px;
    }

    /* Título da lista de notícias mais compacto */
    .mv-list-header h1 {
        font-size: 19px;
        line-height: 1.25;
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 12px;
    }

    /* Cards da lista de notícias em layout horizontal */
    .mv-post-list-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        padding: 10px;
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    }

    .mv-post-thumb {
        width: 40%;
        flex: 0 0 40%;
    }

    .mv-post-body {
        flex: 1;
        width: 60%;
    }

    .mv-post-title {
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .mv-post-excerpt {
        font-size: 13px;
        line-height: 1.4;
        max-height: 3.2em;
        overflow: hidden;
    }
}


/* ---------------------------
 * Mobile: ocultar sidebar (Classificação / Próximos Jogos)
 * --------------------------- */
@media (max-width: 768px) {
    .mv-sidebar {
        display: none;
    }
}


/* ---------------------------
 * Mobile layout fix – expand content when sidebar is hidden (v19.6)
 * --------------------------- */
@media (max-width: 768px) {
    .mv-content,
    .mv-main {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .mv-main {
        display: block;
    }

    .mv-hero-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .mv-hero-grid article {
        width: 100% !important;
    }
}


/* ---------------------------
 * Mobile refinements – hero title & Cruz alignment (v19.7)
 * --------------------------- */
@media (max-width: 768px) {
    /* diminuir título do destaque principal */
    .mv-hero-main-title {
        font-size: 1.7rem !important;
        line-height: 1.25 !important;
    }

    /* alinhamento fino da Cruz de Malta + título da lista */
    .mv-list-header {
        align-items: center;
    }

    .mv-section-icon {
        font-size: 18px;
        margin-right: 6px;
        position: relative;
        top: 1px;
    }

    .mv-list-header h1,
    .mv-list-header h2 {
        font-size: 1.25rem;
    }
}


/* ---------------------------
 * Cruz de Malta – alinhamento absoluto (v19.8)
 * --------------------------- */
.mv-list-header {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.mv-section-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    color: #b40000 !important;
    position: relative !important;
    top: 0 !important;
    margin: 0 !important;
}

.mv-list-header h1,
.mv-list-header h2 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1.3rem !important;
    line-height: 1.3 !important;
}


/* ---------------------------
 * Ajustes v19.9 – share buttons na home e excerpt mais curto
 * --------------------------- */

/* Excerpt mais curto por padrão */
.mv-post-excerpt {
    font-size: 14px;
    line-height: 1.4;
    max-height: 2.8em;
    overflow: hidden;
}

/* No mobile, ainda mais compacto */
@media (max-width: 768px) {
    .mv-post-excerpt {
        font-size: 13px;
        line-height: 1.3;
        max-height: 2.1em;
        overflow: hidden;
    }

    /* Cruz de Malta sobe 5px apenas no mobile */
    .mv-section-icon {
        top: -8px !important;
    }
}

/* Container genérico para botões de compartilhamento na lista */
.mv-share-inline,
.mv-share-buttons {
    margin-top: 4px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .mv-share-inline,
    .mv-share-buttons {
        transform: scale(0.85);
        opacity: 0.85;
        margin-top: 2px;
    }
}


/* Ajuste do título "Últimas notícias do Vasco" no mobile */
@media (max-width: 767px) {
  .mv-section-title {
    position: relative;
    top: -5px;
  }
}

/* Share buttons nativos na homepage */
.mv-list-share {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.mv-share-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
}
.mv-share-whatsapp { background: #25D366; }
.mv-share-x { background: #000; }
.mv-share-facebook { background: #1877F2; }

@media (max-width: 767px) {
  .mv-share-btn {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}


/* Leia mais link na lista */
.mv-readmore {
  font-size: 0.85rem;
  color: #888;
  text-decoration: none;
}
.mv-readmore:hover {
  color: #c8102e;
  text-decoration: underline;
}

/* Ajuste dos ícones SVG de share */
.mv-share-icon {
  width: 14px;
  height: 14px;
}
@media (max-width: 767px) {
  .mv-share-icon {
    width: 12px;
    height: 12px;
  }
}


/* Logo do MeuVasco no cabeçalho */
.mv-logo img {
  display: block;
  height: auto;
  width: 180px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .mv-logo img {
    width: 140px;
  }
}


/* Navegação principal - layout desktop */
.mv-main-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mv-main-nav li {
  margin: 0;
}

.mv-main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 0;
}

.mv-main-nav a:hover {
  color: #f5f5f5;
}

/* Toggle do menu (hamburger) - escondido no desktop */
.mv-menu-toggle {
  display: none;
}

/* Mobile header & menu */
@media (max-width: 900px) {
  .mv-header-inner {
    padding: 10px 16px;
  }

  .mv-main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--mv-dark);
    padding: 10px 18px 14px;
    display: none;
    z-index: 20;
  }

  .mv-main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .mv-menu-toggle {
    display: block;
    margin-left: auto;
  }

  #mv-menu-toggle:checked + label.mv-menu-toggle + nav.mv-main-nav {
    display: block;
  }
}


/* Ajustes finos header/menu + logo maior no mobile */

/* Mobile/Tablet menu colapsado */
@media (max-width: 992px) {
  .mv-header {
    position: relative;
  }

  .mv-header-inner {
    align-items: center;
  }

  .mv-main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--mv-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 18px 14px;
    display: none;
    z-index: 50;
  }

  .mv-main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .mv-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 4px 8px;
    margin-left: auto;
    color: #fff;
  }

  .mv-menu-toggle-checkbox:checked ~ .mv-main-nav {
    display: block;
  }
}

/* Logo um pouco maior no mobile */
@media (max-width: 768px) {
  .mv-logo img {
    width: 160px;
  }
}


/* === MV SEO home (card estilo JNews) v20.28 === */
.mv-seo-home{
  margin:48px auto 32px;
  max-width:1060px;
  background:#f9fafb;
  border-radius:24px;
  padding:32px 40px 30px;
  color:#111;
  font-size:17px;
  line-height:1.75;
  text-align:center;
  box-shadow:0 16px 40px rgba(15,23,42,0.08);
}
.mv-seo-home h2{
  font-size:clamp(2.0rem,2.6vw,2.4rem);
  margin:0 0 18px;
  font-weight:700;
}
.mv-seo-home h3{
  font-size:1.2rem;
  margin:28px 0 10px;
  font-weight:700;
}
.mv-seo-home p{
  margin:0 auto 10px;
  max-width:780px;
}
.mv-seo-home .mv-seo-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  list-style:none;
  padding:0;
  margin:24px 0 0;
}
.mv-seo-home .mv-seo-links a{
  background:#eef1f5;
  border-radius:999px;
  padding:8px 16px;
  text-decoration:none;
  color:#111;
  font-weight:600;
  transition:background .18s ease, transform .18s ease;
}
.mv-seo-home .mv-seo-links a:hover{
  background:#e1e4ea;
  transform:translateY(-1px);
}
@media (max-width:768px){
  .mv-seo-home{
    margin:32px 16px 24px;
    padding:24px 18px 20px;
    font-size:16px;
    text-align:left;
  }
  .mv-seo-home h2{
    font-size:1.5rem;
    margin-bottom:14px;
    text-align:left;
  }
  .mv-seo-home h3{
    font-size:1.1rem;
    margin-top:20px;
  }
  .mv-seo-home p{
    max-width:none;
  }
  .mv-seo-home .mv-seo-links{
    justify-content:flex-start;
  }
}




/* === Lightbox para imagens dentro de posts (single) v20.31 === */
.mv-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.mv-lightbox.is-open {
    display: flex;
}
.mv-lightbox-img {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,.6);
    opacity: 0;
    transform: scale(.96);
    transition: opacity .25s ease, transform .25s ease;
}
.mv-lightbox.is-open .mv-lightbox-img {
    opacity: 1;
    transform: scale(1);
}
.mv-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: rgba(0,0,0,.6);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.mv-lightbox-close:hover {
    background: rgba(0,0,0,.9);
}

.mv-lightbox-prev,
.mv-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mv-lightbox-prev {
    left: 24px;
}
.mv-lightbox-next {
    right: 24px;
}
.mv-lightbox-prev:hover,
.mv-lightbox-next:hover {
    background: rgba(0,0,0,.85);
}

/* Cursor “zoom” nas imagens clicáveis dentro de posts */
a.mv-lightbox-trigger img {
    cursor: zoom-in;
}



/* === Imagens em destaque dentro de posts (single) === */
/* Desktop: imagem mais larga que o texto, estilo revista / Medium */
.single-post .mv-post-content img:not(.emoji):not(.wp-smiley):not(.avatar) {
    display: block;
    width: calc(100% + 80px);
    max-width: none;
    height: auto;
    margin: 32px -40px;
    border-radius: 18px;
}

/* Mobile: volta para largura do conteúdo, sem bleed lateral */
@media (max-width: 768px) {
    .single-post .mv-post-content img:not(.emoji):not(.wp-smiley):not(.avatar) {
        width: 100%;
        max-width: 100%;
        margin: 24px 0;
        border-radius: 12px;
    }
}


/* v20.34-stable - escondendo setas do lightbox (se existirem) */
.mv-lightbox-prev,
.mv-lightbox-next {
    display: none !important;
}


/* v20.35 - navegação do lightbox reativada */
.mv-lightbox-prev,
.mv-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: rgba(0,0,0,.6);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.mv-lightbox-prev {
    left: 24px;
}

.mv-lightbox-next {
    right: 24px;
}

.mv-lightbox-prev:hover,
.mv-lightbox-next:hover {
    background: rgba(0,0,0,.9);
}


/* =======================
 * SINGLE POST – REFINOS VISUAIS v20.36
 * ======================= */

.single-post .mv-post {
    margin: 28px auto 56px;
    padding: 0 18px 32px;
}

.single-post .mv-post > h1 {
    font-size: clamp(2.1rem, 3vw, 2.6rem);
    line-height: 1.25;
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.single-post .mv-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 18px;
}

.single-post .mv-post-share {
    margin: 8px 0 24px;
}

.single-post .mv-post-share .mv-share-buttons,
.single-post .mv-post-share .mv-share-inline {
    transform-origin: left center;
}

.single-post .mv-post p {
    font-size: 1.02rem;
    line-height: 1.8;
    margin: 0 0 1rem;
}

.single-post .mv-post h2,
.single-post .mv-post h3 {
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.single-post .mv-post h2 {
    font-size: 1.4rem;
}

.single-post .mv-post h3 {
    font-size: 1.2rem;
}

.single-post .mv-post ul,
.single-post .mv-post ol {
    margin: 0 0 1.2rem 1.4rem;
    padding-left: 0;
}

.single-post .mv-post blockquote {
    margin: 1.6rem 0;
    padding: 0.8rem 1rem;
    border-left: 3px solid #111827;
    background: rgba(17,24,39,0.03);
    font-style: italic;
}

@media (max-width: 768px) {
    .single-post .mv-post {
        margin: 20px 0 40px;
        padding: 0 14px 24px;
    }

    .single-post .mv-post > h1 {
        font-size: 1.6rem;
    }

    .single-post .mv-post-share {
        margin-bottom: 18px;
    }
}


/* =======================
 * SINGLE POST – LAYOUT + SIDEBAR
 * ======================= */

.mv-single-layout {
    max-width: 1120px;
    margin: 40px auto 56px;
    display: grid;
    grid-template-columns: minmax(0, 2.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.mv-single-main .mv-post {
    margin: 0;
    padding: 0 0 32px;
}

.mv-single-sidebar {
    font-size: 0.95rem;
}



/* =======================
 * SIDEBAR SINGLE – REFINOS VISUAIS
 * ======================= */

.mv-sidebar-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 18px 18px 12px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.mv-sidebar-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #111827;
}

.mv-sidebar-item + .mv-sidebar-item {
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    margin-top: 12px;
    padding-top: 12px;
}

.mv-sidebar-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    padding: 10px 14px;
    border-radius: 18px;
    margin: 0 -4px;
    transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.mv-sidebar-thumb {
    flex: 0 0 120px;
    max-width: 120px;
    border-radius: 12px;
    overflow: hidden;
}

.mv-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.22s ease;
}

.mv-sidebar-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mv-sidebar-cat {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
}

.mv-sidebar-post-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.mv-sidebar-date {
    font-size: 0.78rem;
    color: #9ca3af;
}

.mv-sidebar-link:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.mv-sidebar-link:hover .mv-sidebar-thumb img {
    transform: scale(1.04);
}

.mv-sidebar-link:hover .mv-sidebar-post-title {
    text-decoration: underline;
}

/* =======================
 * SIDEBAR SINGLE – LISTAS COMPACTAS, TAGS E ANÚNCIO
 * ======================= */

/* Espaçamento entre cards da sidebar */
.mv-sidebar-box + .mv-sidebar-box {
    margin-top: 20px;
}

/* Listas compactas: Relacionados e Mais lidas */
.mv-sidebar-list-compact .mv-sidebar-item + .mv-sidebar-item {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    margin-top: 6px;
    padding-top: 6px;
}

.mv-sidebar-list-compact .mv-sidebar-link {
    gap: 4px;
    padding: 6px 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}


/* Widget Meuvascopédia na sidebar */
.mv-sidebar-meuvascopedia-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mv-sidebar-meuvascopedia-link {
  display: block;
  padding: 7px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  background: #f9fafb;
  transition: background-color 0.16s ease, transform 0.12s ease, box-shadow 0.12s ease;
}

.mv-sidebar-meuvascopedia-link:hover {
  background: #f3f4f6;
  box-shadow: 0 6px 16px rgba(15,23,42,0.08);
  transform: translateY(-1px);
}
/* Tags reutilizadas no fim do post e em outros locais */
.mv-sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mv-sidebar-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #111827;
    text-decoration: none;
}

.mv-sidebar-tag:hover {
    background: #e5e7eb;
    color: #000000;
}

/* Placeholder de anúncio */
.mv-sidebar-ad-placeholder {
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
    padding: 16px 8px;
    border: 1px dashed #e5e7eb;
    border-radius: 12px;
}

/* Card de próximos jogos */
.mv-sidebar-nextgame {
    font-size: 0.9rem;
}

/* Tags no fim do post */
.mv-post-tags-wrapper {
    margin: 8px 0 0;
    padding-top: 8px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.mv-post-tags-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    color: #6b7280;
}

.mv-post-tags {
    margin: 0;
}

/* Comentários mais compactos no mobile */
@media (max-width: 768px) {
    .comment-body {
        padding: 10px 12px 12px !important;
    }
    .comment {
        margin-bottom: 18px !important;
    }
}

/* Ajustes do botão de GIF / barra de ferramentas do comentário */
.mv-comment-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.mv-comment-toolbar-hint {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.35;
}

@media (max-width: 768px) {
    .mv-comment-toolbar {
        align-items: flex-start;
    }

    .mv-comment-toolbar-hint {
        flex-basis: 100%;
        margin-top: 4px;
    }
}

/* =======================
 * ÁREA DE COMENTÁRIOS – SINGLE
 * ======================= */

.comments-area {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.comments-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.comment-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.comment {
    margin-bottom: 18px;
}

.comment-body {
    position: relative;
    padding: 14px 16px 14px 16px;
    border-radius: 18px;
    background: #f9fafb;
}

.comment-meta {
    font-size: 0.8rem;
    margin-bottom: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    align-items: center;
    color: #6b7280;
}

.comment-author {
    font-weight: 600;
    color: #111827;
}

.comment-metadata a {
    color: #9ca3af;
}

.comment-content {
    font-size: 0.9rem;
    line-height: 1.5;
}

.comment .reply {
    margin-top: 6px;
}

.comment .reply a {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ef4444;
}

.comment .reply a:hover {
    text-decoration: underline;
}

/* Resposta (nível filho) com indentação suave */
.children {
    list-style: none;
    margin: 10px 0 0 24px;
    padding: 0;
}

/* Formulário de comentário */
.comment-respond {
    margin-top: 28px;
    padding: 20px 18px 22px;
    border-radius: 22px;
    background: #f9fafb;
}

.comment-reply-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.comment-respond p {
    margin-bottom: 10px;
}

.comment-respond label {
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 8px 10px;
    font-size: 0.9rem;
}

.comment-respond textarea {
    min-height: 160px;
    resize: vertical;
}

.comment-respond .form-submit {
    margin-top: 14px;
}

/* não mexe no estilo do botão, só garante alinhamento */
.comment-respond .form-submit input[type="submit"] {
    display: inline-block;
}
/* Caixa principal da sidebar */
.mv-sidebar-box {
    background: #f9fafb;
    border-radius: 22px;
    padding: 18px 18px 10px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.mv-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #111827;
}

.mv-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mv-sidebar-item + .mv-sidebar-item {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    margin-top: 10px;
    padding-top: 10px;
}

.mv-sidebar-link {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.mv-sidebar-thumb {
    flex: 0 0 72px;
    max-width: 72px;
    border-radius: 12px;
    overflow: hidden;
}

.mv-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mv-sidebar-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mv-sidebar-cat {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

.mv-sidebar-post-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.mv-sidebar-date {
    font-size: 0.78rem;
    color: #9ca3af;
}

.mv-sidebar-link:hover .mv-sidebar-post-title {
    text-decoration: underline;
}

/* Responsivo: sidebar abaixo do conteúdo no mobile */
@media (max-width: 1024px) {
    .mv-single-layout {
        display: block;
        margin: 24px auto 40px;
    }

    .mv-single-main .mv-post {
        padding-bottom: 24px;
    }

    .mv-single-sidebar {
        margin-top: 28px;
    }
}

/* Single post layout: ocupar toda a largura quando não houver sidebar global */
.single .mv-content {
    width: 100%;
}


/* Overrides finais single/sidebar */


/* =======================
 * SIDEBAR SINGLE – REFINOS VISUAIS
 * ======================= */

.mv-sidebar-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 18px 18px 12px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.mv-sidebar-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #111827;
}

.mv-sidebar-item + .mv-sidebar-item {
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    margin-top: 12px;
    padding-top: 12px;
}

.mv-sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    padding: 4px 4px;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.mv-sidebar-thumb {
    flex: 0 0 120px;
    max-width: 120px;
    border-radius: 12px;
    overflow: hidden;
}

.mv-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.22s ease;
}

.mv-sidebar-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mv-sidebar-cat {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
}

.mv-sidebar-post-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.mv-sidebar-date {
    font-size: 0.78rem;
    color: #9ca3af;
}

.mv-sidebar-link:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.mv-sidebar-link:hover .mv-sidebar-thumb img {
    transform: scale(1.04);
}

.mv-sidebar-link:hover .mv-sidebar-post-title {
    text-decoration: underline;
}

/* =======================
 * ÁREA DE COMENTÁRIOS – SINGLE
 * ======================= */

.comments-area {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.comments-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.comment-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.comment {
    margin-bottom: 18px;
}

.comment-body {
    position: relative;
    padding: 14px 16px 14px 16px;
    border-radius: 18px;
    background: #f9fafb;
}

.comment-meta {
    font-size: 0.8rem;
    margin-bottom: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    align-items: center;
    color: #6b7280;
}

.comment-author {
    font-weight: 600;
    color: #111827;
}

.comment-metadata a {
    color: #9ca3af;
}

.comment-content {
    font-size: 0.9rem;
    line-height: 1.5;
}

.comment .reply {
    margin-top: 6px;
}

.comment .reply a {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ef4444;
}

.comment .reply a:hover {
    text-decoration: underline;
}

/* Resposta (nível filho) com indentação suave */
.children {
    list-style: none;
    margin: 10px 0 0 24px;
    padding: 0;
}

/* Formulário de comentário */
.comment-respond {
    margin-top: 28px;
    padding: 20px 18px 22px;
    border-radius: 22px;
    background: #f9fafb;
}

.comment-reply-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.comment-respond p {
    margin-bottom: 10px;
}

.comment-respond label {
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 8px 10px;
    font-size: 0.9rem;
}

.comment-respond textarea {
    min-height: 160px;
    resize: vertical;
}

.comment-respond .form-submit {
    margin-top: 14px;
}

/* não mexe no estilo do botão, só garante alinhamento */
.comment-respond .form-submit input[type="submit"] {
    display: inline-block;
}



/* Overrides finais single/sidebar */
.mv-sidebar-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.mv-sidebar-thumb {
    width: 100%;
    max-width: 100%;
    height: 170px;
    border-radius: 16px;
    overflow: hidden;
}

.mv-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mv-sidebar-post-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .single .mv-post-content img {
        max-width: 680px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}



/* === Single post layout refinements v20.46 === */

/* Limit content width when sidebar is present */
.single .mv-main-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
    gap: 40px;
    align-items: flex-start;
}

/* Card for the article content */
.single .mv-single-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    padding: 40px 60px 50px;
}

@media (max-width: 768px) {
    .single .mv-single-card {
        padding: 24px 16px 26px;
    }
}

/* Título da single */
.single .mv-single-title {
    font-size: clamp(32px, 2.6vw, 40px);
    line-height: 1.15;
}

/* Comentários dentro do card branco */
.single .mv-single-card .comments-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

/* Ajuste geral do bloco de comentários para acompanhar a largura do texto */
.single .comments-area {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* Sidebar de notícias – layout em coluna (thumb em cima, texto embaixo) */
.mv-single-sidebar .mv-sidebar-post {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mv-single-sidebar .mv-sidebar-post-thumb {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.mv-single-sidebar .mv-sidebar-post-thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mv-single-sidebar .mv-sidebar-post-meta {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
}

.mv-single-sidebar .mv-sidebar-post-title {
    font-size: 14px;
    line-height: 1.35;
}

/* Responsivo – abaixo de 1024px some a sidebar e tudo vira 1 coluna */
@media (max-width: 1024px) {
    .single .mv-main-with-sidebar {
        display: block;
    }

    .single .mv-single-card {
        padding: 26px 18px 36px;
    }

    .single .mv-single-title {
        font-size: 26px;
    }
}



/* === Wrapper da single para centralizar e dar respiro === */
.mv-single-wrapper {
    padding: 16px 8px 26px;
}

.single .mv-single-wrapper {
    padding-top: 16px;
}

@media (max-width: 768px) {
    .mv-single-wrapper {
        padding: 10px 4px 20px;
    }
}

/* Garante que o grid principal da single respeite o limite de largura */
.single .mv-main-with-sidebar {
    max-width: 1120px;
    margin: 0 auto;
}


/* === Comentários mais atraentes + integração GIPHY === */

.mv-comments-area {
    margin-top: 40px;
}

.mv-comments-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.mv-comment-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.mv-comment-list .comment {
    margin-bottom: 24px;
}

.mv-comment-list .comment-body {
    background: #fafafa;
    border-radius: 18px;
    padding: 14px 18px 16px;
}

.mv-comment-list .comment-author {
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.mv-comment-list .comment-author .avatar {
    border-radius: 50%;
    margin-right: 10px;
}

.mv-comment-list .comment-metadata {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 6px;
}

.mv-comment-list .reply {
    margin-top: 8px;
}

.mv-comment-list .comment-reply-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #e20813;
}

.mv-comment-list .comment-reply-link:hover {
    text-decoration: underline;
}

/* Card do formulário de comentário */
.mv-comment-form-card {
    margin-top: 32px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.mv-comment-form-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.mv-comment-form p {
    margin-bottom: 14px;
}

.mv-comment-form input[type="text"],
.mv-comment-form input[type="email"],
.mv-comment-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #e2e2e2;
    padding: 10px 12px;
    font-size: 0.95rem;
}

.mv-comment-form textarea {
    min-height: 170px;
}

.mv-comment-submit {
    background: #e20813;
    border-radius: 999px;
    padding: 10px 26px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.mv-comment-submit:hover {
    filter: brightness(0.96);
}

/* Barra com botão de GIF */
.mv-comment-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.mv-gif-button {
    border-radius: 999px;
    border: none;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    background: #111827;
    color: #ffffff;
}

.mv-gif-button:hover {
    filter: brightness(1.05);
}

.mv-comment-toolbar-hint {
    font-size: 0.8rem;
    color: #777;
}

/* Modal de GIFs */

.mv-gif-modal[hidden] {
    display: none;
}

.mv-gif-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.mv-gif-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.mv-gif-modal-inner {
    position: relative;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 18px 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.mv-gif-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.mv-gif-modal-header h3 {
    font-size: 1rem;
    font-weight: 700;
}

.mv-gif-modal-close {
    border: none;
    background: transparent;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
}

.mv-gif-search-row {
    margin-bottom: 10px;
}

.mv-gif-search-input {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #e5e5e5;
    padding: 8px 12px;
    font-size: 0.9rem;
}

.mv-gif-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
    max-height: 360px;
    overflow-y: auto;
    margin-top: 6px;
}

.mv-gif-item {
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}

.mv-gif-item img {
    display: block;
    width: 100%;
    height: auto;
}

.mv-gif-empty-hint {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #777;
}

/* Evita scroll de fundo quando o modal estiver aberto */
body.mv-gif-modal-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .mv-gif-modal-inner {
        margin: 40px 16px;
    }
}


/* GIFs dentro dos comentários */
.mv-comment-list .comment-body .comment-content img {
    max-width: 260px;
    height: auto;
    display: block;
    border-radius: 18px;
    margin: 16px auto 6px;
}

/* Garante que nada estoure fora do card do comentário */
.mv-comment-list .comment-body {
    overflow: hidden;
}

/* Link de responder mais elegante */
.mv-comment-list .reply {
    margin-top: 8px;
}

.mv-comment-list .reply a {
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
    color: #e30613;
}

.mv-comment-list .reply a:hover {
    text-decoration: underline;
}

/* Hierarquia para respostas encadeadas */
.mv-comment-list .children {
    margin-left: 40px;
    margin-top: 18px;
    border-left: 2px solid #f1f1f1;
    padding-left: 18px;
}

/* Modal de GIF um pouco mais compacto em desktop */
@media (min-width: 1024px) {
    .mv-gif-modal-inner {
        max-width: 640px;
    }
}


/* Espaçamento extra entre comentário principal e respostas */
.mv-comment-list .comment {
    margin-bottom: 28px;
}

.mv-comment-list .children {
    margin-left: 40px;
    margin-top: 20px;
    border-left: 2px solid #f1f1f1;
    padding-left: 18px;
}


/* Espaçamento final entre comentário principal e respostas */
.mv-comment-list > .comment {
    margin-bottom: 32px;
}

.mv-comment-list .children {
    margin-top: 22px;
}


/* === Overrides finais para comentários + GIFs (v20.57) === */

/* Força tamanho máximo dos GIFs dentro do comentário */
.mv-comment-list .comment-body .comment-content img {
    max-width: 300px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    margin: 16px auto !important;
    border-radius: 18px !important;
}

/* Espaçamento claro entre comentário principal e respostas */
.mv-comment-list > .comment {
    margin-bottom: 40px !important;
}

/* Espaço entre o comentário principal e o bloco de respostas */
.mv-comment-list .children {
    margin-top: 28px !important;
    padding-left: 22px;
    border-left: 2px solid #eeeeee;
}


/* === Refinos finais comentários v20.58 === */

/* Hierarquia de autor + data */
.mv-comment-author-name {
    font-weight: 600;
    color: #111111;
}

.mv-comment-date {
    color: #555555;
    font-size: 0.92rem;
}

/* Hover mais suave no link de responder */
.mv-comment-list .reply a {
    color: #c40000;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.mv-comment-list .reply a:hover {
    color: #9c0000;
}

/* Destaque sutil nos GIFs */
.mv-comment-list .comment-body .comment-content img {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}


/* === Bloco de login social nos comentários (Nextend placeholder) === */
.mv-social-login-box {
    margin-bottom: 20px;
    padding: 16px 0 6px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.mv-social-login-title {
    font-size: 0.98rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: #111827;
}

.mv-social-login-placeholder {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.mv-social-login-btn {
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: default;
    opacity: 0.65;
}

.mv-social-login-btn-google {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.mv-social-login-btn-facebook {
    background: #1d4ed8;
    color: #ffffff;
}

.mv-social-login-note {
    font-size: 0.86rem;
    color: #6b7280;
    margin: 0;
}


/* Preview de GIF abaixo do campo de texto */
.mv-gif-preview {
    margin-top: 6px;
    margin-bottom: 10px;
    min-height: 0;
}

.mv-gif-preview img {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 8px auto 0;
    border-radius: 18px;
}



/* GIF Preview + remove button */
.mv-gif-preview {
    margin-top: 6px;
    margin-bottom: 10px;
    text-align: center;
}

.mv-gif-preview-wrap {
    position: relative;
    display: inline-block;
}

.mv-gif-preview img {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 8px auto 0;
    border-radius: 18px;
}

.mv-gif-remove {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.mv-gif-remove:hover {
    background: rgba(185, 28, 28, 0.95);
}


/* === Botão GIF bolha MeuVasco (ícone SVG) === */
.mv-gif-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.35);
    margin-right: 10px;
    transition:
        transform 0.16s ease-out,
        box-shadow 0.16s ease-out,
        filter 0.16s ease-out;
}

.mv-gif-button .mv-gif-icon {
    width: 40px;
    height: 40px;
    display: block;
}

/* Hover/focus – efeito bolha flutuando */
.mv-gif-button:hover,
.mv-gif-button:focus-visible {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.45);
    filter: brightness(1.04);
    outline: none;
}

/* Clique – leve afundada */
.mv-gif-button:active {
    transform: translateY(1px) scale(0.96);
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.35);
}

/* Alinhar o texto "Use um GIF..." com o centro da bolha */
.mv-gif-button + span {
    display: inline-flex;
    align-items: center;
    height: 46px;
}

/* Mobile */
@media (max-width: 640px) {
    .mv-gif-button {
        width: 40px;
        height: 40px;
        box-shadow: 0 8px 14px rgba(15, 23, 42, 0.35);
    }
    .mv-gif-button .mv-gif-icon {
        width: 36px;
        height: 36px;
    }
}


/* ===== Ajuste fino do botão GIF (v20.67) ===== */

/* Toolbar inteira (botão + texto) */
.mv-comment-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

/* Botão GIF em formato de bolha */
.mv-gif-button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1120;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.25);
    border: none;
    cursor: pointer;
    margin-right: 4px;
    transition:
        transform 0.16s ease-out,
        box-shadow 0.16s ease-out,
        filter 0.16s ease-out;
}

/* Ícone SVG dentro do botão */
.mv-gif-button img.mv-gif-icon {
    width: 28px;
    height: 28px;
    display: block;
    object-fit: contain;
}

/* Hover/Focus */
.mv-gif-button:hover,
.mv-gif-button:focus-visible {
    transform: scale(1.05) translateY(-1px);
    box-shadow: 0 7px 18px rgba(15, 23, 42, 0.35);
    filter: brightness(1.04);
    outline: none;
}

/* Clique */
.mv-gif-button:active {
    transform: scale(0.96) translateY(1px);
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.35);
}

/* Texto ao lado do botão */
.mv-comment-toolbar-hint {
    font-size: 14px;
    color: #6b7280;
    display: inline-block;
}

/* Garante alinhamento mesmo sem a classe acima */
.mv-gif-button + span {
    display: inline-flex;
    align-items: center;
    height: 44px;
}

/* Mobile: deixa um pouco menor */
@media (max-width: 640px) {
    .mv-gif-button {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .mv-gif-button img.mv-gif-icon {
        width: 26px;
        height: 26px;
    }
}


/* v20.68 - Premium GIF button alignment */
.mv-comment-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-comment-toolbar-hint {
    line-height: 44px;
    display: inline-block;
    color: #6b7280;
}

/* Premium slight-up alignment */
.mv-gif-button {
    margin-top: -2px;
}


/* v20.69 - ajuste de legibilidade do ícone GIF */
.mv-gif-button img.mv-gif-icon {
    width: 30px;
    height: 30px;
}


/* v20.70 - GIF icon final alignment & aspect ratio */
.mv-gif-button img.mv-gif-icon {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
}


/* v20.72 - ajustes de single + sidebar */

/* 1) Sidebar "Mais notícias": imagens padronizadas com crop elegante */
.mv-single-sidebar img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

/* Capas da sidebar com crop correto */
.mv-sidebar-thumb {
    height: 170px;
    overflow: hidden;
    border-radius: 18px;
}

.mv-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 2) Evitar "card duplo" dentro do conteúdo da single */
.single-post .mv-post {
    background: transparent;
    box-shadow: none;
    padding: 0;
    max-width: none;
}


/* v20.73 - ajustes extras da sidebar single */
/* esconder label de categoria ("BLOG") abaixo das capas */
.mv-sidebar-cat {
    display: none;
}


/* v20.74 - refinamento da lista de "Mais notícias" na single */
.mv-single-sidebar-list .mv-sidebar-item + .mv-sidebar-item {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    margin-top: 18px;
    padding-top: 18px;
}


@media (max-width: 768px) {
    .mv-share-inline,
    .mv-share-buttons {
        transform: scale(0.70);
        opacity: 0.9;
        margin-top: 0;
    }
}


/* Bloco SEO FAQ - Homepage Últimas Notícias */
.mv-seo-faq {
    text-align: left;
}

.mv-seo-faq-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.mv-seo-faq-intro {
    font-size: 0.96rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 10px;
    max-width: 780px;
}

.mv-seo-faq-grid {
    margin-top: 18px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    overflow: hidden;
}

/* Cada item (linha) do acordeão */
.mv-seo-faq-item {
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.mv-seo-faq-item:last-child {
    border-bottom: none;
}

.mv-seo-faq-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #111827;
}

.mv-seo-faq-summary::-webkit-details-marker {
    display: none;
}

.mv-seo-faq-icon {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

/* Rotaciona o ícone quando está aberto (de “+” para “x”) */
.mv-seo-faq-item[open] .mv-seo-faq-icon {
    transform: rotate(45deg);
}

.mv-seo-faq-body {
    padding: 0 16px 12px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Responsivo */
@media (max-width: 768px) {
    .mv-seo-home.mv-seo-faq {
        margin: 24px auto 32px;
        padding: 22px 16px 22px;
        border-radius: 18px;
    }

    .mv-seo-faq-summary {
        padding: 10px 12px;
        font-size: 0.92rem;
    }

    .mv-seo-faq-body {
        padding: 0 12px 10px;
    }
}

/* === v22 consolidated manual tweaks & pagination/footer styles === */

/* Header logo group tighter (desktop & mobile) */
.mv-logo {
    align-items: center;
    gap: 0;
}

/* List headers with icon + title perfectly aligned */
.mv-list-header {
    padding: 14px 22px 14px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Global pagination styling */
.mv-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0 10px;
}

.mv-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transition: all 0.18s ease-out;
}

.mv-pagination .page-numbers.current {
    background: #e11d2f;
    border-color: #e11d2f;
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(185, 28, 28, 0.35);
}

.mv-pagination .page-numbers:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
}

.mv-pagination .page-numbers.prev,
.mv-pagination .page-numbers.next {
    padding-inline: 18px;
}

/* Footer tweaks: nicer spacing & alignment */
.mv-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mv-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    flex-wrap: wrap;
}

.mv-footer-copy {
    font-size: 13px;
    color: #9ca3af;
}

.mv-footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.mv-footer-links a {
    font-size: 13px;
    color: #e5e7eb;
    text-decoration: none;
}

.mv-footer-links a:hover {
    text-decoration: underline;
}

/* Mobile: stack footer content neatly */
@media (max-width: 768px) {
    .mv-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* v23.3 – Sidebar home: Meuvascopédia sempre primeiro na coluna */
.mv-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mv-sidebar > * {
    margin-bottom: 0 !important;
}

.mv-sidebar .mv-sidebar-box {
    order: -1;
}


/* v23.6 – Refinos de menu mobile, cruz+título, paginação e footer */

/* Cruz + "Últimas notícias do Vasco" – alinhamento e respiro */
.mv-list-header {
    padding: 14px 22px 12px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-list-header h1,
.mv-list-header h2 {
    margin: 0;
    line-height: 1.2;
}

/* Menu mobile: logo à esquerda, hambúrguer à direita, links logo abaixo */
@media (max-width: 768px) {
    .mv-header-inner {
        padding: 8px 14px;
        flex-wrap: wrap;
        align-items: center;
    }

    .mv-logo {
        flex: 0 0 auto;
    }

    .mv-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .mv-main-nav {
        width: 100%;
        margin: 6px 0 0;
        display: none;
    }

    #mv-menu-toggle:checked + label.mv-menu-toggle + nav.mv-main-nav {
        display: block;
    }

    .mv-main-nav ul {
        flex-direction: column;
        gap: 8px;
        padding: 10px 4px 12px;
        background: #000;
        border-top: 1px solid #222;
    }

    .mv-main-nav li {
        padding: 2px 4px;
    }

    .mv-main-nav a {
        font-size: 0.9rem;
    }
}

/* Paginação – pill mais consistente */
.mv-pagination {
    text-align: center;
    margin-top: 16px;
}

.mv-pagination .page-numbers {
    display: inline-block;
    margin: 0 4px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.mv-pagination .page-numbers.current {
    background: #111827;
    color: #fff;
    border-color: #111827;
    font-weight: 700;
}

.mv-pagination .page-numbers:hover {
    background: #111827;
    color: #fff;
}

/* Footer – links em linha, sem bullets */
.mv-footer .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.mv-footer .menu li {
    margin: 0;
    padding: 0;
}

.mv-footer .menu a {
    font-size: 0.85rem;
    color: #e5e7eb;
    text-decoration: none;
}

.mv-footer .menu a:hover {
    text-decoration: underline;
}

/* Mobile: footer empilhado com links abaixo do texto */
@media (max-width: 768px) {
    .mv-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


/* v23.7 – Paginação simplificada (sem pills e sombras) */
.mv-pagination {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.mv-pagination .page-numbers {
    display: inline-block;
    margin: 0 3px;
    padding: 4px 8px;
    border-radius: 4px;
    background: transparent;
    color: #111827;
    border: 1px solid transparent;
    text-decoration: none;
    box-shadow: none;
}

.mv-pagination .page-numbers.current {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
    font-weight: 600;
}

.mv-pagination .page-numbers:hover {
    background: #f3f4f6;
    color: #111827;
    border-color: #d1d5db;
}

/* Deixa os links "Anterior" e "Próximo" mais discretos */
.mv-pagination .page-numbers.prev,
.mv-pagination .page-numbers.next {
    padding-inline: 10px;
    font-weight: 500;
}


/* v23.8 – Paginação minimalista definitiva */
.mv-pagination .page-numbers {
    all: unset !important;
    font-size: 0.95rem !important;
    color: #111 !important;
    display: inline-block !important;
    margin: 0 6px !important;
    cursor: pointer !important;
}

.mv-pagination .page-numbers.current {
    font-weight: 700 !important;
    color: #000 !important;
    text-decoration: underline !important;
}

.mv-pagination .page-numbers:hover {
    text-decoration: underline !important;
}

.mv-pagination .page-numbers.prev,
.mv-pagination .page-numbers.next {
    font-weight: 600 !important;
    margin: 0 10px !important;
}


/* v23.9 – Paginação estilo portal, ultra minimalista */
.mv-pagination {
    text-align: center;
    margin: 32px 0 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.mv-pagination .page-numbers {
    all: unset !important;
    display: inline-block;
    margin: 0 8px;
    color: #111;
    cursor: pointer;
    line-height: 1.4;
}

.mv-pagination .page-numbers:hover {
    text-decoration: underline;
}

.mv-pagination .page-numbers.current {
    font-weight: 700;
    text-decoration: underline;
    color: #000;
}

.mv-pagination .page-numbers.prev,
.mv-pagination .page-numbers.next {
    margin: 0 12px;
    color: #111;
    font-weight: 600;
}


/* v24.0 – Paginação clean mantendo comportamento de link */
.mv-pagination {
    text-align: center;
    margin: 32px 0 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.mv-pagination .page-numbers {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4px 8px !important;
    margin: 0 6px !important;
    font-size: 0.95rem !important;
    color: #111 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    border-radius: 0 !important;
}

.mv-pagination .page-numbers.current {
    font-weight: 700 !important;
    text-decoration: underline !important;
    color: #000 !important;
}

.mv-pagination .page-numbers:hover {
    text-decoration: underline !important;
}

.mv-pagination .page-numbers.prev,
.mv-pagination .page-numbers.next {
    font-weight: 600 !important;
    margin: 0 12px !important;
}


/* v24.1 – Ajustes de páginas especiais full width e títulos das widgets */

/* Páginas estáticas (ex: Classificação, Próximos Jogos, etc.) usam toda a largura útil */
body.page:not(.home) .mv-content {
    width: 100%;
}

/* Opcional: remove qualquer espaço lateral residual quando não há sidebar */
body.page:not(.home) .mv-container {
    gap: 0;
}

/* Títulos padrão das widgets da sidebar */
.mv-sidebar .widget-title,
.mv-sidebar .mv-widget-title,
.mv-sidebar-box > h3 {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 14px;
    padding: 0;
    color: #0f172a;
    text-align: left;
}

/* Esconde spans extras em títulos de widgets criados por plugins */
.mv-sidebar .widget-title span,
.mv-sidebar .mv-widget-title span {
    display: none;
}


/* v24.2 – Títulos de widgets padronizados + páginas especiais full width */

/* Sidebar: todos os títulos (Meuvascopédia, Classificação, Próximos Jogos) */
.mv-sidebar .widget-title,
.mv-sidebar .mv-widget-title,
.mv-sidebar-box > h3,
.mv-sidebar .mv-sidebar-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 14px;
    padding: 0;
    color: #0f172a;
    text-align: left;
}

/* Esconde spans adicionais de alguns plugins */
.mv-sidebar .widget-title span,
.mv-sidebar .mv-widget-title span,
.mv-sidebar .mv-sidebar-title span {
    display: none;
}

/* Páginas especiais (ex: /classificacao-vasco/, /proximos-jogos/) em largura total */
body.page:not(.home) .mv-container {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    gap: 0;
}

body.page:not(.home) .mv-content {
    width: 100%;
}


/* v24.3 – Páginas full width reais + títulos de widgets consistentes */

/* Páginas estáticas (Classificação, Próximos Jogos etc.) usam toda a largura do container */
body.page .mv-post {
    max-width: 100%;
}

/* Sidebar: unificar fonte/estilo de todos os títulos de widgets */
.mv-sidebar .widget-title,
.mv-sidebar .mv-widget-title,
.mv-sidebar .mv-sidebar-title,
.mv-sidebar-box > h3 {
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    color: #0f172a !important;
    text-align: left !important;
}

.mv-sidebar .widget-title span,
.mv-sidebar .mv-widget-title span,
.mv-sidebar .mv-sidebar-title span {
    display: none !important;
}


/* v24.4 – Páginas especiais com largura igual à da homepage */
body.page .mv-container {
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Mantém as páginas usando toda a largura do container (sem limite de 900px) */
body.page .mv-post {
    max-width: 100%;
}
