/* =====================================================
   MUNDOWHODAT REVAMP - Main CSS
   Colors: Gold #D4AF37 | Black #000 | White #fff
   ===================================================== */

:root {
  --gold:        #D4AF37;
  --gold-light:  #f0cc5a;
  --gold-dark:   #b8962e;
  --black:       #000;
  --dark-1:      #0d0d0d;
  --dark-2:      #161616;
  --dark-3:      #1e1e1e;
  --border:      #2a2a2a;
  --text:        #f0f0f0;
  --text-muted:  #a0a0a0;
  --text-dim:    #cccccc;
  --font-head:   'Oswald', sans-serif;
  --font-body:   'Lato', sans-serif;
  --radius:      4px;
  --transition:  0.2s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark-1);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}

.header-top {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  padding: 0.4rem 0;
  font-size: 0.78rem;
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.header-social {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
}

.header-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition);
  line-height: 1;
}
.header-social a:hover { color: var(--gold); }
.header-social svg {
  width: 13px;
  height: 13px;
  display: block;
  flex-shrink: 0;
}

/* Footer social */
.footer-social {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.85rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 15px; height: 15px; display: block; }

.header-main { padding: 0.75rem 0; position: relative; z-index: 10001; }

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { display: block; }
.site-logo { height: 52px; width: auto; }

/* Nav */
.header-nav {
  background: var(--dark-2);
  border-top: 2px solid var(--gold);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-menu li a {
  display: block;
  padding: 0.75rem 1rem;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d0d0d0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-search { padding: 0.5rem 0; }
.search-toggle {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.4rem;
  transition: color var(--transition);
}
.search-toggle:hover { color: var(--gold); }

.search-dropdown {
  display: none;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
}
.search-dropdown.open { display: block; }

.search-dropdown .search-field,
.search-dropdown input[type="search"] {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}
.search-dropdown .search-field:focus,
.search-dropdown input[type="search"]:focus {
  border-color: var(--gold);
}

.search-dropdown .search-submit,
.search-dropdown button[type="submit"],
.search-dropdown input[type="submit"] {
  display: none;
}

/* Mobile nav */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  z-index: 10001;
  position: relative;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  transform-origin: center;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-open { overflow: hidden; }

@media (max-width: 768px) {
  .header-top { display: none; }
  .mobile-menu-toggle { display: flex; }

  /* Fullscreen overlay */
  #header-nav {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--dark-1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;
  }
  #header-nav.open {
    opacity: 1;
    pointer-events: all;
  }
  #header-nav .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 2rem 3rem;
    gap: 0;
  }
  .nav-inner { flex-direction: column; width: 100%; }
  .nav-menu {
    flex-direction: column;
    align-items: center;
    list-style: none;
    width: 100%;
    gap: 0;
  }
  .nav-menu li { width: 100%; text-align: center; }
  .nav-menu li a {
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    border-top: none;
    letter-spacing: 0.06em;
    color: var(--text);
    display: block;
  }
  .nav-menu li a:hover,
  .nav-menu li.current-menu-item a { color: var(--gold); }

  .nav-search {
    margin-top: 2.5rem;
    width: 100%;
    max-width: 420px;
  }
  .search-toggle { display: none; }
  .search-dropdown {
    display: block;
    padding: 0;
    border: none;
  }
  .search-dropdown .search-field,
  .search-dropdown input[type="search"] {
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 40px;
    border-color: var(--border);
    text-align: left;
  }
  .search-dropdown .search-field:focus,
  .search-dropdown input[type="search"]:focus {
    border-color: var(--gold);
  }
}

/* ===== HERO ===== */
.hero-section { position: relative; }

.hero-link { display: block; }

.hero-image {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-3);
  display: flex;
  align-items: flex-end;
}

@media (max-width: 768px) { .hero-image { min-height: 340px; } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.6)  50%,
    rgba(0,0,0,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0;
  max-width: 760px;
}

.hero-category {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-excerpt {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  max-width: 600px;
}

.hero-meta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.hero-sep { color: var(--gold); }

/* ===== TICKER ===== */
.news-ticker {
  background: var(--gold);
  padding: 0.5rem 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}

.ticker-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--black);
  color: var(--gold);
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.ticker-track::-webkit-scrollbar { display: none; }

