@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

@font-face {
  font-family: "Zodiak";
  src: url("https://tpmd-s3-public.s3.us-west-2.amazonaws.com/zodiak-font/Zodiak-Variable.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

/* ================= DESIGN VERIABLES ================= */
:root {
  --font-body: 'Poppins', sans-serif;
  --font-heading: 'Zodiak', serif;

  --color-primary: #060B13;
  --color-secondary: #0A1524;
  --color-accent: #CC4400;
  --color-text-light: #ffffff;
  --color-muted: #8D8D8D;
  --color-light-grey: #CACACA;

  --color-primary-hover: #09111e;
  --color-secondary-hover: #0b192e;
  --color-accent-hover: #e64d00;

  --color-primary-rgb: 6, 11, 19;
  --color-secondary-rgb: 10, 21, 36;

  --container-padding: clamp(16px, 4vw, 40px);
  --section-padding: clamp(50px, 8vw, 80px);
  --block-spacing: clamp(24px, 4vw, 48px);

  --h1-size: clamp(28px, 3vw, 40px);
  --h1-line: clamp(36px, 4vw, 60px);
  --h2-size: clamp(24px, 2.5vw, 32px);
  --body-size: 16px;

  --container-small: clamp(720px, 90vw, 1024px);
  --container-default: clamp(960px, 92vw, 1320px);
  --container-large: clamp(1200px, 96vw, 1710px);
  --container-edge: 100%;

  --radius_default: 8px;

  --article-tabs-height: 80px;
  --icon-play: url("../../images/ic_play_circle.svg");

  --linear-gradient180: linear-gradient(180deg, rgba(6, 11, 19, 0.15) 0%, rgba(6, 11, 19, 0.85) 100%);

  --hero-overlay-gradient-right: linear-gradient(to right,
      rgba(6, 11, 19, 1) 0%,
      rgba(6, 11, 19, 0.98) 4.16667%,
      rgba(6, 11, 19, 0.957) 8.33333%,
      rgba(6, 11, 19, 0.918) 15%,
      rgba(6, 11, 19, 0.835) 25%,
      rgba(6, 11, 19, 0.75) 31.6667%,
      rgba(6, 11, 19, 0.25) 68.3333%,
      rgba(6, 11, 19, 0.17) 75%,
      rgba(6, 11, 19, 0.082) 85%,
      rgba(6, 11, 19, 0.043) 91.6667%,
      rgba(6, 11, 19, 0.02) 95.8333%,
      rgba(6, 11, 19, 0) 100%);

  
  /* Spacings */
  --space-xxs: clamp(6px, 1vw, 8px);
  --space-xs: clamp(10px, 1.5vw, 12px);
  --space-sm: clamp(16px, 2vw, 20px);
  --space-md: clamp(24px, 3vw, 32px);
  --space-lg: clamp(32px, 4vw, 48px);
  --space-xl: clamp(48px, 6vw, 80px);
  --space-xxl: clamp(64px, 8vw, 96px);

}

/* ================= BASE ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--color-primary);
  color: var(--color-text-light);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

p,
li {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-wrap: pretty;
  letter-spacing: 0;
  color: var(--color-light-grey);
}

p:empty {
  display: none;
}

ul {
  list-style: none;
  margin: 0;
}

.utility-nav {
  height: 56px;
  background: var(--color-secondary);
}

/* ================= Colors ================= */
.text-color-dark {
  color: var(--dark-text-color);
}

.text-color-light {
  color: var(--light-text-color);
}

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

.secondary-color {
  color: var(--color-secondary);
}

.accent-color {
  color: var(--accent-color);
}

/* ================= CONTAINERS ================= */
.container-edge,
.container-large,
.container,
.container-small {
  margin-inline: auto;
  padding-inline: var(--container-padding);
  width: 100%;
}

.container-edge {
  max-width: 100%;
  padding-inline: 0;
}

.container-small {
  max-width: var(--container-small);
}

.container {
  max-width: var(--container-default);
  position: relative;
}

.container-large {
  max-width: var(--container-large);
}



/* ================= TYPOGRAPHY ================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
}

h1 {
  font-size: var(--h1-size);
  line-height: var(--h1-line);
}

h2 {
  font-size: var(--h2-size);
}

/* ================= LAYOUT ================= */
.section {
  padding: var(--space-xl) 0;
}

/* Section spacing modifiers */
.section-xxs { padding-block: var(--space-xxs); }
.section-xs  { padding-block: var(--space-xs); }
.section-sm  { padding-block: var(--space-sm); }
.section-md  { padding-block: var(--space-md); }
.section-lg  { padding-block: var(--space-lg); }
.section-xl  { padding-block: var(--space-xl); }
.section-xxl { padding-block: var(--space-xxl); }
.section-no-ptb { padding-top: 0 !important; padding-bottom: 0 !important; }
.section-no-pt { padding-top: 0 !important; }
.section-no-pb { padding-bottom: 0 !important; }
.section-lg-pb { padding-top: var(--space-lg) !important; }

.content-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-header-center .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-header-center .inner-hero-content {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 20px);
}

/*  SECTION CENTER HEADER  */
.section-header-center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.section-header-center>*+* {
  margin-top: clamp(12px, 2vw, 20px);
}

.grid {
  display: grid;
  gap: var(--grid-gap, clamp(24px, 3vw, 40px));
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.card-description {
  flex: 1;
}

/* ================= ALIGNMENTS ================= */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}


/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(8px, 1vw, 14px) clamp(14px, 2vw, 28px);
  font-size: clamp(12px, 1vw, 16px);
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 8px;
  position: relative;
  color: var(--color-text-light);
  border: none;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, transform 75ms ease;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-text-light),
    0 0 0 4px var(--color-secondary);
}

