/*
 * Built for Trust podcast pages.
 *
 * Ported 1:1 from the approved Mainstage reference build
 * (reference-site/{index,cisco/index,episodes/*}.html), with every rule
 * scoped under #onug-pod so it cannot reach the rest of the site and the
 * theme's global Bootstrap cannot reach in.
 *
 * Class names carry the onug-pod- prefix rather than the reference's generic
 * .btn / .hero / .footer: those collide with Bootstrap 4, which is loaded
 * site-wide. The values are the reference's.
 */

#onug-pod {
  --pod-bg: #ffffff;
  --pod-bg-alt: #f4f4f4;
  --pod-dark: #0f1d2a;
  --pod-dark-deep: #0a141d;
  --pod-text: #141414;
  --pod-text-2: #505050;
  --pod-muted: #7d858c;
  --pod-green: #8fc73e;
  --pod-green-dark: #70a228;
  --pod-cisco: #049fd9;
  --pod-border: rgba(15, 29, 42, 0.12);

  --pod-frame: min(1320px, 100% - 48px);
  --pod-section: clamp(48px, 8vw, 100px);

  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--pod-text);
  background: var(--pod-bg);
}

#onug-pod *,
#onug-pod *::before,
#onug-pod *::after { box-sizing: border-box; }

#onug-pod h1, #onug-pod h2, #onug-pod h3,
#onug-pod p, #onug-pod ol, #onug-pod ul, #onug-pod figure { margin: 0; padding: 0; }
#onug-pod img { max-width: 100%; display: block; }
#onug-pod a { color: inherit; }

/* The theme's global typography sets its own sizes on p / li / blockquote.
   Reset them to the podcast scale here; every rule below that needs a
   specific size is class-based, so it still wins on specificity. */
#onug-pod p,
#onug-pod li,
#onug-pod blockquote,
#onug-pod summary,
#onug-pod cite,
#onug-pod input {
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  color: inherit;
}
#onug-pod ol, #onug-pod ul { list-style-position: outside; }

#onug-pod .onug-pod-frame { width: var(--pod-frame); margin: 0 auto; }
#onug-pod .onug-pod-narrow { max-width: 760px; }

/* ---------- micro-label pattern ---------- */

#onug-pod .onug-pod-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
#onug-pod .onug-pod-label-text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--pod-green);
}
#onug-pod .onug-pod-rule { width: 80px; height: 2px; background: var(--pod-green); }

/* ---------- buttons ----------
 * #onug-pod raises specificity above Bootstrap's bare .btn, and every
 * property Bootstrap sets on a button is restated here so none leaks in. */

#onug-pod .onug-pod-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 24px;
  margin: 0;
  border-radius: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid var(--pod-green);
  background: var(--pod-green);
  color: var(--pod-dark);
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
}
#onug-pod .onug-pod-btn:hover,
#onug-pod .onug-pod-btn:focus {
  background: var(--pod-green-dark);
  border-color: var(--pod-green-dark);
  color: var(--pod-dark);
  text-decoration: none;
}
#onug-pod .onug-pod-btn svg { width: 16px; height: 16px; flex: none; }

#onug-pod .onug-pod-btn.sm { height: 36px; padding: 0 16px; font-size: 12px; letter-spacing: 0.08em; }
#onug-pod .onug-pod-btn.sm svg { width: 14px; height: 14px; }

/* on a dark ground */
#onug-pod .onug-pod-btn.on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
#onug-pod .onug-pod-btn.on-dark:hover,
#onug-pod .onug-pod-btn.on-dark:focus {
  background: transparent;
  border-color: var(--pod-green);
  color: var(--pod-green);
}

/* on a light ground */
#onug-pod .onug-pod-btn.on-light {
  background: transparent;
  color: var(--pod-text);
  border-color: var(--pod-text);
}
#onug-pod .onug-pod-btn.on-light:hover,
#onug-pod .onug-pod-btn.on-light:focus {
  background: transparent;
  border-color: var(--pod-green-dark);
  color: var(--pod-green-dark);
}

