:root {
  --radius: 0.5rem;
  --background: #08111c;
  --foreground: #f4efe3;
  --card: #0f1a2a;
  --card-foreground: #f4efe3;
  --primary: #cf232d;
  --primary-foreground: #ffffff;
  --secondary: #13243c;
  --muted: #0f1a2a;
  --muted-foreground: #a3acb9;
  --accent: #d8a14a;
  --border: #22344a;
  --space-section-y: clamp(2.5rem, 4vw, 3rem);
}

* { border-color: var(--border); box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--background);
  background-image:
    radial-gradient(circle at top, rgba(207, 35, 45, .16) 0, transparent 34%),
    radial-gradient(circle at 20% 0, rgba(19, 36, 60, .32) 0, transparent 24%),
    linear-gradient(180deg, #08111c 0%, #091623 58%, #07101a 100%);
  background-attachment: fixed;
  color: var(--foreground);
  font-family: Inter, system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16px;
}
main { width: 100%; }
h1,h2,h3,h4 { font-family: "Oswald", "Arial Narrow", sans-serif; letter-spacing: 0.02em; text-transform: uppercase; }
h1 { font-size: clamp(2.25rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.1vw, 1.75rem); }
p { line-height: 1.65; }
main p,
main li,
main label,
main input,
main textarea,
main select {
  font-size: 1rem;
}

.font-display { font-family: "Oswald", "Arial Narrow", sans-serif; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

.bg-grain {
  background-image: radial-gradient(rgba(244, 239, 227, 0.1) 1px, transparent 1px);
  background-size: 3px 3px;
}
.gradient-flag { background: linear-gradient(135deg, #cf232d, #13243c); }
.tsg-btn-white, .tsg-btn-white:visited, .tsg-btn-white:hover, .tsg-btn-white:active { color: #ffffff !important; }
.tsg-journey-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #08111c 0%, #0d1a2b 100%);
  color: var(--foreground);
}
.tsg-journey-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(207, 35, 45, .14), transparent 32%),
    radial-gradient(circle at bottom left, rgba(19, 36, 60, .26), transparent 30%);
  pointer-events: none;
}
.tsg-journey-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244, 239, 227, 0.1) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: .10;
  pointer-events: none;
}
.tsg-journey-band-inner {
  position: relative;
  z-index: 1;
}
.tsg-journey-band-panel {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(244, 239, 227, .12);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px -30px rgba(10, 20, 35, .35);
}
.text-gradient-flag {
  background: linear-gradient(135deg, #cf232d, #13243c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.shadow-elegant { box-shadow: 0 30px 80px -30px rgba(10,20,35,.35); }
.shadow-soft { box-shadow: 0 10px 40px -15px rgba(10,20,35,.18); }
.transition-all { transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s cubic-bezier(0.16,1,0.3,1), transform .9s cubic-bezier(0.16,1,0.3,1); will-change: transform, opacity; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.25s; }
.reveal-delay-3 { transition-delay: 0.4s; }
.reveal-delay-4 { transition-delay: 0.55s; }
.tsg-stagger-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s cubic-bezier(0.16,1,0.3,1), transform .8s cubic-bezier(0.16,1,0.3,1);
  will-change: transform, opacity;
}
.tsg-stagger-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ken-burns { animation: kenburns 18s ease-in-out infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1) translate3d(0,0,0); }
  to { transform: scale(1.08) translate3d(-1%, -1%, 0); }
}

#tsgHeader { background: transparent; }
#tsgHeader.bg-background\/85 { background: rgba(8,17,28,.76); }
#tsgHeader ul, #tsgHeader li { list-style: none; margin: 0; padding: 0; }
.tsg-nav-shell {
  box-shadow: 0 10px 30px -24px rgba(0, 0, 0, .55);
  position: relative;
  overflow: hidden;
}
.tsg-nav-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(207,35,45,.12), rgba(19,36,60,.12));
  pointer-events: none;
}
.tsg-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .68rem 1rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, .76);
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}
.tsg-nav-link:hover {
  color: rgba(244, 239, 227, 1);
  background: rgba(255, 255, 255, .08);
  transform: translateY(-1px);
}
.tsg-nav-link::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  bottom: .36rem;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s ease;
  background: linear-gradient(135deg, #cf232d, #13243c);
}
.tsg-nav-link:hover::after {
  transform: scaleX(1);
}
.tsg-nav-link.is-active {
  color: #f4efe3;
  background: rgba(255,255,255,.1);
  box-shadow: 0 10px 24px -18px rgba(0,0,0,.4);
}
.tsg-nav-link.is-active::after {
  transform: scaleX(1);
}
.tsg-menu-btn {
  border: 1px solid rgba(244, 239, 227, .12);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  background: rgba(255,255,255,.06);
  transition: border-color .2s ease, background-color .2s ease;
}
.tsg-menu-btn:hover { border-color: rgba(244,239,227,.28); background: rgba(255,255,255,.1); }
.tsg-menu-icon {
  width: 18px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.tsg-menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #f4efe3;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.tsg-menu-btn[aria-expanded="true"] .tsg-menu-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.tsg-menu-btn[aria-expanded="true"] .tsg-menu-icon span:nth-child(2) { opacity: 0; }
.tsg-menu-btn[aria-expanded="true"] .tsg-menu-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.tsg-menu-close {
  padding: 0;
  line-height: 0;
  width: 38px;
  height: 38px;
}
.tsg-close-icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
}
.tsg-close-icon::before,
.tsg-close-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  width: 2px;
  height: 18px;
  border-radius: 2px;
  background: #f4efe3;
}
.tsg-close-icon::before { transform: rotate(45deg); }
.tsg-close-icon::after { transform: rotate(-45deg); }

