/**
 * Pod on the Market — page template (Figma OCG Website 2026).
 *
 * @package OCG_Theme
 */

/* Source Sans 3 — self-hosted (SIL Open Font License). Serves paragraph/body styles where Figma uses Proxima Nova. */
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/sourcesans3/sourcesans3-400.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../font/sourcesans3/sourcesans3-400italic.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/sourcesans3/sourcesans3-500.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../font/sourcesans3/sourcesans3-600.ttf") format("truetype");
}

/* ——— Base (template-scoped) ——— */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

body.pod-on-the-market {
  background-color: #23322d;
  color: #eae6df;
  font-family: "Source Sans 3", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.pod-on-the-market .pod-site {
  background-color: #23322d;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.pod-on-the-market .pod-site-content {
  flex: 1 0 auto;
  overflow: visible;
}

body.pod-on-the-market .pod-home {
  overflow: visible;
  position: relative;
}

/* Design tokens */
body.pod-on-the-market {
  --pod-marine-100: #23322d;
  --pod-marine-90: #2e4b47;
  --pod-marine-60: #327a6c;
  --pod-warm-20: #eae6df;
  --pod-warm-30: #d6d2c9;
  --pod-warm-40: #c2bdb2;
  --pod-gold: #fcdea1;
  --pod-clover-20: #d9dfbd;
  --pod-clover-30: #c7cf9d;
  --pod-border-accent: #459687;
  /* Pod top nav — Book Your Session border (Figma 2061:752, node 2059:411) */
  --pod-nav-cta-border-gradient: linear-gradient(90deg, #459687 0%, #c7cf9d 100%);
  --pod-white: #f5f5f5;
  --pod-inner-pad: clamp(1.25rem, 4vw, 5rem);
  --pod-inner-max: 1280px;
}

/* ——— Header ——— */
.pod-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pod-marine-100);
  border-bottom: 1px solid rgba(69, 150, 135, 0.2);
}

.pod-site-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem var(--pod-inner-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 110px;
  box-sizing: border-box;
}

.pod-site-header__brand {
  text-decoration: none;
  color: var(--pod-white);
  flex-shrink: 0;
  position: relative;
  z-index: 102;
}

.pod-site-header__brand-img {
  display: block;
  height: auto;
  max-height: 63px;
  width: auto;
}

.pod-site-header__logo-parts {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.12rem;
  flex-wrap: nowrap;
}

.pod-site-header__logo-part {
  display: block;
  height: auto;
  width: auto;
  max-height: 63px;
}

.pod-wordmark {
  font-family: "Safiro", "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.8vw, 1.35rem);
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: var(--pod-white);
}

.pod-wordmark--footer {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.pod-site-header__nav-wrap {
  display: flex;
  align-items: center;
}

.pod-site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pod-site-header__text-link {
  font-family: "Safiro", "Fraunces", serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--pod-white);
  text-decoration: none;
  white-space: nowrap;
}

.pod-site-header__text-link:hover,
.pod-site-header__text-link:focus {
  text-decoration: underline;
  color: var(--pod-clover-30);
}

/* Buttons */
.pod-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Safiro", "Fraunces", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 30px;
  padding: 12px 32px;
  border: 2px solid var(--pod-border-accent);
  background: var(--pod-marine-100);
  color: var(--pod-white);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pod-btn:hover,
.pod-btn:focus {
  background: var(--pod-marine-90);
  color: var(--pod-white);
  border-color: var(--pod-clover-30);
}

.pod-btn--intro {
  align-self: flex-start;
  white-space: nowrap;
}