.btn:active {
  transform: translateY(1px);
}

.btn[disabled],
.btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}


.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-light);
}

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

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-text-light);
}

.btn-secondary:hover {
  background: var(--color-secondary-hover);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-text-light);
}

.btn-accent:hover {
  background: var(--color-accent-hover);
}

.btn-outline {
  border: 1px solid currentColor;
  background: transparent;
}

.btn-outline:hover {
  color: var(--color-muted);
  background: rgba(0, 0, 0, .05);
}

.btn-outline-icon {
  position: relative;
}

.btn-outline-icon span {
  width: 40px;
  height: 40px;
}

.btn-link {
  color: var(--color-text-light);
}

.btn-card {
  width: fit-content;
  padding-left: 0;
  position: relative;
}

.btn-play-icon {
  position: relative;
}

.btn-play-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--icon-play) center / contain no-repeat;
  display: inline-block;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Arrow */
.btn-arrow::after {
  content: "";
  width: 20px;
  height: 20px;
  transform: translateX(0);
  transition: transform 200ms ease;
  background: url("../../images/ic_chevron_right.svg") center / contain no-repeat;
  display: inline-block;
}

/* Hover / focus */
.btn-arrow:hover::after,
.btn-arrow:focus-visible::after {
  transform: translateX(6px);
}

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-primary);
}

a.site-logo {
  width: 182px;
  display: inline-block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 80px;
}

.main-nav ul {
  list-style: none;
  display: flex;
}

.main-nav li a {
  padding: 0 clamp(16px, 2.3vw, 50px);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  transition: all 0.5s ease;
}

.main-nav ul:hover li a {
  color: var(--color-muted);
}

.main-nav ul:hover li a:hover {
  color: var(--color-text-light);
}

.section-top-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

/* ================= MOBILE MENU ================= */
.menu {
  display: flex;
}

button.menu-close-btn {
  display: none;
}

.toggle-menu-subscribe {
  display: none;
}

/* Desktop / default nav layout */
.navmenu-wrap {
  display: flex;
  align-items: center;
}

/* Desktop menu */
.menu {
  display: flex;
  gap: 0;
}

/* Hide mobile-only elements on desktop */
.menu-close-btn,
.toggle-menu-subscribe {
  display: none;
}

.nav-overlay {
  display: none;
}

.mobile-only-btn{
  display: none;
}


/* ====  Toggle Menu Wrapper  ==== */
.nav-actions {
  display: flex;
  gap: 16px;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 35px;
  height: 35px;
  display: none;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  position: absolute;
  left: 4px;
  right: 4px;
  height: 2px;
  transition: transform 300ms ease, opacity 200ms ease;
}

body.menu-open {
  overflow: hidden;
}

.nav-toggle span:nth-child(1) {
  top: 5px;
}

.nav-toggle span:nth-child(2) {
  top: 12px;
}

.nav-toggle span:nth-child(3) {
  top: 19px;
}

/* OPEN STATE */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


/* ================= FOOTER ================= */


/* =========================================================
   HERO SECTION
========================================================= */

.hero {
  position: relative;
  width: 100%;
  height: 640px;
  min-height: 640px;
  background-color: var(--color-primary);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

/* Overlay gradient exactly like Figma */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A1524B8;
}

.hero .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-header-center .inner-hero-content {
  text-align: center;
  max-width: 720px;
}


/* Content wrapper */
.hero-content {
  text-align: center;
  padding-inline: clamp(16px, 4vw, 40px);
  max-width: 1024px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 400;
  color: #ffffff;
  font-size: var(--h1-size);
  line-height: var(--h1-line);
  letter-spacing: 0;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: clamp(20px, 2.4vw, 24px);
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-light-grey);
}


.hero-actions {
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  justify-content: center;
  flex-wrap: wrap;
}


/* =========================================================
   LATEST STORIES
========================================================= */

.latest-stories {
  background-color: var(--color-primary);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: clamp(36px, 4vw, 56px);
  margin-bottom: clamp(8px, 1.5vw, 12px);
  color: var(--color-text-light);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: 24px;
  color: var(--color-muted);
}

/* Grid */
.latest-stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

/* Card */
.story-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-image {
  width: 100%;
  height: 162px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0;
}

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

/* Content */
.story-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.story-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: clamp(24px, 2.2vw, 28px);
  color: var(--color-text-light);
}

.story-episode {
  color: var(--color-text-light);
  font-size: clamp(14px, 1vw, 16px);
  line-height: clamp(20px, 2vw, 24px);
}

.story-excerpt {
  font-size: var(--body-size);
  line-height: 24px;
  color: var(--color-muted);
}

/* Link */
.story-link {
  margin-top: 4px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-text-light);
}

.story-category {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 18px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: flex;
  gap: 10px;
  flex: 1;
}

.story-category span {
  display: inline-block;
  border: 1px solid var(--color-muted);
  padding: 8px;
  border-radius: 8px;
  gap: 10px;
  height: fit-content;
}