#onug-pod .onug-pod-listen { display: flex; flex-wrap: wrap; gap: 8px; }
#onug-pod .onug-pod-listen-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

/* ---------- episode card ---------- */

#onug-pod .onug-pod-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--pod-bg);
  border: 1px solid var(--pod-border);
  text-decoration: none;
  transition: box-shadow .18s, transform .18s;
}
#onug-pod .onug-pod-card:hover { box-shadow: 0 12px 32px rgba(15, 29, 42, 0.14); transform: translateY(-2px); }

/* Stretched overlay link. The card is never itself an <a>: a nested anchor
   makes the parser split the element and the layout falls apart. */
#onug-pod .onug-pod-card .card-link { position: absolute; inset: 0; z-index: 1; }
#onug-pod .onug-pod-card .card-link:focus-visible { outline: 3px solid var(--pod-green); outline-offset: 2px; }
#onug-pod .onug-pod-card .platforms,
#onug-pod .onug-pod-card .more { position: relative; z-index: 2; }

#onug-pod .onug-pod-card-media { aspect-ratio: 1; background: var(--pod-bg-alt); overflow: hidden; }
#onug-pod .onug-pod-card-media img { width: 100%; height: 100%; object-fit: cover; }

#onug-pod .onug-pod-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
#onug-pod .onug-pod-card-meta {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pod-muted);
}
#onug-pod .onug-pod-card-meta .ep { color: var(--pod-green-dark); }
#onug-pod .onug-pod-card h3 { font-size: 16px; font-weight: 600; line-height: 1.3; }
#onug-pod .onug-pod-card-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--pod-text-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#onug-pod .onug-pod-card-foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--pod-border);
  display: flex;
  align-items: center;
  gap: 16px;
}
#onug-pod .onug-pod-card-foot .platforms { display: flex; gap: 12px; }
#onug-pod .onug-pod-card-foot .platforms a { color: var(--pod-muted); line-height: 0; }
#onug-pod .onug-pod-card-foot .platforms a:hover { color: var(--pod-green-dark); }
#onug-pod .onug-pod-card-foot .platforms svg { width: 18px; height: 18px; }
#onug-pod .onug-pod-card-foot .more {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pod-green-dark);
  text-decoration: none;
}

/* =========================================================================
   LANDING
   ========================================================================= */

#onug-pod .onug-pod-hero {
  background: var(--pod-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* soft green bloom behind the artwork */
#onug-pod .onug-pod-hero::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 199, 62, 0.16), transparent 65%);
  pointer-events: none;
}
#onug-pod .onug-pod-hero-inner {
  position: relative;
  z-index: 1;
  padding: var(--pod-section) 0;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 40px;
  align-items: center;
}
#onug-pod .onug-pod-hero h1 {
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 24px;
}
#onug-pod .onug-pod-hero h1 em { font-style: normal; color: var(--pod-green); }
#onug-pod .onug-pod-hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 16px;
}
#onug-pod .onug-pod-hero-host {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
}
#onug-pod .onug-pod-hero-host strong { color: #fff; font-weight: 600; }

#onug-pod .onug-pod-hero-art {
  position: relative;
  display: block;
  width: fit-content;
  margin-left: auto;
  text-decoration: none;
}
#onug-pod .onug-pod-hero-art img {
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  transition: transform .2s;
}
#onug-pod .onug-pod-hero-art:hover img { transform: translateY(-4px); }
#onug-pod .onug-pod-hero-badge {
  position: absolute;
  top: -14px;
  left: 16px;
  z-index: 2;
  background: var(--pod-green);
  color: var(--pod-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
}
#onug-pod .onug-pod-hero-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  max-width: 440px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}
#onug-pod .onug-pod-hero-caption .go { color: var(--pod-green); white-space: nowrap; }

/* ---------- Cisco series carousel ---------- */

#onug-pod .onug-pod-featured { padding: var(--pod-section) 0; }
#onug-pod .onug-pod-car-head { margin-bottom: 40px; }
#onug-pod .onug-pod-car-head h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; line-height: 1.15; margin-bottom: 8px; }
#onug-pod .onug-pod-car-sub { color: var(--pod-text-2); max-width: 560px; }