.tsg-mobile-wrap {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}
.tsg-mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 18, .72);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .25s ease;
}
.tsg-mobile-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(88vw, 390px);
  height: 100%;
  transform: translateX(102%);
  transition: transform .34s cubic-bezier(.2,.8,.2,1);
  box-shadow: -24px 0 60px -30px rgba(0,0,0,.55);
  background:
    radial-gradient(circle at top left, rgba(207,35,45,.18), transparent 34%),
    radial-gradient(circle at top right, rgba(19,36,60,.34), transparent 30%),
    linear-gradient(180deg, rgba(8,17,28,.99), rgba(7,14,23,.99));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tsg-mobile-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(255,255,255,.22), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.22), transparent 35%);
  pointer-events: none;
}
.tsg-mobile-panel .relative.px-6.py-5 {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  flex-shrink: 0;
}
.tsg-mobile-panel .px-6.py-6 {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
}
.tsg-mobile-panel .tsg-logo-img-panel {
  position: relative;
  z-index: 1;
}
.tsg-mobile-link {
  padding: .65rem .55rem;
  border-bottom: 1px solid rgba(244, 239, 227, .12);
  border-radius: .55rem;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.tsg-mobile-link:hover {
  background: rgba(255,255,255,.08);
  color: #f4efe3;
  transform: translateX(2px);
}
.tsg-mobile-link.is-active {
  background: rgba(255,255,255,.12);
  color: #f4efe3;
  box-shadow: 0 10px 24px -18px rgba(0,0,0,.4);
  border-bottom-color: transparent;
}
.tsg-mobile-wrap.is-open {
  pointer-events: auto;
}
.tsg-mobile-wrap.is-open .tsg-mobile-overlay {
  opacity: 1;
}
.tsg-mobile-wrap.is-open .tsg-mobile-panel {
  transform: translateX(0);
}
#menuBtn { display: none; }
@media (max-width: 1024px) {
  #menuBtn { display: inline-flex !important; }
}
.tsg-logo-link { min-width: 220px; }
.tsg-logo-img {
  height: 120px;
  width: auto;
  max-width: min(56vw, 520px);
  object-fit: contain;
}
.tsg-logo-img-panel {
  height: 120px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.tsg-logo-img-footer {
  height: auto;
  max-height: 136px;
  object-fit: contain;
  display: block;
}
.tsg-footer-copy { max-width: 40ch; }

.tsg-marquee-wrap {
  border-top: 1px solid #22344a;
  border-bottom: 1px solid #22344a;
  background: linear-gradient(90deg, #08111c, #0f1a2a, #08111c);
  overflow: hidden;
}
.tsg-marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  padding: .85rem 0;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 1rem;
  color: #f4efe3;
  animation: tsgMarquee 28s linear infinite;
}
@keyframes tsgMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tsg-pill-icon {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #cf232d, #13243c);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
}
.tsg-pill-icon svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: #fff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tsg-card-overlay {
  background: linear-gradient(to top, rgba(5, 10, 18, 0.92), rgba(5, 10, 18, 0.42), rgba(5, 10, 18, 0));
}
.tsg-card-caption {
  color: #f8f4ea !important;
}
.tsg-card-caption h3 {
  color: #f8f4ea !important;
}
.tsg-card-tag {
  color: rgba(244, 239, 227, 0.82) !important;
}
.group:hover .tsg-card-overlay {
  background: linear-gradient(to top, rgba(5, 10, 18, 0.96), rgba(5, 10, 18, 0.46), rgba(5, 10, 18, 0.06));
}

/* Section rhythm + hierarchy consistency */
.md\:py-32, .md\:pt-48, .md\:pb-24, .md\:pb-28 {
  padding-top: var(--space-section-y) !important;
  padding-bottom: var(--space-section-y) !important;
}
main .text-xs {
  font-size: .92rem !important;
}
main .text-sm {
  font-size: 1rem !important;
}

main .text-lg {
  font-size: 1.125rem !important;
}
main section h1.font-display {
  font-size: clamp(2.15rem, 4.2vw, 3.85rem) !important;
  line-height: 0.96 !important;
  text-wrap: balance;
}
main section h2.font-display {
  font-size: clamp(1.9rem, 3.4vw, 3rem) !important;
  line-height: 1.05 !important;
  text-wrap: balance;
}
main section h3.font-display {
  font-size: clamp(1.2rem, 2.05vw, 1.7rem) !important;
  line-height: 1.12 !important;
  text-wrap: balance;
}
main section p.font-display {
  font-size: clamp(1.15rem, 2vw, 2rem) !important;
  line-height: 1.12 !important;
}

main section .max-w-3xl > h2,
main section .max-w-3xl > p.text-lg {
  text-wrap: balance;
}
main section p.text-lg {
  font-size: 1.02rem !important;
  line-height: 1.6 !important;
}

/* CTA/button consistency */
a.rounded-full,
button.rounded-full,
a.inline-flex.items-center,
button.inline-flex.items-center {
  border-radius: 9999px;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}
a.rounded-full:hover {
  transform: translateY(-1px);
}

/* Footer density cleanup */
footer .text-xs {
  letter-spacing: .08em;
}
footer ul li a {
  display: inline-block;
  padding: .08rem 0;
}
footer .rounded-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Contact Form 7 styling to match theme */
.wpcf7 {
  width: 100%;
}
/* .wpcf7 form {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 0.6rem;
  padding: clamp(1.1rem, 2.2vw, 1.6rem);
  box-shadow: 0 10px 40px -15px rgba(10, 20, 35, .18);
} */
.wpcf7 p {
  margin: 0 0 .78rem 0;
}
.wpcf7 label {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted-foreground);
  margin-bottom: .34rem;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  border: 1px solid var(--border);
  background: #08111c;
  border-radius: .35rem;
  padding: .82rem .95rem;
  color: var(--foreground);
}
.wpcf7 textarea {
  min-height: 84px;
  resize: vertical;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: 2px solid rgba(207, 35, 45, .25);
  border-color: var(--primary);
}
.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"] {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #cf232d, #13243c);
  color: #fff;
  padding: .92rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 40px -15px rgba(10, 20, 35, .18);
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 30px 80px -30px rgba(10, 20, 35, .35);
}
.wpcf7 .wpcf7-response-output {
  margin: .8rem 0 0;
  border-radius: .35rem;
  font-size: .88rem;
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: .78rem;
  margin-top: .35rem;
}