/* CTA */
.latest-stories-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 6vw, 72px);
}


/* =========================================================
   EXPLORE CATEGORIES
========================================================= */

/* Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

/* Card */
.category-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  background-color: var(--color-secondary);
}

/* Image */
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

/* Overlay */
.category-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  inset: 0;
  background: #060B13A3;
}

.category-content-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(20px, 2.5vw, 24px);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

/* Title */
.category-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  line-height: clamp(24px, 2.8vw, 32px);
  color: #ffffff;
}

.category-excerpt {
  font-size: var(--body-size);
  line-height: 24px;
  color: #ffffff;
}

/* Arrow */
.category-arrow {
  font-size: 20px;
  width: 48px;
  height: 48px;
  color: #ffffff;
  transform: translateX(0);
  transition: transform 300ms ease;
}

/* Hover effects */
/* .category-card:hover img {
  transform: scale(1.05);
} */

.category-card:hover .category-arrow {
  transform: translateX(6px);
}


/* =========================================================
   FEATURED INTERVIEW (IMAGE + CONTENT OVERLAY)
========================================================= */
section.keep-exploring {
  padding-bottom: var(--space-xl);
}

.featured-interview {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.featured-interview-container {
  position: relative;
  width: 100%;
  padding-right: 40px;
  padding-left: 40px;
  border-radius: 16px;
  overflow: hidden;
}

/* Background image */
.featured-interview-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.featured-interview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.featured-interview-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  background: var(--linear-gradient180);
}

.featured-content-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Content */
.featured-interview-content {
  max-width: 720px;
  padding-inline: clamp(16px, 4vw, 40px);
}

/* Title */
.featured-title {
  font-family: var(--font-heading);
  font-weight: 400;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: clamp(32px, 4vw, 48px);
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

/* Description */
.featured-description {
  font-size: var(--body-size);
  line-height: 24px;
  color: var(--color-muted);
  max-width: 520px;
  margin-bottom: clamp(24px, 4vw, 40px);
}

/* Actions */
.featured-actions {
  display: flex;
  gap: 16px;
}


/* =========================================================
   HIGHLIGHTS (VIMEO READY + WATCH CTA)
========================================================= */

.highlights {
  background-color: var(--color-primary);
}

.highlights-header {
  margin-bottom: clamp(32px, 5vw, 56px);
}

/* Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

/* Card */
.highlight-card {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 16px);
}

/* Thumbnail */
.highlight-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background-color: var(--color-secondary);
}

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

/* Body */
.highlight-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
}

/* Title */
.highlight-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}

.highlight-title a {
  color: var(--color-text-light);
  text-decoration: none;
}

/* Description */
.highlight-description {
  font-size: 15px;
  line-height: 22px;
  color: var(--color-muted);
}

/* Watch CTA */
/* .highlight-watch {
  margin-top: 4px;
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.highlight-watch:hover {
  text-decoration: underline;
} */


/* =========================================================
   SERIES (CMS / API READY)
========================================================= */

/* Header */
.series-header {
  margin-bottom: clamp(32px, 5vw, 56px);
}

/* Grid */
.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, max-content));
  gap: clamp(24px, 3vw, 40px);
  justify-content: center;
}


/* Card */
.series-card {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 16px);
  width: 100%;
  max-width: 320px;
}

/* Thumbnail */
.series-thumb {
  display: block;
  width: 100%;
  max-height: 162px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 12px;
  background-color: var(--color-secondary);
}

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

/* Body */
.series-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-subheading {
  color: var(--color-text-light);
}

/* Title */
.series-title {
  font-family: var(--font-body);
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}

.series-title a {
  color: var(--color-text-light);
  text-decoration: none;
}

/* Description */
.series-description {
  font-size: 15px;
  line-height: 22px;
  color: var(--color-muted);
}

/* Read More */
.series-link {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  width: fit-content;
}

.series-link:hover {
  text-decoration: underline;
}


/* =========================================================
   ABOUT US (VIDEO LED)
========================================================= */

.about-us {
  background-color: var(--color-primary);
}

/* Section header */
.about-us-header {
  margin-bottom: clamp(24px, 4vw, 40px);
  text-align: center;
}

/* Media wrapper */
.about-us-media {
  position: relative;
  width: 100%;
  height: clamp(420px, 65vh, 720px);
  overflow: hidden;
  background-color: var(--color-secondary);
}

/* Video */
.about-us-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.about-us-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--linear-gradient180);
}

/* Overlay content */
.about-us-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
  text-align: center;
}

/* Overlay title */
.about-us-overlay-title {
  font-family: var(--font-heading);
  font-weight: 400;
  color: #ffffff;

  font-size: clamp(22px, 3vw, 32px);
  line-height: clamp(30px, 4vw, 44px);
}

/* Play button */
.about-us-play-btn {
  width: clamp(56px, 6vw, 72px);
  height: clamp(56px, 6vw, 72px);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-color: var(--color-accent);
  color: #ffffff;
  font-size: clamp(20px, 2.5vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease;
}

.about-us-play-btn:hover {
  transform: scale(1.05);
}

/* =========================================================
   ABOUT US – THREE COLUMN CONTENT
========================================================= */
.about-us-below {
  margin-top: clamp(48px, 6vw, 80px);
  padding-inline: clamp(16px, 4vw, 40px);
  max-width: 1320px;
  margin-inline: auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 5vw, 56px);
}