.ticker-item {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
  padding: 0 0.5rem;
  transition: color var(--transition);
}
.ticker-item:hover { color: var(--gold); }

/* ===== HOME BODY ===== */
.home-body { padding: 2.5rem 0 3rem; }

/* ===== CATEGORY PAGE ===== */
.cat-body { padding: 2.5rem 0 3rem; }

.cat-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cat-header-inner { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.cat-title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
}
.cat-title::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.cat-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  width: 100%;
}
.cat-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  white-space: nowrap;
}
.no-posts {
  color: var(--text-muted);
  padding: 3rem 0;
  text-align: center;
}

.home-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .home-layout { grid-template-columns: 1fr; }
  .home-sidebar { order: -1; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 540px) {
  .home-sidebar { grid-template-columns: 1fr; }
}

/* ===== SECTION HEADER ===== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}

.section-title span {
  border-left: 3px solid var(--gold);
  padding-left: 0.6rem;
}

.section-more {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-family: var(--font-head);
  text-transform: uppercase;
}
.section-more:hover { color: var(--gold-light); }

/* ===== POST CARDS ===== */
.post-card { background: var(--dark-2); border-radius: var(--radius); overflow: hidden; }

/* Large card */
.post-card--large { margin-bottom: 1.5rem; }

.post-card-image-link { display: block; }

.post-card-image {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-3);
}
.post-card-image--logo {
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center;
}

.post-card--large .post-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.post-card--large .post-card-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0.5rem 0 0.75rem;
}

.post-card--large .post-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

/* Posts grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 600px) { .posts-grid { grid-template-columns: 1fr; } }

/* Small card */
.post-card--small {
  display: flex;
  flex-direction: column;
}

.post-card-thumb-link { display: block; flex-shrink: 0; }
.post-card-thumb {
  height: 140px;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-3);
}
.post-card-thumb--logo {
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

.post-card--small .post-card-body {
  padding: 0.85rem 1rem 1rem;
  flex: 1;
}

.post-card--small .post-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0.3rem 0 0.5rem;
}

/* Category badge */
.post-card-cat {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  transition: all var(--transition);
}
.post-card-cat:hover {
  background: var(--gold);
  color: var(--black);
}

.post-card--large .post-card-cat {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
}
.post-card--large .post-card-cat:hover {
  background: var(--gold-light);
  color: #fff;
}

/* Meta */
.post-card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
}
.meta-sep { color: var(--gold); }

/* ===== PODCAST SECTION - FULL WIDTH ===== */
.podcast-fullwidth {
  background: var(--dark-2);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0 3rem;
}

.podcast-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .podcast-grid-full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .podcast-grid-full { grid-template-columns: 1fr; } }

.podcast-grid-full .podcast-card-image { height: 200px; }

/* Legacy */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 700px) { .podcast-grid { grid-template-columns: 1fr; } }

.podcast-card { background: var(--dark-2); border-radius: var(--radius); overflow: hidden; }

.podcast-card-image {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-play {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding-left: 3px;
  opacity: 0;
  transition: opacity var(--transition);
}
.podcast-card:hover .podcast-play { opacity: 1; }

.podcast-card-body { padding: 0.85rem 1rem 1rem; }
.podcast-card-body h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.podcast-card-body a:hover { color: var(--gold); }

/* ===== SIDEBAR ===== */
.sidebar-widget {
  background: var(--dark-2);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.widget-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 0.6rem;
  margin-bottom: 1rem;
}

.sidebar-list { list-style: none; }
.sidebar-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-list li:last-child { border-bottom: none; padding-bottom: 0; }

.sidebar-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 54px;
  display: block;
}
.sidebar-thumb div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  background-color: var(--dark-3);
}
.sidebar-thumb div.sidebar-thumb-logo {
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}

.sidebar-list-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.sidebar-list-body a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
}
.sidebar-list-body a:hover { color: var(--gold); }
.sidebar-list-body span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.sidebar-list--compact li { flex-direction: column; gap: 0.2rem; }