/* Intro CTA — gradient stroke (Figma 2061:768), distinct from default solid .pod-btn border */
.pod-btn.pod-btn--intro {
  border-color: transparent;
  background-color: transparent;
  background-image:
    linear-gradient(var(--pod-marine-100), var(--pod-marine-100)),
    var(--pod-nav-cta-border-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.pod-btn.pod-btn--intro:hover,
.pod-btn.pod-btn--intro:focus {
  border-color: transparent;
  background-image:
    linear-gradient(var(--pod-marine-90), var(--pod-marine-90)),
    var(--pod-nav-cta-border-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.pod-btn.pod-btn--nav {
  border-color: transparent;
  background-color: transparent;
  background-image:
    linear-gradient(var(--pod-marine-100), var(--pod-marine-100)),
    var(--pod-nav-cta-border-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: background 0.2s ease, color 0.2s ease;
}

.pod-btn.pod-btn--nav:hover,
.pod-btn.pod-btn--nav:focus {
  border-color: transparent;
  background-image:
    linear-gradient(var(--pod-marine-90), var(--pod-marine-90)),
    var(--pod-nav-cta-border-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* Mobile menu toggle */
.pod-site-header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 102;
}

.pod-site-header__menu-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--pod-white);
  margin: 0 auto;
}

@media (max-width: 782px) {
  .pod-site-header__menu-toggle {
    display: flex;
  }

  .pod-site-header__nav-wrap {
    position: fixed;
    inset: 0;
    z-index: 100;
    padding: 6.5rem var(--pod-inner-pad) 2rem;
    background: var(--pod-marine-100);
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .pod-site-header__nav-wrap--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .pod-site-header__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .pod-btn--nav {
    width: 100%;
    text-align: center;
  }

  body.pod-nav-open {
    overflow: hidden;
  }
}

/* ——— Main layout ——— */
.pod-home {
  padding: 0;
}

.pod-inner {
  max-width: var(--pod-inner-max);
  margin: 0 auto;
  padding-left: var(--pod-inner-pad);
  padding-right: var(--pod-inner-pad);
}

/* ——— Hero ——— */
.pod-hero {
  background: var(--pod-marine-100);
}

.pod-hero__slab {
  background: var(--pod-marine-90);
  min-height: clamp(420px, 58vw, 545px);
  overflow: hidden;
}

.pod-hero__grid {
  box-sizing: border-box;
  max-width: 1440px;
  margin: 0 auto;
  min-height: clamp(420px, 58vw, 545px);
  padding: clamp(1.75rem, 4vw, 3rem) var(--pod-inner-pad);
  display: grid;
  /* Figma 2051:11 — headline ~1129px / 1440 frame; image column ~852px + bleed */
  grid-template-columns: minmax(0, 7fr) minmax(min(28vw, 320px), 2fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: stretch;
}

.pod-hero__title {
  margin: 0;
  font-family: "Safiro", "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 7vw, 90px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.pod-hero__title-line {
  display: block;
}

.pod-hero__copy {
  position: relative;
  z-index: 1;
  align-self: center;
  min-width: 0;
}

.pod-hero__visual {
  position: relative;
  min-height: 0;
  align-self: stretch;
  left: -400px;
}

/* Figma 2051:15 — asset ~1016×1046 in a 545px slab, top -300px → full-height crop */
.pod-hero__img {
  position: absolute;
  left: clamp(-2rem, -10vw, -0.5rem);
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  max-width: none;
  height: min(1046px, 232%);
  min-height: 100%;
  pointer-events: none;
  object-fit: cover;
  object-position: 56% center;
}

.pod-hero__img-fallback {
  position: absolute;
  inset: 0 -18% 0 -12%;
  border-radius: 0;
  background: radial-gradient(ellipse 70% 85% at 58% 45%, rgba(50, 122, 108, 0.45), transparent 72%),
    linear-gradient(152deg, rgba(35, 50, 45, 0.95) 0%, var(--pod-marine-90) 55%);
}

@media (max-width: 900px) {
  .pod-hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    align-items: start;
  }

  .pod-hero__copy {
    align-self: start;
  }

  .pod-hero__visual {
    min-height: clamp(200px, 42vw, 280px);
    order: -1;
  }

  .pod-hero__img {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: auto;
    min-height: 0;
    max-width: 520px;
    margin: 0 auto;
    display: block;
    aspect-ratio: 1016 / 1046;
    object-fit: cover;
    object-position: center;
  }

  .pod-hero__img-fallback {
    position: relative;
    inset: auto;
    min-height: 220px;
    margin: 0 auto;
    max-width: 400px;
  }
}

/* ——— Intro ——— */
.pod-intro {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 7rem);
  position: relative;
}

.pod-intro__rule {
  max-width: var(--pod-inner-max);
  margin: 0 auto var(--pod-inner-pad);
  padding: 0 var(--pod-inner-pad);
  min-height: 4px;
  background: url("../images/pod/pod-divider-line.png") center / 100% auto no-repeat,
    linear-gradient(
      90deg,
      transparent,
      rgba(69, 150, 135, 0.45) 20%,
      rgba(69, 150, 135, 0.45) 80%,
      transparent
    );
}

.pod-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: start;
}

.pod-intro__col {
  min-width: 0;
}

.pod-intro__col--lead {
  position: relative;
}

.pod-intro__col--cta {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

/* Figma 2068:800 — 464² marine slab: TL/BR/BL radius 232px, TR square; inner shape rotated 180° */
.pod-intro__blob-wrap {
  position: absolute;
  width: min(464px, 118%);
  aspect-ratio: 1;
  left: clamp(-2.75rem, -7vw, -0.5rem);
  top: clamp(-2.25rem, -6vw, -0.75rem);
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pod-intro__blob {
  width: 100%;
  height: 100%;
  border-radius: min(232px, 50%) 0 min(232px, 50%) min(232px, 50%);
  background: var(--pod-marine-90);
  opacity: 0.8;
  transform: rotate(180deg);
}

.pod-intro__lead {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Safiro", "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 35px);
  line-height: 1.3;
  font-style: normal;
  max-width: none;
  color: var(--pod-warm-20);
}

.pod-intro__lead em.pod-intro__accent {
  font-style: normal;
  color: var(--pod-gold);
}

.pod-intro__body {
  font-family: "Safiro", "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(1rem, 2.1vw, 22px);
  line-height: 1.6;
  color: var(--pod-warm-20);
  max-width: none;
}

.pod-intro__body p {
  margin: 0 0 1.35rem;
}

.pod-intro__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 782px) {
  .pod-intro__grid {
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 5vw, 2.5rem);
  }

  .pod-intro__col--cta {
    justify-content: flex-start;
  }

  .pod-intro__blob-wrap {
    width: min(320px, 92vw);
    left: -1.25rem;
    top: -1.5rem;
  }
}

/* ——— Gradient streak ——— */
.pod-streak {
  height: clamp(120px, 18vw, 182px);
  background: linear-gradient(
    90deg,
    rgba(252, 222, 161, 0.08),
    rgba(69, 150, 135, 0.25),
    rgba(252, 222, 161, 0.12),
    rgba(110, 85, 150, 0.15),
    rgba(69, 150, 135, 0.2),
    rgba(252, 222, 161, 0.08)
  );
  opacity: 0.9;
  overflow: hidden;
}

.pod-streak__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  mix-blend-mode: soft-light;
}

/* ——— How it works ——— */
.pod-how {
  background: var(--pod-marine-90);
  padding: clamp(3rem, 8vw, 7rem) 0 clamp(4rem, 12vw, 8rem);
  position: relative;
  /* Stay below `.pod-quote-block` so the testimonial image can overlap upward */
  z-index: 0;
}

.pod-how__inner {
  position: relative;
}

.pod-how__rule {
  margin-bottom: 1rem;
  min-height: 4px;
  background: url("../images/pod/pod-line-how.png") center / 100% auto no-repeat,
    linear-gradient(
      90deg,
      rgba(217, 223, 189, 0.15),
      rgba(217, 223, 189, 0.45),
      rgba(217, 223, 189, 0.15)
    );
}

.pod-how__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  padding-top: 2rem;
}