/* Columns */
.about-us-columns {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  text-align: center;
}

/* Column text */
.about-us-col .iconwrap {
  width: 72px;
  height: 72px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  margin: 10px auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-us-col h3 {
  font-family: var(--font-heading);
  color: var(--color-text-light);
  font-size: clamp(20px, 2.5vw, 28px);
  margin: 20px 0;
}

.about-us-col p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: clamp(22px, 2vw, 26px);
  color: var(--color-muted);
}

/* CTA */
.about-us-cta {
  margin-top: clamp(8px, 2vw, 16px);
}



/* =========================================================
   MARKETS
========================================================= */
/* Grid */
.markets-grid {
  margin-top: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

/* Card */
.market-card {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(260px, 35vw, 420px);
  overflow: hidden;
  border-radius: clamp(12px, 1.5vw, 16px);
  text-decoration: none;
  color: #ffffff;
}

/* Image */
.market-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

/* Overlay */
.market-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 32px);
  background: var(--linear-gradient180);
}

/* Title */
.market-card-title {
  font-family: var(--font-heading);
  font-weight: 400;

  font-size: clamp(22px, 3vw, 32px);
  line-height: clamp(28px, 3.5vw, 40px);
}

/* Arrow */
.market-card-arrow {
  font-size: clamp(20px, 2.5vw, 28px);
  transition: transform 200ms ease;
}

/* Hover */
.market-card:hover img {
  transform: scale(1.05);
}

.market-card:hover .market-card-arrow {
  transform: translateX(4px);
}


/* =========================================================
   MERCH
========================================================= */

.merch {
  background-color: var(--color-primary);
}

/* Grid */
.merch-grid {
  margin-top: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

/* Card */
.merch-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #ffffff;
}

.merch-card-img {
  background-color: var(--color-secondary);
  width: clamp(200px, 22vw, 288px);
  height: clamp(200px, 22vw, 288px);
  overflow: hidden;
  border-radius: var(--radius_default);
  position: relative;
}

/* Image */
.merch-card .merch-card-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: clamp(12px, 1.5vw, 16px);
  position: relative;
  top: clamp(24px, 6vw, 130px);
  left: clamp(-24px, -6vw, -130px);
}

/* Body */
.merch-card-body {
  margin-top: clamp(12px, 2vw, 16px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.merch-info {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #4D4D4D;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.merch-card-price small {
  color: var(--color-muted);
  display: inline;
  margin-right: 3px;
}

/* Title */
.merch-card-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--body-size);
  line-height: 24px;
}

/* Meta */
.merch-card-meta {
  font-size: var(--body-size);
  line-height: 20px;
  color: var(--color-muted);
}

.merch-size {
  color: var(--color-muted);
}

/* Price */
.merch-card-price {
  margin-top: 4px;
  font-size: var(--body-size);
  font-weight: 500;
}

/* Hover */
.merch-card:hover img {
  opacity: 0.92;
}

.merch-stock-status {
  margin-top: 6px;
  font-size: var(--body-size);
  color: var(--color-muted);
  position: relative;
  display: flex;
  flex-direction: row;
}

.merch-stock-status span.merch-stock-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}



/* =========================================================
   NEWSLETTER
========================================================= */
.newsletter {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 60vh, 620px);
  padding: 0;
  overflow: hidden;
}

/* Background image */
.newsletter-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

/* Gradient overlay */
.newsletter-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(360deg, rgba(10, 21, 36, 0.72) 0%, var(--color-primary) 86.64%);
}

/* Content */
.newsletter-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  padding-inline: clamp(16px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1024px;
  margin-inline: auto;
  gap: clamp(16px, 3vw, 24px);
}

/* Title */
.newsletter-title {
  font-family: var(--font-heading);
  font-weight: 400;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 40px);
  line-height: clamp(36px, 5vw, 56px);
}

/* Text */
.newsletter-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--body-size);
  line-height: 24px;
  max-width: 1024px;
}

/* Form */
.newsletter-form {
  margin-top: clamp(16px, 3vw, 24px);
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 570px;
}
 
/* Newsletter input */
.newsletter-form input {
  flex: 1 1 auto;
  height: 48px;
  padding: 0 16px;
  line-height: 48px;
  background-color: var(--color-primary);
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}


/* Focus */
.newsletter-form input:focus {
  outline: none;
  border-color: #ffffff;
}

/* Button */
.newsletter-form button {
  height: 48px;
  padding-inline: 24px;
  outline: 0;
  border: 0;
}


/* =========================================================
   FOOTER (SVG MATCHED)
========================================================= */
.site-footer {
  padding: 64px var(--container-padding);
  background-color: var(--color-secondary);
  color: #ffffff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 20px;
}

.footer-left {
  display: flex;
  justify-content: space-between;
  width: 25%;
}

/* Shared inner width (matches SVG padding: 88px) */
.footer-inner {
  width: 100%;
  max-width: var(--container-large);
  margin-inline: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

/* ================= TOP ================= */

.footer-main {
  height: 364px;
  display: flex;
  align-items: flex-start;
  padding-top: 40px;
}

/* Brand */
.footer-brand img {
  height: 40px;
}

.footer-inner nav.footer-nav {
  display: flex;
  flex-direction: row;
  width: 50%;
}

/* Nav */
.footer-nav ul.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin: 0;
  padding: 0;
  width: 100%;
  justify-content: space-between;
}