#onug-pod .onug-pod-car-body { display: flex; align-items: center; gap: 16px; }
#onug-pod .onug-pod-car-nav {
  flex: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--pod-border);
  background: var(--pod-bg);
  color: var(--pod-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, color .15s;
}
#onug-pod .onug-pod-car-nav:hover:not(:disabled) { border-color: var(--pod-green-dark); color: var(--pod-green-dark); }
#onug-pod .onug-pod-car-nav:disabled { opacity: 0.3; cursor: default; }
#onug-pod .onug-pod-car-nav svg { width: 20px; height: 20px; }

#onug-pod .onug-pod-car-viewport { overflow: hidden; flex: 1; min-width: 0; }
#onug-pod .onug-pod-car-track { display: flex; gap: 24px; transition: transform .35s ease; }
#onug-pod .onug-pod-car-track > * { flex: 0 0 calc((100% - 72px) / 4); }

#onug-pod .onug-pod-car-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
#onug-pod .onug-pod-car-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--pod-border);
  cursor: pointer;
}
#onug-pod .onug-pod-car-dots button.active { background: var(--pod-green); }

/* ---------- toolbar ---------- */

#onug-pod .onug-pod-toolbar {
  background: var(--pod-bg-alt);
  border-top: 1px solid var(--pod-border);
  border-bottom: 1px solid var(--pod-border);
}
#onug-pod .onug-pod-toolbar-inner { display: flex; align-items: center; gap: 24px; padding: 24px 0; flex-wrap: wrap; }
#onug-pod .onug-pod-count {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pod-text-2);
}
#onug-pod .onug-pod-count strong { color: var(--pod-text); }

#onug-pod .onug-pod-search { margin-left: auto; flex: 1 1 280px; max-width: 420px; position: relative; }
#onug-pod .onug-pod-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--pod-muted);
}
#onug-pod .onug-pod-search input {
  width: 100%;
  height: 44px;
  padding: 0 16px 0 44px;
  border: 1px solid var(--pod-border);
  border-radius: 0;
  background: var(--pod-bg);
  font-family: inherit;
  font-size: 15px;
  color: var(--pod-text);
}
#onug-pod .onug-pod-search input:focus { outline: 2px solid var(--pod-green); outline-offset: -1px; }

/* ---------- grid ---------- */

#onug-pod .onug-pod-grid-section { padding: var(--pod-section) 0; background: var(--pod-bg); }
#onug-pod .onug-pod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 24px; }
#onug-pod .onug-pod-empty { text-align: center; color: var(--pod-muted); padding: 60px 0; font-size: 18px; }
#onug-pod .onug-pod-load { text-align: center; margin-top: 60px; }

/* ---------- CTA island ---------- */

#onug-pod .onug-pod-island {
  background: var(--pod-dark);
  color: #fff;
  padding: var(--pod-section) 0;
  text-align: center;
}
#onug-pod .onug-pod-island h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}
#onug-pod .onug-pod-island p { color: rgba(255, 255, 255, 0.75); margin-bottom: 40px; }
#onug-pod .onug-pod-island .onug-pod-listen { justify-content: center; }

/* =========================================================================
   EPISODE PAGE
   ========================================================================= */

#onug-pod .onug-pod-ep-hero {
  background: var(--pod-dark);
  color: #fff;
  padding: clamp(32px, 5vw, 64px) 0 clamp(40px, 6vw, 72px);
}
#onug-pod .onug-pod-ep-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: 48px;
  align-items: center;
}
#onug-pod .onug-pod-crumb {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}
#onug-pod .onug-pod-crumb a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
#onug-pod .onug-pod-crumb a:hover { color: var(--pod-green); }
#onug-pod .onug-pod-ep-meta {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
#onug-pod .onug-pod-ep-meta .ep { color: var(--pod-green); }
#onug-pod .onug-pod-ep-hero h1 {
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 16px;
}
#onug-pod .onug-pod-guest { color: rgba(255, 255, 255, 0.75); max-width: 720px; margin-bottom: 40px; }
#onug-pod .onug-pod-ep-hero .onug-pod-listen-label { margin: 32px 0 12px; }
#onug-pod .onug-pod-ep-hero .onug-pod-listen { margin-top: 0; }