.widget-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.widget-title-row .widget-title { margin-bottom: 0; }
.widget-more {
  font-size: 0.7rem;
  color: var(--gold);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.widget-more:hover { color: var(--gold-light); }

/* ===== ARCHIVE ===== */
.archive-body { padding: 2.5rem 0; }

.posts-grid--archive {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .posts-grid--archive { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .posts-grid--archive { grid-template-columns: 1fr; } }

.post-card--grid { flex-direction: column; }

.post-card-thumb--tall { height: 180px; }

.pagination {
  margin-top: 2rem;
  text-align: center;
}
.pagination .page-numbers {
  display: inline-flex;
  gap: 0.5rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination .page-numbers a,
.pagination .page-numbers span {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: var(--dark-2);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.pagination .page-numbers a:hover,
.pagination .page-numbers .current {
  background: var(--gold);
  color: var(--black);
}

/* ===== SINGLE ===== */
.single-body { padding: 2.5rem 0 3rem; }

.single-article { max-width: 100%; }

/* Breadcrumb */
.single-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.single-breadcrumb a { color: var(--text-muted); }
.single-breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--border); }

.single-cat { margin-bottom: 0.85rem; display: inline-block; }

.single-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 1.25rem;
}

/* Meta row */
.single-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.single-meta-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.single-meta-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.author-name {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.author-name:hover { color: var(--gold); }
.single-meta-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Share buttons */
.single-share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.share-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.25rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background var(--transition), color var(--transition);
}
.share-btn svg { width: 12px; height: 12px; flex-shrink: 0; }
.share-btn--fb { background: #1877f2; color: #fff; }
.share-btn--fb:hover { background: #1558b0; color: #fff; }
.share-btn--tw { background: #000; color: #fff; }
.share-btn--tw:hover { background: #333; color: #fff; }
.share-btn--wa { background: #25D366; color: #fff; }
.share-btn--wa:hover { background: #128C7E; color: #fff; }

/* Hide Ultimate Social Media Icons plugin output on posts */
.single-article .sfsi_wDiv,
.single-article .sfsi_socialwrap,
.single-article [class*="sfsi_"] { display: none !important; }

/* Featured image */
.single-featured-image {
  margin-bottom: 2rem;
  border-radius: 6px;
  overflow: hidden;
}
.single-featured-image img { width: 100%; display: block; }
.single-featured-fallback {
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.single-featured-fallback img {
  width: auto;
  height: 80px;
  opacity: 0.7;
}

/* Content */
.single-content {
  font-size: 1.06rem;
  line-height: 1.9;
  color: var(--text-dim);
}
.single-content p { margin-bottom: 1.35rem; }
.single-content h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.25rem 0 0.85rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--gold);
}
.single-content h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.75rem 0 0.65rem;
}
.single-content a { color: var(--gold); }
.single-content a:hover { color: var(--gold-light); }
.single-content img { border-radius: var(--radius); margin: 1.75rem 0; width: 100%; }
.single-content blockquote {
  border-left: 3px solid var(--gold);
  background: var(--dark-2);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-dim);
  font-style: italic;
  font-size: 1.05rem;
}
.single-content ul, .single-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.35rem;
}
.single-content li { margin-bottom: 0.4rem; }

/* Tags */
.single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.tag-pill {
  display: inline-block;
  background: var(--dark-3);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.tag-pill:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Share bottom */
.single-share-bottom {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--dark-2);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.single-share-bottom .share-btn {
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
}
.single-share-bottom .share-btn svg { width: 14px; height: 14px; }

/* Author box */
.author-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  margin-top: 2rem;
}
.author-box-avatar {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.author-box-info { flex: 1; }
.author-box-label {
  display: block;
  font-size: 0.68rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-head);
  margin-bottom: 0.25rem;
}
.author-box-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.author-box-name:hover { color: var(--gold); }
.author-box-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Related posts */
.related-posts { margin-top: 2.5rem; }
.related-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) { .related-grid { grid-template-columns: 1fr; } }

/* ===== SIDEBAR - IMPROVED ===== */
.sidebar-widget--podcast { background: var(--dark-3); border: 1px solid rgba(212,175,55,0.2); }

.sidebar-thumb--podcast div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-play {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(212,175,55,0.9);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.sidebar-thumb--podcast:hover .sidebar-play { opacity: 1; }

/* Category pills */
.sidebar-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sidebar-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  transition: all var(--transition);
}
.sidebar-cat-pill span {
  font-size: 0.65rem;
  background: var(--border);
  color: var(--text-muted);
  padding: 0.05rem 0.35rem;
  border-radius: 10px;
}
.sidebar-cat-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.sidebar-cat-pill:hover span {
  background: rgba(0,0,0,0.2);
  color: var(--black);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  border-top: 2px solid var(--gold);
  margin-top: 3rem;
}

.footer-main { padding: 3rem 0 2rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-logo { height: 64px; width: auto; margin-bottom: 1rem; }

.footer-about p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.footer-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-menu { list-style: none; }
.footer-menu li { margin-bottom: 0.5rem; }
.footer-menu a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-menu a:hover { color: var(--gold); }

.footer-recent { list-style: none; }
.footer-recent li { margin-bottom: 0.75rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.footer-recent li:last-child { border-bottom: none; }
.footer-recent a {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.footer-recent a:hover { color: var(--text); }
.footer-recent-date {
  font-size: 0.7rem;
  color: var(--gold);
  font-family: var(--font-head);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-sep-dot { margin: 0 0.4rem; color: var(--border); }
.footer-credit { color: var(--text-muted); transition: color var(--transition); }
.footer-credit:hover { color: var(--gold); }

.who-dat-footer {
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-left: 0.6rem;
}

/* ===== PODCAST PAGE ===== */
.podcast-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3.5rem;
  background: var(--black);
}

.podcast-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(0.18);
  transform: scale(1.05);
}

.podcast-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 40%, rgba(212,175,55,0.06) 100%);
}

.podcast-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 700px) {
  .podcast-hero-inner { flex-direction: column; text-align: center; }
}

.podcast-hero-art {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  background: var(--dark-2);
  border: 2px solid var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.podcast-hero-art img { width: 100%; height: auto; }

.podcast-hero-label {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.podcast-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.podcast-hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.podcast-hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.podcast-stat { text-align: center; }
.podcast-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.podcast-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.podcast-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.podcast-platforms {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.platform-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.platform-btn--youtube {
  background: #ff0000;
  color: #fff;
}
.platform-btn--youtube:hover { background: #cc0000; color: #fff; }

.platform-btn--spotify {
  background: #1DB954;
  color: #fff;
}
.platform-btn--spotify:hover { background: #17a349; color: #fff; }

/* Latest episode featured */
.podcast-latest-wrap {
  padding: 2.5rem 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}

.podcast-latest-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--dark-3);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (max-width: 768px) { .podcast-latest-card { grid-template-columns: 1fr; } }

.podcast-latest-image {
  display: block;
  min-height: 280px;
}
.podcast-latest-image div {
  height: 100%;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-play-lg {
  width: 64px;
  height: 64px;
  background: rgba(212,175,55,0.9);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  padding-left: 4px;
  opacity: 0;
  transition: opacity var(--transition);
}
.podcast-latest-image:hover .podcast-play-lg { opacity: 1; }

.podcast-latest-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.podcast-latest-title {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
}
.podcast-latest-title a:hover { color: var(--gold); }

.podcast-latest-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.podcast-listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  align-self: flex-start;
  transition: background var(--transition);
  margin-top: 0.5rem;
}
.podcast-listen-btn:hover { background: var(--gold-light); color: var(--black); }

/* Episodes grid */
.podcast-episodes-wrap {
  padding: 2.5rem 0 3rem;
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .episodes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .episodes-grid { grid-template-columns: 1fr; } }

.episode-card {
  background: var(--dark-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition);
}
.episode-card:hover { transform: translateY(-3px); }

.episode-card-image-link { display: block; }

.episode-card-image {
  height: 170px;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-3);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0.6rem;
}

.episode-number {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.episode-play {
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.7);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  padding-left: 2px;
  opacity: 0;
  transition: opacity var(--transition);
}
.episode-card:hover .episode-play { opacity: 1; }

.episode-card-body { padding: 0.9rem 1rem 1rem; }

.episode-card-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}
.episode-card-title a:hover { color: var(--gold); }

/* ===== MISC ===== */
.no-posts {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

/* WordPress core */
.wp-caption { max-width: 100%; }
.aligncenter { margin: 0 auto; display: block; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }

/* ===== TEAM PAGE ===== */
.team-hero {
  background: var(--dark-2);
  border-bottom: 3px solid var(--gold);
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.team-hero-inner { max-width: 640px; margin: 0 auto; }
.team-hero-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.team-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 1rem;
}
.team-hero-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.team-body { padding: 3rem 0 4rem; }

.team-section-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
  margin-top: 3rem;
}
.team-section-label:first-child { margin-top: 0; }


/* Main grid — 3 columns */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* Card */
.team-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}
.team-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.team-card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center top;
  background-color: var(--dark-3);
}

.team-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.team-card-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.team-card-role {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  display: block;
}
.team-card-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.team-card-social {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.team-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--dark-3);
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.team-social-link:hover {
  background: var(--gold);
  color: var(--black);
}
.team-social-link svg { width: 14px; height: 14px; display: block; }

/* CTA */
.team-cta {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  text-align: center;
}
.team-cta-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.team-cta-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}
.team-cta-btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.team-cta-btn:hover {
  background: var(--gold-light);
  color: var(--black);
}