.footer-nav a {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.footer-right .footer-connect {
  text-align: right;
}

.footer-right ul.footer-menu li.menu-item.parent-menu>a {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: var(--body-size);
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  color: var(--color-text-light);
}

.footer-right ul.footer-menu li.menu-item.parent-menu>a:hover{
  text-decoration: none;
  cursor: default;
}

.footer-right ul.footer-menu li.menu-item a {
  color: var(--color-text-light);
  transition: all 0.5s ease;
  text-decoration: none;
}

.footer-right ul.footer-menu:hover li ul.submenu li.submenu-item a{
  color: var(--color-muted);
}

.footer-right ul.footer-menu:hover li ul.submenu li.submenu-item a:hover{
  color: var(--color-text-light);
}

.footer-nav ul.footer-menu li.parent-menu>a {
  color: var(--color-text-light);
}

.footer-right .footer-social-wrap ul.footer-menu li.parent-menu ul.submenu li.submenu-item a {
  border: 1px solid var(--color-muted);
  border-radius: 6px;
  padding: 11px 23px;
  margin-right: 6px;
  display: inline-block;
  text-transform: uppercase;
}

.footer-right .footer-social-wrap ul.footer-menu li.parent-menu ul.submenu li.submenu-item a:hover{
  color: var(--color-muted);
}

.footer-nav ul.footer-menu ul.submenu li.submenu-item {
  margin-bottom: 10px;
}

.footer-nav ul.footer-menu ul.submenu li.submenu-item.external-link {
    position: relative;
}

.footer-nav ul.footer-menu ul.submenu li.submenu-item.external-link a{
  position: relative;
}

.footer-nav ul.footer-menu ul.submenu li.submenu-item.external-link a::after{
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url("../../images/ic_external.svg") center / contain no-repeat;
  opacity: 0.7;
  transition: all 0.5s ease;
}

.footer-right ul.footer-menu:hover ul.submenu li.submenu-item.external-link:hover a::after{
  opacity: 1;
}

/* ================= DIVIDER ================= */

.footer-divider {
  height: 1px;
  background-color: #4D4D4D;
  margin: 20px 0;
}

/* ================= BOTTOM ================= */

.footer-bottom {
  padding-block: 16px;
}

.footer-bottom-inner {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}


.footer-copyright {
  color: var(--color-muted);
  font-size: 12px;
}

/* Partners */
.footer-partners {
  display: flex;
  gap: 16px;
}

.footer-partners img {
  height: 21px;
}

.footer-subscribe.footer-btm-right {
    width: 100%;
    max-width: 920px;
}

/* ================= FOOTER NEWSLETTER ================= */
.footer-newsletter {
  display: flex;
  flex: 1;
  align-items: center;
  gap: clamp(12px, 2vw, 16px);
  width: 100%;
}

/* Heading */
.footer-newsletter-title {
  margin: 0;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light, #fff);
  white-space: nowrap;
}

/* Fields wrapper */
.footer-newsletter-fields {
  display: flex;
  gap: 12px;
  flex: 1;
}

/* Input */
.footer-newsletter-fields input {
  flex: 1;
  min-width: 260px;
  max-width: 100%;
  background-color: var(--color-primary);
  border: 0;
  color: #fff;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
}

.footer-newsletter-fields input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Button */
.footer-newsletter-fields .btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding-inline: 24px;
}


/* Legal */
.footer-legal {
  text-align: right;
}

.footer-legal p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.brands-container-footer {
  padding-top: clamp(8px, 1.2vw, 12px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 16px) clamp(16px, 3vw, 24px);
}


.brands-container-footer a {
  margin: 0 !important;
  opacity: 0.65;
  transition: all 0.5 ease;
}

.brands-container-footer a:hover {
  opacity: 0.5;
}

.footer-social {
  padding-block: 20px;
  display: flex;
  gap: 20px;
}

.footer-social a {
  opacity: 1;
  transition: all 0.5s ease;
}

.footer-social a:hover {
  opacity: 0.5;
}

.footer-nav ul.footer-menu li.parent-menu>a {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: var(--body-size);
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  color: var(--color-text-light);
}


/* =========================================================
   INNER HERO SECTION
========================================================= */
.inner-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-color: var(--color-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.inner-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  background: var(--hero-overlay-gradient-right);
  z-index: 1;
  pointer-events: none;
}

.inner-hero .container-large {
  z-index: 2;
  position: relative;
}

.inner-hero-content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.inner-hero-title {
  font-family: var(--font-heading);
  color: var(--color-text-light);
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: clamp(40px, 5vw, 60px);
}

.inner-hero-excerpt {
  /* margin-top: clamp(12px, 2vw, 20px); */
  font-size: var(--body-size);
}

/* ================= GUEST HERO ================= */

.inner-hero.guest-hero {
  align-items: stretch;
  padding-top: 50px;
}

.inner-hero.guest-hero .container-large {
  display: flex;
  flex-direction: column;
}

.inner-hero.guest-hero .breadcrumbs {
  margin-bottom: 10vh;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.inner-hero.guest-hero .inner-hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: left;
}

.inner-hero.guest-hero .inner-hero-content .hero-actions {
    justify-content: flex-start;
}