/* click-to-load player: no iframe until the viewer asks for one */
#onug-pod .onug-pod-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
  border: 0;
  padding: 0;
  display: block;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
#onug-pod .onug-pod-player img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
#onug-pod .onug-pod-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
#onug-pod .onug-pod-player .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
#onug-pod .onug-pod-player .play span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--pod-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s;
}
#onug-pod .onug-pod-player:hover .play span { transform: scale(1.07); }
#onug-pod .onug-pod-player .play svg { width: 34px; height: 34px; fill: var(--pod-dark); margin-left: 5px; }

#onug-pod .onug-pod-ep-art { box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45); }

#onug-pod .onug-pod-body { padding: var(--pod-section) 0; }
#onug-pod .onug-pod-section { margin-bottom: 60px; }
#onug-pod .onug-pod-section h2 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; line-height: 1.2; margin-bottom: 24px; }
#onug-pod .onug-pod-section p { color: var(--pod-text-2); margin-bottom: 16px; }

#onug-pod .onug-pod-topics { list-style: none; counter-reset: pod-topic; }
#onug-pod .onug-pod-topics li {
  counter-increment: pod-topic;
  padding: 14px 0 14px 56px;
  position: relative;
  border-bottom: 1px solid var(--pod-border);
  color: var(--pod-text-2);
}
#onug-pod .onug-pod-topics li::before {
  content: counter(pod-topic, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 14px;
  font-weight: 700;
  font-size: 15px;
  color: var(--pod-green-dark);
}
#onug-pod .onug-pod-topics li strong { color: var(--pod-text); font-weight: 600; }

#onug-pod blockquote.onug-pod-quote { border-left: 3px solid var(--pod-green); padding: 8px 0 8px 24px; margin: 0 0 24px; }
#onug-pod blockquote.onug-pod-quote p { font-size: 20px; font-weight: 500; line-height: 1.45; color: var(--pod-text); margin-bottom: 8px; }
#onug-pod blockquote.onug-pod-quote cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pod-muted);
}

#onug-pod .onug-pod-faq { border: 1px solid var(--pod-border); margin-bottom: 8px; }
#onug-pod .onug-pod-faq summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
#onug-pod .onug-pod-faq summary::-webkit-details-marker { display: none; }
#onug-pod .onug-pod-faq summary::after { content: "+"; color: var(--pod-green-dark); font-size: 20px; font-weight: 600; line-height: 1; }
#onug-pod .onug-pod-faq[open] summary::after { content: "\2013"; }
#onug-pod .onug-pod-faq p { padding: 0 20px 16px; color: var(--pod-text-2); margin: 0; }

#onug-pod .onug-pod-transcript { border: 1px solid var(--pod-border); background: var(--pod-bg-alt); }
#onug-pod .onug-pod-transcript > summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
#onug-pod .onug-pod-transcript > summary::-webkit-details-marker { display: none; }
#onug-pod .onug-pod-transcript > summary::after { content: "+"; color: var(--pod-green-dark); font-size: 22px; font-weight: 600; }
#onug-pod .onug-pod-transcript[open] > summary::after { content: "\2013"; }
#onug-pod .onug-pod-transcript-inner { padding: 0 24px 24px; max-height: 560px; overflow-y: auto; }
#onug-pod .onug-pod-transcript-inner p { margin-bottom: 14px; color: var(--pod-text-2); font-size: 15px; }

#onug-pod .onug-pod-provenance {
  font-size: 13px;
  color: var(--pod-muted);
  border-top: 1px solid var(--pod-border);
  padding-top: 16px;
}