.pod-how__headline {
  margin: 0;
  font-family: "Safiro", "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(1.35rem, 3vw, 35px);
  line-height: 1.35;
}

.pod-how__headline-muted {
  display: block;
  color: var(--pod-clover-20);
  margin-bottom: 0.75rem;
}

.pod-how__headline-accent {
  display: block;
  color: var(--pod-gold);
}

.pod-how__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;  
  margin-top: 200px;
}

.pod-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pod-step__num {
  flex: 0 0 66px;
  font-family: "Safiro", "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(56px, 8vw, 90px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--pod-marine-60);
}

.pod-step__body {
  flex: 1;
  min-width: 0;
  color: var(--pod-warm-20);
}

.pod-step__title {
  margin: 0 0 0.5rem;
  font-family: "Safiro", "Fraunces", serif !important;
  font-size: 22px !important;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 1.6;
  color: var(--pod-warm-20);
}

.pod-step__body p:last-child {
  margin-bottom: 0;
}

.pod-step__body p {
  font-family: "Source Sans 3", "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a.pod-step__title--link {
  color: var(--pod-warm-20);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a.pod-step__title--link:hover,
a.pod-step__title--link:focus {
  color: var(--pod-gold);
}

@media (max-width: 900px) {
  .pod-how__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .pod-step {
    flex-direction: column;
    gap: 0.25rem;
  }

  .pod-step__num {
    flex: none;
    line-height: 1;
  }
}

/* ——— Testimonial: static left photo, sliding quote panel ——— */
.pod-quote-block {
  background: var(--pod-marine-100);
  position: relative;
  z-index: 5;
  isolation: isolate;
  overflow: visible;
}

.pod-quote-block__slider {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: 762px;
  overflow: visible;
}

.pod-quote-block__media--static {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  overflow: visible;
  background: transparent;
  min-height: 0;
  z-index: 2;
  transform: translateZ(0);
}

.pod-quote-block__copy {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  position: relative;
  z-index: 1;
}

.pod-quote-block__viewport {
  flex: 1 1 auto;
  overflow: hidden;
  min-height: 0;
}

.pod-quote-block__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.pod-quote-block__slide {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
  height: 100%;
  display: flex;
}

.pod-quote-block__media {
  position: relative;
  background: var(--pod-marine-100);
  min-height: 0;
}

.pod-quote-block__photo,
.pod-quote-block__photo-fallback {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: clamp(-4.5rem, -11vw, -10rem);
  height: calc(100% + clamp(4.5rem, 11vw, 10rem));
  object-fit: cover;
  object-position: center 35%;
  display: block;
  z-index: 1;
  height: 962px;
  top: -200px;
}

.pod-quote-block__photo-fallback {
  background: linear-gradient(
      165deg,
      rgba(46, 75, 71, 0.5),
      rgba(35, 50, 45, 0.9)
    ),
    var(--pod-marine-90);
}

.pod-quote-block__panel {
  position: relative;
  flex: 1;
  width: 100%;
  padding: clamp(1.25rem, 3vw, 2rem) var(--pod-inner-pad) clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: visible;
}

/* Teardrop (Figma): rounded bulk lower-left, sharp point top-right */
.pod-quote-block__blob {
  position: absolute;
  width: min(500px, 94%);
  aspect-ratio: 1.02 / 1;
  left: 50%;
  top: 62%;
  transform: translate(-50%, -46%);
  border-radius: 50% 0 55% 50%;
  background: rgba(46, 75, 71, 0.72);
  z-index: 0;
  pointer-events: none;
}

.pod-quote-block__quote,
.pod-quote-block__cite {
  position: relative;
  z-index: 1;
}

.pod-quote-block__quote {
  margin: 0 0 2rem;
  padding: 0;
  border: none;
  max-width: 39rem;
}

.pod-quote-block__quote p {
  margin: 0;
  font-family: "Source Sans 3", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.2vw, 26px);
  line-height: 1.55;
  color: var(--pod-white);
}

