/*
Theme Name: Papo de Boleiro
Theme URI: https://papodeboleiro.revistatop.com.br
Author: Revista Top
Description: Portal de futebol amador e profissional de Catanduva e regiao.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: Proprietary
Text Domain: papo-de-boleiro
*/

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #F5A623;
  --gold-dark:  #C8811A;
  --gold-light: #FFD27A;
  --amber:      #E8820C;
  --black:      #0A0A0A;
  --card:       #111111;
  --card-hover: #181818;
  --white:      #FFFFFF;
  --text:       #EEEEEE;
  --muted:      #999999;
  --border:     rgba(255,255,255,0.07);
  --gold-glow:  rgba(245,166,35,0.18);

  --font-head:  'Oswald', sans-serif;
  --font-body:  'Source Sans 3', sans-serif;
  --font-disp:  'Bebas Neue', cursive;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; text-transform: uppercase; }

/* ── CONTAINER ── */
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ── BADGE ── */
.badge {
  display: inline-block; padding: 3px 9px;
  border-radius: var(--r-sm);
  font-family: var(--font-head); font-size: .68rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: .07em;
}
.badge-gold   { background: var(--gold); color: #000; }
.badge-green  { background: #1e8a1e; color: #fff; }
.badge-red    { background: #c0392b; color: #fff; }
.badge-blue   { background: #1a6fa8; color: #fff; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: var(--r-md);
  font-family: var(--font-head); font-weight: 600;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .07em;
  transition: all .2s; cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #000;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000; transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,.35);
}
.btn-outline {
  background: transparent; border: 1.5px solid var(--gold); color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #000; }

/* ── SECTION TITLE ── */
.sec-title {
  font-family: var(--font-disp);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  letter-spacing: .04em; color: var(--white);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.sec-title::before {
  content: ''; display: inline-block;
  width: 4px; height: 1em;
  background: linear-gradient(180deg, var(--gold), var(--amber));
  border-radius: 2px; flex-shrink: 0;
}

/* ── SKELETON ── */
.skel {
  background: linear-gradient(90deg,#161616 25%,#202020 50%,#161616 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--r-md);
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ── TOPBAR ── */
.pdb-topbar {
  background: #000;
  border-bottom: 1px solid rgba(245,166,35,.15);
  padding: 5px 0; font-size: .72rem; color: var(--muted);
}
.pdb-topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.topbar-live { display: flex; align-items: center; gap: 6px; }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.65)} }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a { color: var(--muted); display: flex; align-items: center; transition: color .2s; }
.topbar-social a:hover { color: var(--gold); }

/* ── HEADER ── */
.pdb-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245,166,35,.12);
  transition: box-shadow .3s;
}
.pdb-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.9); }
.header-inner {
  display: flex; align-items: center; gap: 20px;
  padding: 10px 16px; min-height: 62px;
  max-width: 1200px; margin: 0 auto;
}

/* Logo */
.site-logo { flex-shrink: 0; }
.site-logo img { height: 50px; width: auto; object-fit: contain; }

/* Nav desktop */
.primary-nav { flex: 1; display: none; }
@media(min-width:768px){ .primary-nav{ display:block; } }
.primary-nav ul { list-style: none; display: flex; align-items: center; gap: 2px; }
.primary-nav ul li a {
  display: flex; align-items: center; gap: 5px;
  color: var(--muted);
  font-family: var(--font-head); font-size: .8rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  padding: 7px 11px; border-radius: var(--r-md);
  transition: all .2s;
}
.primary-nav ul li a:hover,
.primary-nav ul li.current-menu-item a { color: var(--gold); background: var(--gold-glow); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.btn-icon {
  background: none; border: none; color: var(--muted);
  cursor: pointer; padding: 8px; border-radius: var(--r-md);
  transition: all .2s; display: flex; align-items: center;
}
.btn-icon:hover { color: var(--gold); background: var(--gold-glow); }

/* Hamburger */
.btn-hamburger { flex-direction: column; gap: 4px; }
.btn-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--muted); border-radius: 2px;
  transition: all .28s; transform-origin: center;
}
.btn-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.btn-hamburger.open span:nth-child(2) { opacity: 0; }
.btn-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media(min-width:768px){ .btn-hamburger{ display:none; } }