#onug-pod .onug-pod-related { background: var(--pod-bg-alt); padding: var(--pod-section) 0; }
#onug-pod .onug-pod-related h2 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; margin-bottom: 32px; }
#onug-pod .onug-pod-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* =========================================================================
   CISCO SERIES PAGE
   Same system, Cisco blue as the accent.
   ========================================================================= */

#onug-pod.onug-pod-cisco { --pod-frame: min(1240px, 100% - 48px); }

#onug-pod .onug-pod-cisco-hero {
  background: var(--pod-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#onug-pod .onug-pod-cisco-hero::before {
  content: "";
  position: absolute;
  right: -220px;
  top: -220px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 159, 217, 0.22), transparent 62%);
  pointer-events: none;
}
#onug-pod .onug-pod-cisco-hero::after {
  content: "";
  position: absolute;
  left: -260px;
  bottom: -320px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 199, 62, 0.10), transparent 60%);
  pointer-events: none;
}
#onug-pod .onug-pod-cisco-hero .onug-pod-hero-inner { padding: 40px 0 48px; gap: 48px; }

#onug-pod .onug-pod-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--pod-cisco);
  margin-bottom: 16px;
}
#onug-pod .onug-pod-eyebrow::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: var(--pod-cisco);
  margin-top: 8px;
}
#onug-pod .onug-pod-cisco-hero h1 {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 900px;
  color: #fff;
  margin-bottom: 24px;
}
#onug-pod .onug-pod-cisco-hero h1 em { font-style: normal; color: var(--pod-cisco); }
#onug-pod .onug-pod-cisco-sub {
  font-size: 19px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin-bottom: 28px;
}

#onug-pod .onug-pod-lockup { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
#onug-pod .onug-pod-lockup img.onug { height: 34px; width: auto; }
/* the Cisco mark ships as a blue PNG; knock it to white for the dark hero */
#onug-pod .onug-pod-lockup img.cisco { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
#onug-pod .onug-pod-lockup .x { font-size: 20px; font-weight: 300; color: rgba(255, 255, 255, 0.45); }

#onug-pod .onug-pod-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
#onug-pod .onug-pod-stat { padding: 12px 40px 12px 0; margin-right: 40px; }
#onug-pod .onug-pod-stat b { display: block; font-size: 28px; font-weight: 700; line-height: 1.1; color: #fff; }
#onug-pod .onug-pod-stat span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}

#onug-pod .onug-pod-ctas { display: flex; flex-wrap: wrap; gap: 8px; }

#onug-pod .onug-pod-cisco .onug-pod-hero-badge { background: var(--pod-cisco); color: #fff; }
#onug-pod .onug-pod-cisco-hero .onug-pod-hero-art img { max-width: 380px; }
#onug-pod .onug-pod-cisco-hero .onug-pod-hero-caption { max-width: 380px; margin-top: 14px; }

/* ---------- series stack ---------- */

#onug-pod .onug-pod-stack { padding: 48px 0 clamp(48px, 8vw, 100px); }
#onug-pod .onug-pod-stack-head { display: flex; align-items: baseline; gap: 24px; margin-bottom: 8px; }
#onug-pod .onug-pod-stack-head h2 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 700; }
#onug-pod .onug-pod-stack-head .rule { flex: 1; height: 1px; background: var(--pod-border); }
#onug-pod .onug-pod-stack-head .count {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pod-muted);
  white-space: nowrap;
}

#onug-pod .onug-pod-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--pod-border);
}
#onug-pod .onug-pod-row-art { position: relative; display: block; }
#onug-pod .onug-pod-row-art img { width: 100%; aspect-ratio: 1; object-fit: cover; box-shadow: 0 10px 28px rgba(15, 29, 42, 0.16); }
#onug-pod .onug-pod-row-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 29, 42, 0);
  transition: background .15s;
}
#onug-pod .onug-pod-row-play svg {
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--pod-green);
  border-radius: 50%;
  padding: 12px;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .15s, transform .15s;
}
#onug-pod .onug-pod-row-art:hover .onug-pod-row-play { background: rgba(15, 29, 42, 0.35); }
#onug-pod .onug-pod-row-art:hover .onug-pod-row-play svg { opacity: 1; transform: scale(1); }