.pod-quote-block__rule {
  max-width: 39rem;
  min-height: 2px;
  border-radius: 1px;
  background: rgba(50, 122, 108, 0.55);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.pod-quote-block__cite {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: "Source Sans 3", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.8vw, 20px);
  line-height: 1.45;
  font-style: normal;
  color: var(--pod-white);
  margin-bottom: 0;
}

.pod-quote-block__name {
  font-weight: 600;
}

.pod-quote-block__role {
  font-weight: 400;
  color: rgba(245, 245, 245, 0.88);
}

.pod-quote-block__rating {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 100%;
  margin-top: auto;
  padding: 0.75rem var(--pod-inner-pad) 1.25rem;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.pod-quote-block__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(199, 207, 157, 0.5);
  background: rgba(199, 207, 157, 0.25);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pod-quote-block__dot.is-active {
  background: #b4be7c;
  border-color: #b4be7c;
}

.pod-quote-block__dot:focus-visible {
  outline: 2px solid var(--pod-clover-30);
  outline-offset: 3px;
}

/* Decorative dots fallback (legacy — static markup if needed) */
.pod-quote-block__dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: center;
}

.pod-quote-block__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(199, 207, 157, 0.25);
  border: 1px solid rgba(199, 207, 157, 0.5);
}

.pod-quote-block__dots span.is-active {
  background: #b4be7c;
  border-color: #b4be7c;
}

