/* WordPress theme additions (mockup styles.css stays untouched). */

.msb-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 1.75rem;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.msb-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.stream-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin: 0 0 1.5rem;
  list-style: none;
  padding: 0;
}

.stream-filters a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono); /* Special Elite — same as .tag */
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  line-height: 1;
  color: var(--text-muted);
  text-decoration: none;
}
.stream-filters__label {
  display: block;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  /* Keep btn-center-6 optical for Special Elite. */
  transform: translateY(0.14em);
}

.stream-filters a:hover,
.stream-filters a.is-active {
  color: var(--bg);
  background: var(--gold);
  border-color: var(--gold);
}

.podcast__art a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.podcast__art a:hover img {
  outline-color: rgba(201, 162, 39, 0.45);
}

.alignnone, .aligncenter, .alignleft, .alignright, .wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}




/* Horizontal numbered feed pagination (replaces stacked WP page-numbers). */
.new__more .feed-pages {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.new__more .feed-pages li {
  margin: 0;
  padding: 0;
}
.new__more .feed-pages__num,
.new__more .feed-pages__dir {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  text-transform: lowercase;
  color: var(--text-muted);
  box-sizing: border-box;
}
.new__more .feed-pages__num {
  text-transform: none;
  /* Optical center for Special Elite digits */
  padding-top: 0.14em;
}
.new__more .feed-pages__dir {
  padding-top: 0.14em;
}
.new__more .feed-pages__num:hover,
.new__more .feed-pages__dir:hover {
  color: var(--gold);
  border-color: rgba(201, 162, 39, 0.45);
}
.new__more .feed-pages__num.is-current {
  color: var(--bg);
  background: var(--gold);
  border-color: var(--gold);
}


/* AJAX feed swap — keep chrome; fade stream while loading. */
.feed-stream.is-loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 160ms var(--ease, ease);
}


/* Keep AJAX scroll target clear of the fixed site header. */
#feed-head {
  scroll-margin-top: calc(var(--header-offset, 4.5rem) + 0.75rem);
}
#feed-stream {
  scroll-margin-top: calc(var(--header-offset, 4.5rem) + 0.75rem);
}


/* Article-only featured hero — same 16:9 chrome as the video embed slot. */
.msb-embed--image {
  padding: 0;
}
.msb-embed--image .article__hero-img,
.msb-embed--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