/* Search bar */
.search-bar {
  overflow: hidden; max-height: 0;
  transition: max-height .3s ease;
  background: #0d0d0d;
  border-top: 1px solid rgba(245,166,35,.08);
}
.search-bar.open { max-height: 72px; }
.search-bar form {
  display: flex; gap: 8px;
  max-width: 1200px; margin: 0 auto;
  padding: 10px 16px;
}
.search-bar input {
  flex: 1; background: var(--card);
  border: 1.5px solid rgba(245,166,35,.2);
  border-radius: var(--r-md); color: var(--white);
  font-family: var(--font-body); font-size: .9rem;
  padding: 9px 13px; outline: none; transition: border-color .2s;
}
.search-bar input:focus { border-color: var(--gold); }
.search-bar button {
  background: var(--gold); border: none;
  border-radius: var(--r-md); color: #000;
  cursor: pointer; padding: 9px 14px;
  display: flex; align-items: center;
}

/* ── MOBILE NAV ── */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 298; opacity: 0;
  pointer-events: none; transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav {
  position: fixed; top: 0; right: -290px;
  width: 290px; height: 100dvh;
  background: #0d0d0d;
  border-left: 1px solid rgba(245,166,35,.2);
  z-index: 299; padding: 20px;
  transition: right .32s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 20px;
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  background: none; border: none;
  color: var(--muted); cursor: pointer;
  align-self: flex-end; padding: 4px;
}
.mobile-nav img { width: 130px; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mobile-nav ul li a {
  display: block; color: var(--text);
  font-family: var(--font-head); font-size: .95rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  padding: 11px 14px; border-radius: var(--r-md);
  transition: all .2s;
}
.mobile-nav ul li a:hover { background: var(--gold-glow); color: var(--gold); }
.mobile-nav-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.mobile-nav-social a { color: var(--muted); font-size: .78rem; font-family: var(--font-head); text-transform: uppercase; }

/* ── HERO ── */
.pdb-hero {
  position: relative; overflow: hidden;
  min-height: clamp(280px, 55vw, 520px);
  display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 7s ease;
}
.pdb-hero:hover .hero-bg { transform: scale(1.03); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.96) 0%, rgba(0,0,0,.5) 55%, rgba(0,0,0,.1) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 16px;
  padding-bottom: clamp(24px,5vw,56px);
  width: 100%;
}
.hero-inner { max-width: 680px; display: flex; flex-direction: column; gap: 10px; }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 4.5vw, 2.6rem);
  color: var(--white); line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,.8);
}
.hero-title a { color: inherit; }
.hero-title a:hover { color: var(--gold-light); }
.hero-excerpt { font-size: clamp(.82rem,2vw,.96rem); color: rgba(255,255,255,.78); line-height: 1.5; }
.hero-meta { display: flex; align-items: center; gap: 8px; font-size: .76rem; color: var(--muted); }
.hero-empty { background: linear-gradient(135deg,#0d0d0d,#111); }

/* ── LAYOUT ── */
.pdb-layout {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  max-width: 1200px; margin: 0 auto;
  padding: 32px 16px 60px;
}
@media(min-width:1024px){ .pdb-layout{ grid-template-columns: 1fr 300px; } }

/* ── SECTION ── */
.pdb-section { margin-bottom: 48px; }
.section-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.section-header .sec-title { margin-bottom: 0; }
.section-more { text-align: center; margin-top: 28px; }

/* ── GRID CARDS ── */
.cards-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media(min-width:480px){ .cards-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px){ .cards-grid { grid-template-columns: repeat(3,1fr); } }

.rss-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media(min-width:480px){ .rss-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px){ .rss-grid { grid-template-columns: repeat(4,1fr); } }

/* ── CARD ── */
.pdb-card {
  background: var(--card);
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .24s, box-shadow .24s, border-color .24s;
  display: flex; flex-direction: column;
}
.pdb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.65), 0 0 0 1px rgba(245,166,35,.22);
  border-color: rgba(245,166,35,.22);
}
.card-img-wrap { display: block; overflow: hidden; flex-shrink: 0; }
.card-img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .38s ease;
}
.pdb-card:hover .card-img { transform: scale(1.05); }
.card-img-placeholder {
  aspect-ratio: 16/9; background: #171717;
  display: flex; align-items: center; justify-content: center;
}
.card-body { padding: 14px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.card-source {
  font-family: var(--font-head); font-size: .65rem;
  color: var(--gold); text-transform: uppercase; letter-spacing: .07em;
}
.card-title {
  font-family: var(--font-head); font-size: clamp(.85rem,2.2vw,.96rem);
  color: var(--white); line-height: 1.28;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-title a { color: inherit; }
.card-title a:hover { color: var(--gold-light); }
.card-excerpt {
  font-size: .8rem; color: var(--muted); line-height: 1.48;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  flex: 1;
}
.card-meta { font-size: .72rem; color: #666; margin-top: auto; }

/* ── YOUTUBE SECTION ── */
.yt-section {
  background: #0d0d0d;
  border: 1px solid rgba(255,0,0,.12);
  border-radius: var(--r-lg); padding: 24px;
}
.yt-layout { display: grid; gap: 20px; }
@media(min-width:768px){ .yt-layout{ grid-template-columns: 1fr 240px; } }

.yt-main-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--r-md); overflow: hidden; background: #000; }
.yt-main-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.yt-main-info { padding-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.yt-main-title { font-family: var(--font-head); font-size: 1rem; color: var(--white); line-height: 1.3; }

.yt-thumbs { display: flex; flex-direction: column; gap: 8px; }
.yt-thumb {
  display: flex; gap: 10px; align-items: center;
  padding: 8px; border-radius: var(--r-md);
  background: rgba(255,255,255,.03);
  text-decoration: none;
  transition: background .2s;
}
.yt-thumb:hover { background: var(--gold-glow); }
.yt-thumb-img {
  width: 96px; flex-shrink: 0;
  border-radius: var(--r-sm); overflow: hidden;
  position: relative;
}
.yt-thumb-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.yt-play-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.5); opacity: 0; transition: opacity .2s;
  font-size: .9rem; color: #fff;
}
.yt-thumb:hover .yt-play-icon { opacity: 1; }
.yt-thumb-title {
  font-family: var(--font-head); font-size: .78rem;
  color: var(--text); line-height: 1.28;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.yt-view { font-size: .68rem; color: var(--muted); margin-top: 3px; }

/* ── POLLS ── */
.polls-grid { display: grid; gap: 16px; }
@media(min-width:600px){ .polls-grid{ grid-template-columns: repeat(2,1fr); } }

.pdb-poll {
  background: var(--card);
  border: 1px solid rgba(245,166,35,.18);
  border-radius: var(--r-lg); padding: 20px;
}
.poll-question {
  font-family: var(--font-head); font-size: .96rem;
  color: var(--white); margin-bottom: 14px; line-height: 1.3;
}
.poll-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.poll-btn {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: var(--r-md); color: var(--text);
  cursor: pointer; padding: 10px 13px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: .85rem;
  transition: border-color .2s; text-align: left;
}
.poll-btn:hover { border-color: var(--gold); }
.poll-btn.voted { border-color: var(--gold); cursor: default; }
.poll-bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg,rgba(245,166,35,.16),rgba(245,166,35,.06));
  transition: width .55s ease; pointer-events: none;
}
.poll-label { position: relative; z-index: 1; }
.poll-pct {
  position: relative; z-index: 1;
  font-family: var(--font-head); font-size: .78rem;
  color: var(--gold); opacity: 0; transition: opacity .3s;
}
.pdb-poll.revealed .poll-pct { opacity: 1; }
.poll-total { font-size: .72rem; color: var(--muted); text-align: right; }