.inner-hero .breadcrumbs,
.inner-hero .breadcrumbs a{
  color: var(--color-muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.inner-hero .breadcrumbs a:hover{
  color: var(--color-text-light);
}

.inner-hero .breadcrumbs span{
  color: var(--color-text-light);
  font-size: 12px;
}

.inner-hero.guest-hero .inner-hero-content .hero-actions a.btn {
    padding: clamp(8px, 1vw, 14px) clamp(14px, 2vw, 14px);
}


/* ================= ARTICLE LAYOUT ================= */
.article-sticky-scope {
  position: relative;
}

.article-layout {
  display: flex;
  flex-direction: row;
  gap: clamp(32px, 4vw, 80px);
  justify-content: space-between;
  align-items: flex-start;
}


/* ================= CONTENT ================= */
.article-content {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 30px);
}

.article-content h2 {
  font-family: var(--h2-size);
  font-size: clamp(20px, 3vw, 24px);
  margin-bottom: var(--space-sm);
  color: var(--color-text-light);
}

/* .article-content>*+* {
  margin-top: var(--block-spacing);
} */

.article-content p {
  margin: 0;
}

.caption {
    margin-bottom: 16px;
}

/* Body wrapper */
.caption-body {
    overflow: hidden;
    cursor: pointer;
}

/* Toggle text */
.caption-toggle {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
    cursor: pointer;
}

/* Expanded state */
.caption.is-expanded .caption-toggle {
    content: "Read less";
}

/* Text */
.caption-body p {
    margin: 0;
    line-height: 1.6;
}

/* Text clamp */
.caption-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 👈 default lines */
  overflow: hidden;
  transition: max-height 0.35s ease;
  line-height: 1.6;
}

/* Expanded state */
.caption.is-expanded .caption-text {
  -webkit-line-clamp: unset;
}

/* Base text */
.caption-body p {
    line-height: 1.6;
    margin: 0;
}

/* Collapsed state */
.caption:not(.is-expanded) .caption-body {
    overflow: hidden;
}

/* Expanded state */
.caption.is-expanded .caption-body {
    overflow: visible;
}

.caption-body::after {
    content: "Read more";
    display: block;
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 4px;
}

.caption.is-expanded .caption-body::after {
    content: "Read less";
}

.article-content .caption-body p:hover{
  color: var(--light-text-color);
}

.article-panel .caption,
.article-content p a {
    color: var(--color-accent);
}

.article-content p a:hover {
    text-decoration: underline;
}

.article-two-col {
  display: flex;
  gap: 40px;
}

.article-two-col .article-two-col-text {
  max-width: 50%;
}

.article-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 40px);
}

.article-media-grid .article-media-item {
  height: 100%;
}

.article-two-col .article-two-col-media img {
  height: 100%;
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.article-two-col .article-two-col-media p {
  color: var(--color-muted);
}

.article-media-grid .article-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

blockquote {
  width: 100%;
  height: auto;
  padding: clamp(20px, 4vw, 50px);
  background-color: var(--color-secondary);
  text-align: center;
  border-radius: 16px;
}

blockquote p.quote-text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(20px, 3vw, 28px);
  line-height: clamp(28px, 4vw, 36px);
  text-align: center;
  margin-bottom: 20px;
}

blockquote span.quote-icon {
  font-family: var(--font-heading);
  font-family: var(--color-accent);
  display: contents;
}

blockquote span.quote-icon img {
  display: inline-block;
}

blockquote cite.quote-author {
    font-size: 12px;
    line-height: 18px;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-muted);
}

.episode-summary {
  background-color: var(--color-secondary);
  border-radius: 16px;
  padding: 30px;
}

.episode-summary ul{
  list-style: disc;
  padding-left: 20px;
}

/* ================= SIDEBAR ================= */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
  position: sticky;
  align-self: flex-start;
  top: calc(clamp(72px, 8vh, 96px) + clamp(16px, 2vw, 32px));
  width: clamp(280px, 32vw, 523px);
}

.has-article-tabs .article-sidebar {
  top: calc(clamp(72px, 8vh, 96px) + 80px + clamp(16px, 2vw, 32px));
}

.sidebar-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sidebar-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-label {
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-value {
  font-size: 14px;
  color: var(--color-text-light);
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sidebar-tags span {
  display: inline-block;
  border: 1px solid var(--color-muted);
  color: var(--color-text-light);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
}

.action-button .btn-full {
  width: 100%;
  text-align: center;
}

.sidebar-guest {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
}

.sidebar-guest .sidebar-value img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.sidebar-guest-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-guest-info strong {
  font-size: var(--body-size);
  font-weight: 500;
  color: var(--color-text-light);
}

.sidebar-guest-info span {
  font-size: 14px;
  color: var(--color-muted);
}


/* =========================================================
   ARTICLE VIDEO (MATCH CLIENT OUTPUT, YOUR SYSTEM)
========================================================= */

#watch-player {
  position: relative;
  background-color: var(--color-primary);
}

#watch-player .embed {
  position: relative;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;

  /* Fallback for older browsers */
  padding-bottom: 56.25%;
}

/* Modern browsers */
@supports (aspect-ratio: 16 / 9) {
  #watch-player .embed {
    padding-bottom: 0;
    aspect-ratio: 16 / 9;
  }
}

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