.tsg-cf7-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
@media (max-width: 760px) {
  .tsg-cf7-grid { grid-template-columns: 1fr; }
}

.wpcf7 .tsg-cf7-consent {
  margin-top: .25rem;
  margin-bottom: .9rem;
}
.wpcf7 .tsg-cf7-consent .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .tsg-cf7-consent label {
  text-transform: none;
  letter-spacing: 0;
  font-size: .85rem;
  color: var(--muted-foreground);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.wpcf7 textarea[name="your-message"] {
  min-height: 88px;
}

.tsg-embed-wrap iframe,
.tsg-embed-wrap video,
.tsg-embed-wrap audio {
  width: 100%;
  max-width: 100%;
}

.prose {
  color: var(--foreground);
}
.prose p {
  margin: 0 0 1rem;
  color: rgba(244, 239, 227, .82);
}
.prose h2, .prose h3, .prose h4 {
  margin-top: 1.6em;
  margin-bottom: .6em;
}

@media (max-width: 1024px) {
  .grid.md\:grid-cols-12,
  .grid.md\:grid-cols-3,
  .grid.md\:grid-cols-2 { grid-template-columns: 1fr !important; }
  .tsg-logo-img { height: 110px; max-width: min(74vw, 380px); }
  .tsg-logo-img-footer { max-height: 150px; }
  .tsg-logo-img-panel { height: 64px; }
  main section.mx-auto.max-w-7xl.px-6.lg\:px-10.py-24.md\:py-32,
  main section.py-24.md\:py-32,
  main section.py-28.md\:py-36,
  main section.pt-40.pb-16.md\:pt-48.md\:pb-24,
  main section.pt-40.pb-20.md\:pt-48.md\:pb-28 {
    padding-top: clamp(2.6rem, 6vw, 4rem);
    padding-bottom: clamp(2.6rem, 6vw, 4rem);
  }
}

@media (min-width: 1440px) {
  #tsgHeader > .mx-auto {
    max-width: min(94vw, 1560px) !important;
  }
  footer > .mx-auto {
    max-width: min(94vw, 1560px) !important;
  }
  .tsg-logo-img {
    height: 128px;
    max-width: min(58vw, 560px);
  }
  .tsg-nav-link {
    font-size: .88rem;
  }
  .tsg-logo-img-footer {
    max-height: 150px;
  }
  main section.mx-auto.max-w-7xl,
  main section.mx-auto.max-w-6xl,
  main section.mx-auto.max-w-5xl,
  main section.mx-auto.max-w-4xl,
  main .mx-auto.max-w-7xl,
  main .mx-auto.max-w-6xl,
  main .mx-auto.max-w-5xl,
  main .mx-auto.max-w-4xl {
    max-width: min(94vw, 1560px) !important;
  }
  main .max-w-3xl {
    max-width: min(88vw, 900px) !important;
  }
  main .max-w-2xl {
    max-width: min(84vw, 760px) !important;
  }
  main .max-w-xl {
    max-width: min(80vw, 620px) !important;
  }
  main .wpcf7 input[type="submit"],
  main .wpcf7 button[type="submit"] {
    padding: 1rem 1.75rem;
    font-size: 1.02rem;
  }
  main section.pt-40.pb-16.md\:pt-48.md\:pb-24,
  main section.pt-40.pb-20.md\:pt-48.md\:pb-28,
  main section.py-20.md\:py-24,
  main section.py-24.md\:py-32,
  main section.py-28.md\:py-36 {
    padding-top: clamp(5rem, 5vw, 6.4rem) !important;
    padding-bottom: clamp(5rem, 5vw, 6.4rem) !important;
  }
}