/* ===== NOSSA HISTÓRIA PAGE ===== */
.history-hero {
  background: var(--dark-2);
  border-bottom: 3px solid var(--gold);
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.history-hero-inner { max-width: 640px; margin: 0 auto; }
.history-hero-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.history-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 1rem;
}
.history-hero-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Intro */
.history-intro-wrap {
  padding: 3rem 0 0;
}
.history-intro {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-dim);
  text-align: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.history-intro strong { color: var(--text); font-weight: 700; }

/* Timeline */
.history-timeline-wrap { padding: 3rem 0 4rem; }
.history-timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.timeline-era {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0 2rem;
  margin-bottom: 0;
}

.timeline-era-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.25rem;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-dot--gold {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
}
.timeline-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: 4px;
  min-height: 60px;
}

.timeline-era-content {
  padding-bottom: 3.5rem;
}
.timeline-era--current .timeline-era-content {
  padding-bottom: 0;
}

.timeline-era-header {
  margin-bottom: 1rem;
}
.timeline-years {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}
.timeline-era-title {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.timeline-era-desc {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 640px;
}

/* Screenshot */
.timeline-era-img-link { display: block; }
.timeline-era-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 640px;
}
.timeline-era-img img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.timeline-era-img-link:hover .timeline-era-img img {
  transform: scale(1.02);
}
.timeline-era-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.timeline-era-img-link:hover .timeline-era-img-overlay { opacity: 1; }
.timeline-era-img-overlay span {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Current era platform badges */
.timeline-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.timeline-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.timeline-platform svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--gold); }