#watch-player,
#watch-player .embed-content {
  max-height: 80vh;
  overflow: hidden;
}

#watch-player:fullscreen,
#watch-player .embed-content:fullscreen {
  max-height: 100%;
}

#watch-player:-webkit-full-screen,
#watch-player .embed-content:-webkit-full-screen {
  max-height: 100%;
}

/* Prevent background scroll */
html:has(#watch-embed:fullscreen),
html:has(#watch-embed:-webkit-full-screen) {
  overflow: hidden;
}

#watch-player .embed {
  border-radius: 12px;
  background-color: #111;
}



/* ================= ARTICLE HERO ================= */
.article-video {
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 12px;
}

/* ================= TABS ================= */
.article-tabs {
  position: sticky;
  top: clamp(72px, 8vh, 96px);
  z-index: 5;
  background: var(--color-primary);
  padding: 20px 0 0;
}

.article-tabs .tabs-inner {
  display: flex;
  gap: 50px;
  border-bottom: 1px solid #4D4D4D;
}

.article-tabs .tab {
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--body-font);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--color-muted);
  cursor: pointer;
}

.article-tabs .tab.active {
  color: var(--color-text-light);
  text-decoration: underline;
  text-underline-offset: 23px;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--color-accent);
}

/* ================= TAB PANELS ================= */
.article-panel {
  display: none;
  margin-top: 0;
}

.article-panel.active {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 48px);
}

.article-panel .caption {
  display: flex;
  gap: 1.5rem;
  color: var(--color-light-grey);
  transition: all ease-in-out 300ms;
}

.article-content .caption p.ts {
  background-color: var(--color-secondary);
  color: #3E95FF;
  padding: 10px;
  border-radius: 6px;
  /* margin-top: 5px; */
  display: inline-block;
  height: 40px;
}

.caption.active {
  color: white;
}

.article-panel div#transcript {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


/* ================= GUEST HERO ================= */
.guest-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: clamp(12px, 2vw, 20px);
}

.guest-hero-subtitle {
  max-width: 640px;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--color-muted);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.guest-search {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

.guest-search input {
  width: 100%;
  height: 48px;
  padding: 0 16px 0 48px;
  border-radius: 8px;
  border: 1px solid #444;
  background: transparent;
  color: #fff;
}

.guest-search .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url("../../images/ic_search.svg") center / contain no-repeat;
  opacity: 1;
}


/* ================= FILTERS ================= */
.guest-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.guest-filters .filter {
  height: 48px;
  padding: 16px 32px;
  border-radius: 1111px;
  border: 1px solid var(--color-muted);
  background: transparent;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all 200ms ease;
}

/* Hover */
.guest-filters .filter:hover {
  border-color: #fff;
}

/* Active */
.guest-filters .filter.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}



/* ================= META ================= */
.guest-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.guest-count {
  font-size: 14px;
  color: var(--color-muted);
}

.guest-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}

.guest-sort select {
  background: transparent;
  color: #fff;
  border: 1px solid #444;
  padding: 6px 10px;
  border-radius: 6px;
}


/* ================= GRID ================= */
.guest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

/* ================= GUEST BIO CARD ================= */
.guest-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.guest-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 12px;
}

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

.guest-name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 28px;
  letter-spacing: 0;
  text-transform: capitalize;
  margin-bottom: 4px;
}

.guest-title {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 24px;
  letter-spacing: 0;
  color: var(--color-muted);
}

.guest-tags span {
  font-size: 12px;
  border: 1px solid #777;
  border-radius: 6px;
  padding: 4px 8px;
  margin-right: 6px;
}

/* ================= MEDIA CTA ================= */
.media-cta-container {
  position: relative;
  width: 100%;
  min-height: clamp(240px, 32vw, 320px);
  margin-inline: auto;

  border-radius: 16px;
  overflow: hidden;
}

/* Background image */
.media-cta-image,
.media-cta-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.media-cta-image img {
  object-fit: cover;
}

/* Overlay (already defined earlier) */
.media-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Content wrapper */
.media-cta-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 688px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 50px;
}

/* Content block */
.media-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
  text-align: center;
}


.media-cta-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 36px;
  letter-spacing: 0;
  color: var(--color-text-light);
}

.media-cta-description {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 24px;
  letter-spacing: 0;
  color: var(--color-text-light);
}

.media-cta-left .media-cta-content {
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}

section.media-cta-left .media-cta-content-wrap {
  margin: 0;
}

/* ================= GUEST SIDEBAR ================= */
.guest-sidebar .sidebar-card {
  gap: clamp(20px, 3vw, 32px);
}

/* Guest profile */
.sidebar-guest-profile {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-guest-profile img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
}

/* Divider */
.sidebar-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

/* Categories spacing */
.guest-sidebar .sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}


/* ================= SIDEBAR LINKS ================= */
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-link {
  color: var(--color-text-light);
  font-size: clamp(18px, 2vw, 20px);
  line-height: 20px;
  text-decoration: none;
  display: flex;
  flex-flow: nowrap;
}

/* Arrow */
.sidebar-link::after {
  content: "";
  width: 20px;
  height: 20px;
  transform: translateX(0);
  transition: transform 200ms ease;
  background: url("../../images/ic_chevron_right.svg") center / contain no-repeat;
  display: inline-block;
}