/* Hero position tune */
.min-h-\[100svh\].w-full.overflow-hidden .mx-auto.max-w-7xl.px-6.lg\:px-10.pb-24.md\:pb-32.text-background {
  padding-top: 9.5rem;
  padding-bottom: 7rem;
  margin-left: max(1.5rem, calc((100vw - 80rem) / 2));
  margin-right: auto;
}

@media (max-width: 768px) {
  .min-h-\[100svh\].w-full.overflow-hidden .mx-auto.max-w-7xl.px-6.lg\:px-10.pb-24.md\:pb-32.text-background {
    padding-top: 6.6rem;
    padding-bottom: 4.5rem;
    margin-left: 0;
  }
  .max-w-3xl > h2,
  h2.text-4xl.md\:text-5xl.lg\:text-6xl,
  h1.font-display {
    font-size: clamp(1.8rem, 8.2vw, 2.55rem) !important;
    line-height: 1.12 !important;
  }
  .max-w-3xl > p.text-lg {
    font-size: 1rem !important;
    line-height: 1.62 !important;
  }
  main section .mt-16 { margin-top: 2rem !important; }
  main section .mt-12 { margin-top: 1.6rem !important; }
  main section .mt-10 { margin-top: 1.35rem !important; }
  main section .p-8 { padding: 1.05rem !important; }
  main section .text-2xl { font-size: 1.35rem !important; }
}

.tsg-podcast-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.tsg-podcast-modal.is-open {
  display: flex;
}

.tsg-podcast-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 20, .82);
  backdrop-filter: blur(12px);
}

.tsg-podcast-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: min(88vh, 920px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 1.5rem;
  background: color-mix(in oklab, var(--background) 96%, black 4%);
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, .6);
  padding: 1rem;
}

.tsg-podcast-modal__close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--foreground);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.tsg-podcast-modal__meta {
  padding: 1rem 1rem .75rem;
}

.tsg-podcast-modal__eyebrow {
  margin: 0 0 .35rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  color: var(--primary);
}

.tsg-podcast-modal__title {
  margin: 0;
  font-family: "Oswald", Arial Narrow, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.tsg-podcast-modal__player {
  overflow: hidden;
  border-radius: 1.1rem;
  background: #000;
}

.tsg-podcast-modal__player iframe,
.tsg-podcast-modal__player video,
.tsg-podcast-modal__player audio {
  width: 100%;
  min-height: min(70vh, 620px);
  display: block;
}

@media (max-width: 768px) {
  .tsg-podcast-modal {
    padding: .5rem;
  }

  .tsg-podcast-modal__panel {
    width: 100%;
    max-height: 92vh;
    border-radius: 1rem;
    padding: .75rem;
  }

  .tsg-podcast-modal__player iframe,
  .tsg-podcast-modal__player video,
  .tsg-podcast-modal__player audio {
    min-height: 52vh;
  }
}


@media (max-width: 1280px) {
  .tsg-desktop-nav,
  .tsg-header-actions {
    display: none !important;
  }

  #menuBtn {
    display: inline-flex !important;
  }

  #mobileMenu {
    display: block !important;
  }
}

@media (min-width: 1280px) {
  .tsg-desktop-nav,
  .tsg-header-actions {
    display: flex !important;
  }

  #menuBtn,
  #mobileMenu {
    display: none !important;
  }
}