@media (max-width: 600px) {
  .timeline-era { grid-template-columns: 24px 1fr; gap: 0 1.25rem; }
  .timeline-era-title { font-size: 1.35rem; }
  .history-intro { font-size: 1rem; }
}

/* ===== GLOBAL RESPONSIVE ===== */
@media (max-width: 768px) {

  /* Single post */
  .single-meta-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .single-share { flex-wrap: wrap; }
  .single-share-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .single-share-bottom .single-share { flex-wrap: wrap; }
  .author-box { flex-direction: column; text-align: center; align-items: center; }

  /* Category header */
  .cat-header-inner { flex-direction: column; align-items: flex-start; gap: 0.4rem; }

  /* Podcast hero */
  .podcast-hero-inner { flex-direction: column; text-align: center; align-items: center; gap: 1.5rem; }
  .podcast-hero-art { width: 140px; }
  .podcast-hero-stats { justify-content: center; }
  .podcast-platforms { justify-content: center; }
  .podcast-latest-card { grid-template-columns: 1fr !important; }

  /* Team page */
  .team-cta { padding: 2rem 1.25rem; }
  .team-hero { padding: 2.5rem 0 2rem; }

  /* Footer */
  .footer-grid { gap: 2rem; }
  .footer-bottom p { text-align: center; }
}

@media (max-width: 480px) {
  /* Containers */
  .container { padding: 0 1rem; }

  /* Hero */
  .hero-content { padding: 1.5rem 1rem; }
  .hero-title { font-size: 1.5rem; }

  /* Post cards */
  .post-card--large .post-card-image { height: 220px; }
  .post-card-body { padding: 0.85rem; }

  /* Single */
  .single-content { font-size: 1rem; }
  .related-grid { grid-template-columns: 1fr; }

}