.pod-quote-block__dots-img {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(72px, 18vw, 108px);
  height: auto;
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .pod-quote-block__slider {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .pod-quote-block__media--static {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    height: clamp(260px, 55vw, 360px);
    max-height: 360px;
    overflow: hidden;
    background: var(--pod-marine-100);
  }

  .pod-quote-block__photo,
  .pod-quote-block__photo-fallback {
    top: 0;
    height: 100%;
    object-position: center 30%;
  }

  .pod-quote-block__blob {
    width: min(380px, 96%);
    left: 50%;
    top: 58%;
    transform: translate(-50%, -42%);
    border-radius: 50% 0 52% 48%;
  }

  .pod-quote-block__copy {
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
  }

  .pod-quote-block__viewport {
    min-height: min(380px, 55vh);
    max-height: 762px;
  }

  .pod-quote-block__slide {
    min-height: 100%;
    max-height: none;
  }

  .pod-quote-block__rating {
    margin-top: auto;
    padding-bottom: 1.5rem;
  }
}

/* ——— Player placeholder ——— */
.pod-player {
  padding: clamp(4rem, 12vw, 9rem) var(--pod-inner-pad);
  text-align: center;
  background: var(--pod-marine-100);
}

.pod-player__placeholder {
  margin: 0;
  font-family: "Safiro", "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 46px);
  line-height: 1.35;
  color: #fff;
}

/* Optional WP editor block below fold */
.pod-editor-content {
  padding-bottom: 4rem;
}

.pod-editor-content .entry-content {
  color: var(--pod-warm-20);
  font-size: 16px;
  line-height: 1.6;
}

.pod-editor-content .entry-content a {
  color: var(--pod-clover-30);
}

/* ——— Footer ——— */
.pod-footer {
  flex-shrink: 0;
  background: var(--pod-marine-100);
  color: var(--pod-warm-40);
  padding: 0 var(--pod-inner-pad) 2.5rem;
}

.pod-footer__inner {
  max-width: var(--pod-inner-max);
  margin: 0 auto;
  padding-top: 2.75rem;
}

.pod-footer__rule {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(69, 150, 135, 0.45),
    transparent
  );
  margin-bottom: 2rem;
}

.pod-footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: center;
}

.pod-footer__row--top {
  justify-content: space-between;
  margin-bottom: 2rem;
}

.pod-footer__row--mid {
  justify-content: space-between;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.pod-footer__row--bottom {
  justify-content: space-between;
  align-items: baseline;
}

.pod-footer__brand a {
  text-decoration: none;
  color: var(--pod-white);
}

.pod-footer__logo-parts {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: nowrap;
}

.pod-footer__logo-part {
  display: block;
  height: auto;
  width: auto;
  max-height: 64px;
}

.pod-footer__brand-img {
  display: block;
  max-height: 64px;
  width: auto;
  height: auto;
}

.pod-footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pod-footer__links a {
  font-family: "Safiro", "Fraunces", serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--pod-clover-30);
  text-decoration: none;
}

.pod-footer__links a:hover,
.pod-footer__links a:focus {
  text-decoration: underline;
}

.pod-footer__social {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pod-social-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pod-clover-30);
}

.pod-social-btn--figma {
  display: block;
  width: 40px;
  height: 40px;
}

.pod-social-btn--figma .pod-social-btn__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pod-social-btn--figma .pod-social-btn__glyph {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: 55%;
  object-fit: contain;
  display: block;
}

/* Combined 40×40 social asset (circle + glyph), exported as single SVG. */
.pod-social-btn--svg {
  display: block;
  width: 40px;
  height: 40px;
}

.pod-social-btn--svg .pod-social-btn__svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pod-social-btn__disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(199, 207, 157, 0.18);
  z-index: 0;
}

.pod-social-btn__icon {
  position: relative;
  z-index: 1;
}

.pod-footer__address {
  margin: 0;
  max-width: 26rem;
  font-family: "Source Sans 3", "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--pod-warm-40);
  text-align: right;
}

.pod-footer__legal {
  margin: 0;
  font-family: "Source Sans 3", "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.pod-footer__legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pod-footer__legal a:hover,
.pod-footer__legal a:focus {
  color: var(--pod-clover-30);
}

.pod-footer__privacy {
  font-family: "Source Sans 3", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--pod-warm-40);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pod-footer__privacy:hover,
.pod-footer__privacy:focus {
  color: var(--pod-clover-30);
}

@media (max-width: 782px) {
  .pod-footer__row--mid {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .pod-footer__row--bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
