 /* Contêiner com largura máxima de 1280px */
 .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (max-width: 768px){
  .container {
    padding: 0 10px;
  }
  .grid {
    display: block!important;
  }
}

  /* Grid de 2 colunas */
  .grid {
    display: grid;
    grid-template-columns: 1fr 320px; /* conteúdo + sidebar */
    gap: 24px;
  }

  /* Caixas de exemplo */
  .main {
    background: #e21;
    min-height: 420px;
    color: #fff;
    padding: 20px;
  }

 
 

  /* Responsivo */
  @media (max-width: 900px) {
    .grid {
      grid-template-columns: 1fr;
    }
  }


  /* video youtube */
          .video-container-youtube {
            width: 100%;
            max-width: 600px;
          
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            position: relative;
          
        }

        .youtube-embed {
            width: 100%;
            height: 200px;
            border: none;
        }

        /* Gradiente e texto sobre o vídeo (caso precise usar no futuro) */
        .youtube-overlay-text {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 15px;
            color: white;
            font-weight: bold;
            font-size: 16px;
            z-index: 10;
        }

        .youtube-overlay-text h3 {
            margin: 0 0 5px 0;
            font-size: 18px;
        }

        .youtube-status-bar {
            background-color: var(--color-primary);
            color: white;
            padding: 0 15px;
            height: 50px;
            font-size: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            margin-top: -7px;
        }

        .youtube-status-bar::after {
            content: '';
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            background: url('/img/play.webp') no-repeat center center;
            background-size: contain;
        }


.ultn {
  text-align: center;
  margin-bottom: 25px;
}

@media (max-width: 768px){
  .ultn {margin-top: 25px;}
}

.ultn strong {
  color: var(--color-primary);
}

/* list post */
/* CONTAINER DO POST */

.post-item-int {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .post-item-int {
        flex-wrap: wrap;
    }
}

/* IMAGEM */
.post-thumb {
    position: relative;
    width: 40%;
}

.post-thumb img {
    width: 100%;
    display: block;
}

/* TAG VERMELHA */
.post-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-primary);
    padding: 5px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    text-transform: uppercase;
}

.post-tag:hover {
  background: var(--color-primary-hover);
}

/* CONTEÚDO */
.post-content {
    width: 55%;
}

.post-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}
.post-title a {
		color:#111!important;
	list-style:none;
}

.post-date {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.post-excerpt {
    font-size: 15px;
    margin-bottom: 20px;
    margin-top: 10px;
    color: #444;
}

.post-btn {
    padding: 8px 18px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
}

.post-btn:hover {
    background: #efefef;
}

/* BOTÃO "CARREGAR MAIS" */
/* BOTÃO "CARREGAR MAIS" - seu CSS original, sem alterações */
.load-more {
display: block;
    margin: 20px auto;
    letter-spacing: 1px;
    padding: 10px 25px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    text-align: center;
}

.load-more:hover {
  color: #fff;
  background: var(--color-primary);
}


/* Container para as linhas (opcional, mas recomendado) */
.load-more-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* espaço entre linha e botão */
    margin: 40px 0;
}

/* Linhas laterais */
.load-more-line {
    flex: 1;
    height: 1px;
    background-color: #ccc;
}
/* RESPONSIVO */
@media (max-width: 768px) {
    .post-item {
        flex-direction: column;
        border-bottom: 1px solid #eee;
    }

    .post-thumb,
    .post-content {
        width: 100%;
    }

     .post-content {
         margin-top: -20px; 
    }

    .post-title {
        font-size: 20px;
        margin-top: 10px;
    }
}