#onug-pod .onug-pod-row-meta {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pod-muted);
  margin-bottom: 8px;
}
#onug-pod .onug-pod-row h3 { font-size: clamp(20px, 2.2vw, 27px); font-weight: 700; line-height: 1.2; margin-bottom: 8px; }
#onug-pod .onug-pod-row h3 a { text-decoration: none; }
#onug-pod .onug-pod-row h3 a:hover { color: var(--pod-cisco); }
#onug-pod .onug-pod-row-guest { font-size: 14px; font-weight: 500; color: var(--pod-text-2); margin-bottom: 12px; }
#onug-pod .onug-pod-row-hook { font-size: 16px; color: var(--pod-text-2); max-width: 680px; margin-bottom: 20px; }
#onug-pod .onug-pod-row-actions { display: flex; flex-wrap: wrap; gap: 8px; }
#onug-pod .onug-pod-btn.ghost { background: transparent; border-color: var(--pod-text); color: var(--pod-text); }
#onug-pod .onug-pod-btn.ghost:hover { border-color: var(--pod-cisco); color: var(--pod-cisco); background: transparent; }

/* ---------- Cisco CTA ---------- */

#onug-pod .onug-pod-cisco-cta { position: relative; overflow: hidden; }
#onug-pod .onug-pod-cisco-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -340px;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 159, 217, 0.16), transparent 62%);
  pointer-events: none;
}
#onug-pod .onug-pod-cisco-cta > .onug-pod-frame { position: relative; z-index: 1; }
#onug-pod .onug-pod-cta-lockup { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 32px; }
#onug-pod .onug-pod-cta-lockup img.onug { height: 26px; width: auto; }
#onug-pod .onug-pod-cta-lockup img.cisco { height: 34px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
#onug-pod .onug-pod-cta-lockup .x { font-weight: 300; color: rgba(255, 255, 255, 0.45); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (min-width: 1025px) and (max-width: 1200px) {
  #onug-pod .onug-pod-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  #onug-pod .onug-pod-grid { grid-template-columns: repeat(2, 1fr); }
  #onug-pod .onug-pod-hero-inner { grid-template-columns: 1fr; }
  #onug-pod .onug-pod-hero-art { display: none; }
  #onug-pod .onug-pod-car-track > * { flex-basis: calc((100% - 24px) / 2); }
  #onug-pod .onug-pod-ep-grid { grid-template-columns: 1fr; gap: 32px; }
  #onug-pod .onug-pod-ep-media { order: 2; }
  #onug-pod .onug-pod-related-grid { grid-template-columns: repeat(2, 1fr); }
  #onug-pod .onug-pod-row { grid-template-columns: 180px 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  #onug-pod .onug-pod-car-track > * { flex-basis: 100%; }
  #onug-pod .onug-pod-car-body { gap: 8px; }
  #onug-pod .onug-pod-car-nav { width: 40px; height: 40px; }
  #onug-pod .onug-pod-related-grid { grid-template-columns: 1fr; }
  #onug-pod .onug-pod-stat { padding-right: 24px; margin-right: 24px; }
  #onug-pod .onug-pod-row { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  #onug-pod .onug-pod-row-art { max-width: 280px; }
  #onug-pod .onug-pod-player .play span { width: 60px; height: 60px; }
}

@media (max-width: 480px) {
  #onug-pod { font-size: 16px; --pod-frame: min(1320px, 100% - 32px); }
  #onug-pod .onug-pod-grid { grid-template-columns: 1fr; }
  #onug-pod .onug-pod-toolbar-inner { gap: 16px; }
  #onug-pod .onug-pod-search { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  #onug-pod .onug-pod-car-track,
  #onug-pod .onug-pod-card,
  #onug-pod .onug-pod-hero-art img { transition: none; }
  #onug-pod .onug-pod-card:hover { transform: none; }
  #onug-pod .onug-pod-hero-art:hover img { transform: none; }
}