/* ── SIDEBAR ── */
.pdb-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 18px;
}
.sidebar-widget-title {
  font-family: var(--font-disp); font-size: 1rem;
  letter-spacing: .04em; color: var(--gold);
  margin-bottom: 14px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(245,166,35,.18);
}
.sidebar-list { display: flex; flex-direction: column; gap: 1px; }
.sidebar-item {
  display: flex; gap: 9px; align-items: flex-start;
  padding: 8px 6px; border-radius: var(--r-sm);
  text-decoration: none; transition: background .2s;
}
.sidebar-item:hover { background: rgba(255,255,255,.04); }
.sidebar-item-img { width: 68px; flex-shrink: 0; border-radius: var(--r-sm); overflow: hidden; }
.sidebar-item-img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.sidebar-item-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.sidebar-item-title {
  font-family: var(--font-head); font-size: .78rem;
  color: var(--text); line-height: 1.28;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.sidebar-item:hover .sidebar-item-title { color: var(--gold-light); }
.sidebar-item-date { font-size: .67rem; color: #666; }

.sidebar-rss-item {
  display: block; padding: 9px 6px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  text-decoration: none; transition: background .2s;
}
.sidebar-rss-item:last-child { border-bottom: none; }
.sidebar-rss-item:hover { background: rgba(255,255,255,.04); }
.sidebar-rss-title {
  font-family: var(--font-head); font-size: .78rem;
  color: var(--text); line-height: 1.28;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.sidebar-rss-item:hover .sidebar-rss-title { color: var(--gold-light); }
.sidebar-rss-date { font-size: .67rem; color: #666; margin-top: 3px; }

/* ── ARCHIVE HEADER ── */
.archive-header {
  background: #0a0a0a;
  border-bottom: 2px solid rgba(245,166,35,.18);
  padding: 32px 0;
}
.archive-title {
  font-family: var(--font-disp);
  font-size: clamp(1.4rem,5vw,2.4rem);
  color: var(--white); margin-bottom: 6px;
}
.archive-desc { color: var(--muted); font-size: .88rem; }

/* ── SINGLE ── */
.single-hero {
  position: relative; overflow: hidden;
  min-height: clamp(240px,45vw,440px);
  display: flex; align-items: flex-end;
}
.single-hero-img { position: absolute; inset: 0; }
.single-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.single-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(0,0,0,.97) 0%,rgba(0,0,0,.4) 65%,transparent 100%);
}
.single-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0 16px; padding-bottom: 32px; width: 100%;
  max-width: 720px;
}
.single-title {
  font-family: var(--font-head);
  font-size: clamp(1.2rem,3.5vw,2rem);
  color: var(--white); line-height: 1.15;
  margin-top: 10px; text-shadow: 0 2px 8px rgba(0,0,0,.7);
}
.single-meta { font-size: .78rem; color: var(--muted); margin-top: 8px; display: flex; gap: 8px; align-items: center; }

.single-layout {
  display: grid; gap: 32px;
  max-width: 1200px; margin: 0 auto;
  padding: 32px 16px 60px;
}
@media(min-width:1024px){ .single-layout{ grid-template-columns: 1fr 300px; } }

.prose { font-size: .97rem; line-height: 1.74; max-width: 720px; }
.prose h2 { font-size: 1.3rem; color: var(--white); margin: 28px 0 10px; }
.prose h3 { font-size: 1.05rem; color: var(--gold-light); margin: 22px 0 8px; }
.prose p { margin-bottom: 16px; }
.prose a { color: var(--gold); text-decoration: underline; }
.prose img { border-radius: var(--r-md); margin: 20px 0; }
.prose blockquote { border-left: 3px solid var(--gold); padding-left: 18px; color: var(--muted); font-style: italic; margin: 20px 0; }
.prose ul,.prose ol { padding-left: 22px; margin-bottom: 16px; }
.prose li { margin-bottom: 5px; }

.post-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.post-tag { background: var(--card-hover); color: var(--muted); font-size: .74rem; font-family: var(--font-head); padding: 4px 10px; border-radius: var(--r-sm); border: 1px solid var(--border); transition: all .2s; }
.post-tag:hover { color: var(--gold); border-color: var(--gold); }

.share-row { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-top: 20px; font-size: .82rem; color: var(--muted); font-family: var(--font-head); }
.share-btn { padding: 7px 15px; border-radius: var(--r-md); font-size: .76rem; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; transition: all .2s; }
.share-wa  { background: #25D366; color: #fff; }
.share-wa:hover  { background: #20b958; color:#fff; }
.share-fb  { background: #1877F2; color: #fff; }
.share-fb:hover  { background: #1469d6; color:#fff; }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
@media(max-width:480px){ .post-nav{ grid-template-columns:1fr; } }
.post-nav-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px; transition: border-color .2s; display: flex; flex-direction: column; gap: 5px; }
.post-nav-item:hover { border-color: var(--gold); }
.post-nav-label { font-size: .68rem; color: var(--gold); font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; }
.post-nav-next { text-align: right; }
.post-nav-title { font-family: var(--font-head); font-size: .82rem; color: var(--text); line-height: 1.28; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.related-section { background: #0a0a0a; padding: 40px 0; border-top: 1px solid rgba(245,166,35,.1); }

/* ── COMMENTS ── */
#comments,.comment-respond { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
#comments h2,.comment-reply-title { font-family: var(--font-head); font-size: 1.1rem; color: var(--white); margin-bottom: 18px; }
.comment-list { list-style: none; padding: 0; }
.comment { margin-bottom: 16px; }
.comment-body { background: var(--card); border-radius: var(--r-md); padding: 14px; border: 1px solid var(--border); }
.comment-author b { color: var(--gold); font-family: var(--font-head); }
.comment-meta time { font-size: .74rem; color: var(--muted); }
.comment-content { margin-top: 8px; font-size: .88rem; }
.comment-form input,.comment-form textarea { background: var(--card); border: 1.5px solid rgba(255,255,255,.1); border-radius: var(--r-md); color: var(--white); font-family: var(--font-body); font-size: .88rem; padding: 9px 13px; width: 100%; transition: border-color .2s; margin-bottom: 10px; display: block; }
.comment-form input:focus,.comment-form textarea:focus { border-color: var(--gold); outline: none; }
.comment-form textarea { min-height: 110px; resize: vertical; }
.comment-form .submit { background: linear-gradient(135deg,var(--gold),var(--amber)); border: none; border-radius: var(--r-md); color: #000; cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: .88rem; padding: 10px 22px; text-transform: uppercase; letter-spacing: .06em; transition: all .2s; }
.comment-form .submit:hover { opacity: .9; transform: translateY(-1px); }

/* ── PAGINATION ── */
.pdb-pagination { text-align: center; margin-top: 32px; }
.pdb-pagination .page-numbers { list-style: none; display: inline-flex; gap: 4px; flex-wrap: wrap; justify-content: center; }
.pdb-pagination .page-numbers li a,
.pdb-pagination .page-numbers li span { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: var(--r-md); font-family: var(--font-head); font-size: .82rem; background: var(--card); color: var(--muted); border: 1px solid var(--border); transition: all .2s; }
.pdb-pagination .page-numbers li a:hover { color: var(--gold); border-color: var(--gold); }
.pdb-pagination .page-numbers li .current { background: var(--gold); color: #000; border-color: var(--gold); }

/* ── FOOTER ── */
.pdb-footer { background: #060606; border-top: 1px solid rgba(245,166,35,.12); }
.footer-top { padding: 48px 0; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media(min-width:600px){ .footer-grid{ grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px){ .footer-grid{ grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand-text { color: var(--muted); font-size: .86rem; line-height: 1.6; margin-top: 14px; }
.footer-logo { margin-bottom: 14px; width: 140px; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,.06); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .2s; }
.footer-social a:hover { background: var(--gold); color: #000; }
.footer-heading { font-family: var(--font-head); font-size: .8rem; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-links a { color: var(--muted); font-size: .86rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-yt-btn { display: inline-flex; align-items: center; gap: 7px; background: #FF0000; color: #fff; font-family: var(--font-head); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; padding: 9px 15px; border-radius: var(--r-md); transition: all .2s; }
.footer-yt-btn:hover { background: #c00; color: #fff; transform: translateY(-1px); }
.footer-bottom { background: #000; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.04); text-align: center; }
.footer-bottom p { font-size: .76rem; color: #555; }
.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: var(--gold); }

/* ── MISC ── */
.empty-state { text-align: center; padding: 40px 20px; color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: 16px; }
.rss-error { text-align:center; padding:20px; color:var(--muted); font-size:.85rem; grid-column:1/-1; }
.screen-reader-text { clip:rect(1px,1px,1px,1px); position:absolute; width:1px; height:1px; overflow:hidden; }

@media(max-width:480px){ .yt-section{ padding:16px; } }

/* ══ FEEDZY RSS - GRID DE CARDS ══ */

.pdb-feedzy-wrap .feedzy-rss { display: block !important; }

/* Grid principal */
.pdb-feedzy-wrap .feedzy-rss ul {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  list-style: none !important;
  padding: 0 !important; margin: 0 !important;
  overflow: visible !important;
}
@media(min-width:480px){ .pdb-feedzy-wrap .feedzy-rss ul { grid-template-columns: repeat(2,1fr) !important; } }
@media(min-width:900px){ .pdb-feedzy-wrap .feedzy-rss ul { grid-template-columns: repeat(4,1fr) !important; } }

/* Card - forcar display block e remover inline-block/float do Feedzy */
.pdb-feedzy-wrap .feedzy-rss ul li.rss_item {
  display: flex !important; flex-direction: column !important;
  width: auto !important; float: none !important;
  padding: 0 !important; margin: 0 !important;
  background: var(--card) !important;
  border-radius: var(--r-lg) !important;
  overflow: hidden !important;
  border: 1px solid var(--border) !important;
  transition: transform .24s, box-shadow .24s, border-color .24s;
}
.pdb-feedzy-wrap .feedzy-rss ul li.rss_item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 36px rgba(0,0,0,.65), 0 0 0 1px rgba(245,166,35,.22) !important;
  border-color: rgba(245,166,35,.22) !important;
}

/* Imagem */
.pdb-feedzy-wrap .feedzy-rss ul li .rss_image {
  overflow: hidden !important; flex-shrink: 0 !important;
  display: block !important; line-height: 0 !important;
  background: #171717 !important; min-height: 120px;
}
.pdb-feedzy-wrap .feedzy-rss ul li .rss_image img {
  width: 100% !important; height: auto !important;
  aspect-ratio: 16/9 !important; object-fit: cover !important;
  display: block !important; max-width: none !important;
  transition: transform .38s ease;
}
.pdb-feedzy-wrap .feedzy-rss ul li:hover .rss_image img { transform: scale(1.05); }
.pdb-feedzy-wrap .feedzy-rss ul li .rss_image a {
  display: block !important; min-height: 130px; background: #171717;
}

/* Conteudo */
.pdb-feedzy-wrap .feedzy-rss ul li .rss_content {
  padding: 14px !important; display: flex !important;
  flex-direction: column !important; gap: 6px !important; flex: 1 !important;
}
.pdb-feedzy-wrap .feedzy-rss ul li .rss_content .title,
.pdb-feedzy-wrap .feedzy-rss ul li .rss_content span.title {
  font-family: var(--font-head) !important; font-size: .9rem !important;
  font-weight: 700 !important; text-transform: uppercase !important;
  line-height: 1.3 !important; margin: 0 !important;
  display: -webkit-box !important; -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important; overflow: hidden !important;
}
.pdb-feedzy-wrap .feedzy-rss ul li .rss_content .title a { color: var(--white) !important; text-decoration: none !important; }
.pdb-feedzy-wrap .feedzy-rss ul li .rss_content .title a:hover { color: var(--gold-light) !important; }
.pdb-feedzy-wrap .feedzy-rss ul li .rss_content .desc,
.pdb-feedzy-wrap .feedzy-rss ul li .rss_content p {
  font-size: .78rem !important; color: var(--muted) !important;
  line-height: 1.48 !important; margin: 0 !important; flex: 1 !important;
  display: -webkit-box !important; -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important; overflow: hidden !important;
}
.pdb-feedzy-wrap .feedzy-rss ul li .rss_content .rss_author { font-size: .68rem !important; color: #666 !important; margin-top: auto !important; }
.pdb-feedzy-wrap .feedzy-rss ul:after,
.pdb-feedzy-wrap .feedzy-rss:after { display: none !important; clear: none !important; }