/* POLITICA */
    .pol-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      padding-top: 20px;
      margin: 0 auto;
    }

    .pol-card {
      width: 100%;
      border-bottom: 1px solid #ddd;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .pol-img-wrapper {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .pol-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .pol-category {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--color-primary);
      color: white;
      font-size: 12px;
      padding: 4px 8px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .pol-title {
      margin-bottom: 15px;
    }
    
.pol-title a {
	color:#111;
}
    .pol-date {
      font-size: 12px;
      color: #888;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .pol-date::before {
      content: "○";
      font-size: 8px;
    }

    /* Mobile: Cards um abaixo do outro, dentro de cada card: imagem à esquerda, texto à direita */
    @media (max-width: 768px) {
      .pol-card {
        flex-direction: row; /* Card horizontal */
        align-items: flex-start;
        gap: 15px;
        padding-bottom: 15px;
      }

      .pol-img-wrapper {
        width: 30%;
        height: auto;
        min-height: 120px;
      }

      .pol-content {
        width: 70%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }

      .pol-title {
        margin-bottom: 8px;
      }

      .pol-date {
        font-size: 11px;
        margin-top: 5px;
      }
    }

    /* Desktop: Cards em linha (um ao lado do outro), imagem em cima, texto embaixo */
    @media (min-width: 769px) {
      .pol-container {
        flex-direction: row;
        flex-wrap: nowrap;
      }

      .pol-card {
        width: calc(33.333% - 20px); /* 3 cards por linha */
        flex-direction: column;
      }

      .pol-img-wrapper {
        height: 200px;
      }

      .pol-title {
        font-size: 18px;
      }

      .pol-date {
        font-size: 13px;
      }
    }


    /* Esporte */

        .site-title {
      font-size: 32px;
      color: #c00;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .section-title {
      font-size: 20px;
      color: #333;
      margin-bottom: 20px;
      text-align: left;
      padding-left: 10px;
      border-left: 4px solid #c00;
    }

    /* CONTAINER PRINCIPAL */
    .news-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* LAYOUT DE GRID */
    .news-grid {
      display: grid;
      margin-top: 20px;
    }

    /* CARD BASE (ESTILO QUE VOCÊ JÁ TEM) */
    .spo-card {
      position: relative;
      display: block;
      text-decoration: none;
      color: inherit;
      cursor: pointer;
      width: 100%;
      border-radius: 4px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .spo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    .spo-img-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: 4px;
    }

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

    .spo-card:hover .spo-img {
      transform: scale(1.05);
    }

    /* Gradiente */
    .spo-gradient {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1;
      background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    }

    /* Categoria */
    .spo-category {

      color: white;
      font-size: 11px;
      padding: 4px 10px;
      text-transform: uppercase;
      font-weight: bold;
      letter-spacing: 0.5px;
      z-index: 2;
      border-radius: 3px;
    }

    /* Título */
    .spo-title {
      position: absolute;
      line-height: 1.3;
      margin: 0;
      color: white;
      font-weight: 800;
      z-index: 2;
      text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }
.spo-title-int {
	font-size:24px;
	color:#fff;
	    margin-top: 15px;
}

@media (max-width:768px){
	.spo-title-int {
    font-size: 16px;
		margin-top: 10px;
	}
}
    /* Data */
    .spo-date {
      position: absolute;
      font-size: 12px;
      color: rgba(255,255,255,0.9);
      display: flex;
      align-items: center;
      gap: 6px;
      z-index: 2;
      letter-spacing: 0.3px;
    }

    /* CARD GRANDE - DESKTOP */
    .card-large .spo-img-wrapper {
      height: 500px;
    }

    .card-large .spo-gradient {
      height: 150px;
    }

    .card-large .spo-category {
      bottom: 100px;
      left: 20px;
    }

    .card-large .spo-title {
      bottom: 40px;
      left: 20px;
      right: 20px;
      font-size: 24px;
    }

    .card-large .spo-date {
      bottom: 15px;
      left: 20px;
    }

    /* CARDS MENORES - DESKTOP */
    .card-small .spo-img-wrapper {
      height: 240px;
    }

    .card-small .spo-gradient {
      height: 100px;
    }

    .card-small .spo-category {
      bottom: 70px;
      left: 15px;
      font-size: 10px;
      padding: 3px 8px;
    }

    .card-small .spo-title {
      bottom: 25px;
      left: 15px;
      right: 15px;
      font-size: 16px;
    }

     .spo-title-ld {
      bottom: 25px;
      left: 15px;
      right: 15px;
      font-size: 16px;
		 color:#fff;
		 margin-top: 10px;
    }

    .card-small .spo-date {
      bottom: 8px;
      left: 15px;
      font-size: 11px;
    }

    /* DESKTOP - Layout com card grande à esquerda e 2 cards menores à direita */
    @media (min-width: 992px) {
      .news-grid {
        grid-template-columns: 2fr 1fr;
        gap: 30px;
      }
      
      .right-column {
        display: flex;
        flex-direction: column;
        gap: 25px;
      }
      
      .card-small .spo-img-wrapper {
        height: 235px;
      }
    }

    /* MOBILE - AJUSTE ESPECIAL PARA OS CARDS MENORES */
    @media (max-width: 767px) {
      /* REMOVE TODAS AS ALTURAS FIXAS E USA AUTO */
      .card-large .spo-img-wrapper,
      .card-small .spo-img-wrapper {
        height: auto !important;
        min-height: 200px;
        max-height: 400px;
      }
      
      /* IMAGEM MOSTRADA COMPLETAMENTE (CONTAIN) */
      .spo-img {
        height: auto !important;
        object-fit: contain !important;
        max-height: 400px;
        width: 100%;
      }
      
      /* GRADIENTE SE ADAPTA À IMAGEM */
      .card-large .spo-gradient,
      .card-small .spo-gradient {
        height: 120px;
        bottom: 0;
      }
      
      /* AJUSTES DE POSICIONAMENTO PARA MOBILE */
      .card-large .spo-category {
        bottom: 80px;
        left: 15px;
      }
      
      .card-large .spo-title {
        font-size: 20px;
        bottom: 30px;
        left: 15px;
        right: 15px;
      }
      
      .card-large .spo-date {
        bottom: 10px;
        left: 15px;
      }
      
      /* CARDS MENORES NO MOBILE */
      .card-small .spo-category {
        bottom: 80px;
        left: 15px;
        font-size: 10px;
        padding: 3px 8px;
      }
      
      .card-small .spo-title {
        font-size: 16px;
        bottom: 30px;
        left: 15px;
        right: 15px;
        line-height: 1.2;
      }
      
      .card-small .spo-date {
        font-size: 11px;
        bottom: 10px;
        left: 15px;
      }
      
      /* ESPAÇAMENTO GERAL ENTRE TODOS OS CARDS */
      .news-grid {
        gap: 25px;
      }
      
      /* ESPECIAL: ESPAÇAMENTO ENTRE OS DOIS CARDS MENORES NO MOBILE */
      .right-column {
        display: flex;
        flex-direction: column;
        gap: 25px; /* AGORA OS CARDS MENORES TÊM ESPAÇO ENTRE SI */
      }
      
      /* GARANTIR QUE CADA CARD TENHA ESPAÇO ABAIXO */
      .spo-card {
        margin-bottom: 0;
      }
    }

    /* TABLET - ainda 1 coluna */
    @media (min-width: 768px) and (max-width: 991px) {
      .card-large .spo-img-wrapper {
        height: 400px;
      }
      
      .card-large .spo-title {
        font-size: 22px;
      }
      
      .card-small .spo-img-wrapper {
        height: 200px;
      }
    }

    @media (max-width: 480px) {
      .card-large .spo-img-wrapper,
      .card-small .spo-img-wrapper {
        min-height: 200px;
        max-height: 350px;
      }
      
      .spo-img {
        max-height: 350px;
      }
      
      .card-large .spo-title {
        font-size: 18px;
        bottom: 25px;
      }
      
      .card-small .spo-title {
        font-size: 14px;
        bottom: 25px;
      }
      
      .card-large .spo-category,
      .card-small .spo-category {
        bottom: 70px;
      }
      
      .card-large .spo-date,
      .card-small .spo-date {
        bottom: 8px;
      }
      
      /* MAIS ESPAÇO NO CELULAR PEQUENO */
      .news-grid {
        gap: 20px;
      }
      
      .right-column {
        gap: 20px;
      }
    }

    /* CORES PARA DIFERENTES ESPORTES */
    .category-futebol {
      background: var(--color-primary);
    }
    
    .category-volei {
      background: var(--bg-volei);
    }
    
    .category-basquete {
      background: var(--bg-basquete);
    }


   /* ajustes */
    
        .single-featured-image img {width:100%;height:auto;}
        .single-content img {width:100%;height:auto;}
        .menu-lateral-int i {
        color: #111;
        }
        .menu-lateral-int i:hover {
        color: var(--color-primary);
        }
        #wpadminbar .header-small.show {
            top: 32px;
        }
        #menu-small-int {display: flex;}
        #menu-small-int li {list-style: none;