/* Hover / focus */
.sidebar-link:hover::after,
.sidebar-link:focus-visible::after {
  transform: translateX(6px);
}

.sidebar-link:hover {
  text-decoration: underline;
}


/* ================= SOCIAL LINKS ================= */
.sidebar-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text-light);
  font-size: var(--body-size);
  text-decoration: none;
}

/* Icons */
.sidebar-social .icon {
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.85;
}

.sidebar-social .icon.instagram {
  background-image: url("../../images/ic_instagram.svg");
}

.sidebar-social .icon.youtube {
  background-image: url("../../images/ic_youtube.svg");
}

.sidebar-social .icon.website {
  background-image: url("../../images/IconMacbook.svg");
}



/* ================= FEATURED STORY ================= */
.featured-story-row {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.2fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.featured-story-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.featured-story-media {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  /* 640 × 360 */
  border-radius: 16px;
  overflow: hidden;
}


.featured-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.featured-episode {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 24px;
  letter-spacing: 0;
  color: var(--color-muted);
  display: block;
}

.featured-story-title {
  font-family: Zodiak;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 36px;
  letter-spacing: 0;
  margin-bottom: 0;
}

.featured-story-excerpt {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 24px;
  letter-spacing: 0;
  color: var(--color-muted);
  margin-bottom: 0;
}

.featured-story-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.featured-category {
  font-size: 14px;
  border: 1px solid #777;
  border-radius: 8px;
  padding: 6px 10px;
}

.featured-story-row.reverse {
  grid-template-columns: 1.2fr minmax(280px, 1fr);
}

.featured-story-row.reverse .featured-story-media {
  grid-column: 2;
  grid-row: 1;
}

.featured-story-row.reverse .featured-story-content {
  grid-column: 1;
  grid-row: 1;
}

.featured-story-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}


/* ================= ABOUT US CONTNENT ================= */
.about-us-hero {
  position: relative;
  min-height: clamp(360px, 60vh, 520px);
  display: flex;
  align-items: center;
}

.about-detail-container {
  max-width: 720px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 64px);
}

.about-detail .article-content {
  margin: 0 auto;
}

.about-block {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 24px);
}

.about-detail .about-content h3 {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 36px;
  color: var(--color-text-light);
  margin-bottom: 30px;
}

.about-detail p {
  font-family: var(--body-font);
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 24px;
  color: var(--color-muted);
  max-width: 100%;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 40px);
}


.member-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.member-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.member-name {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-muted);
  margin-top: 20px;
}


.about-content .about-block:not(:last-child) {
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* ================= CONTACT US ================= */
.contact-layout {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.contact-title {
  font-family: Zodiak;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 44px;
  color: var(--color-text-light);
  margin-bottom: clamp(16px, 3vw, 24px);
}

.contact-description {
  font-family: var(--body-font);
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 24px;
  color: var(--color-muted);
  max-width: 48ch;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--color-text-light);
}

.contact-item a {
  color: var(--color-text-light);
  text-decoration: none;
}

.contact-label {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-icon {
  width: 20px;
  display: inline-flex;
  justify-content: center;
}

.contact-form-wrap {
  width: 100%;
  max-width: 520px;
}

.contact-form-wrap .forminator-row {
  margin-bottom: 20px;
}

/* Contact Form */
.forminator-custom .forminator-input,
.forminator-custom .forminator-textarea,
.forminator-custom .forminator-select {
  width: 100%;
  background-color: var(--color-secondary);
  border: 0;
  color: #ffffff;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px;
}

.forminator-custom ::placeholder {
  color: #8D8D8D;
}

.forminator-custom label {
  font-family: var(--body-font);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 6px;
  display: block;
}

/* Required star */
.forminator-custom label .forminator-required {
  color: #E64D00;
  margin-right: 6px;
}

.forminator-custom .forminator-button {
  background-color: var(--color-accent);
  color: #ffffff;
  border-radius: 8px;
  padding: 14px 32px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  border: 0;
}

.forminator-custom .forminator-row-last {
  display: flex;
  justify-content: flex-end;
}

/* ================= POPUP SUBSCRIBE FORM ================= */
/* Overlay (lighter than before) */
.subscribe-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    z-index: 90;
}

/* Floating panel */
.subscribe-panel {
    position: fixed;
    left: 0;
    top: 0;
    width: min(520px, 92%);
    background: var(--color-secondary);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
}

/* Active state */
.subscribe-panel.is-open {
    position: absolute;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.subscribe-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* Inner spacing */
.subscribe-inner {
    padding: var(--space-lg);
}

/* Close button */
.subscribe-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: 0;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* Optional max height (like your image) */
/* .subscribe-panel {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
} */


/* Logo */
.subscribe-logo img {
    margin-bottom: var(--space-xs);
}

/* Text */
.subscribe-intro {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

/* Required */
.subscribe-required {
    text-align: right;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: var(--space-sm);
}

.subscribe-required span {
    color: red;
}

/* Form */
.subscribe-form {
    display: grid;
    gap: var(--space-sm);
}

.form-field label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    display: block;
}

.form-field input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: none;
    font-size: 0.95rem;
}

.form-field input:focus {
    outline: 2px solid rgba(255,255,255,0.6);
    outline-offset: 2px;
}

/* Button alignment */
.subscribe-form .btn {
    margin-top: var(--space-sm);
    width: fit-content;
}
