@charset "UTF-8";
/* 
Attention!

Do not make direct changes to the main.css file.

This file is automatically generated using the SCSS compiler. Any manual changes made to it will be lost if someone runs the SCSS compilation.

To make changes, use the style.css file.

Why is this important?
- main.css is automatically generated.
- Manual changes will be overwritten during SCSS compilation.
- Use style.css for edits if you’re not working with SCSS.

*/
@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Italic.woff2") format("woff2");
  font-optical-sizing: auto;
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
:root {
  --font-primary: "Inter", sans-serif;
  --white: #fff;
  --snow: #fefefe;
  --gray-50: #f6f6f6;
  --gray-100: #e2e2e2;
  --gray-300: #b0b0b0;
  --gray-600: #5d5d5d;
  --gray-700: #4f4f4f;
  --gray-800: #454545;
  --gray-900: #3d3d3d;
  --black-950: #000;
  --transition-color: color 300ms ease;
  --transition-bg: background-color 300ms ease;
  --transition-shadow: box-shadow 300ms ease;
  --transition-opacity: opacity 300ms ease;
  --transition-visibility: visibility 300ms ease;
  --cubic: ease;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.skip-link {
  display: none;
}

ul,
ol {
  padding-left: 0;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl {
  margin-block: 0;
}

h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
}

dd {
  margin-left: 0;
}

fieldset {
  margin-left: 0;
  padding: 0;
  border: none;
}

input,
textarea,
select,
button {
  font: inherit;
}

html {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

a {
  display: block;
  color: currentColor;
  text-decoration: none;
}

@media (pointer: fine) {
  button {
    cursor: pointer;
  }
}
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

section {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  section {
    padding: 60px 0;
  }
}
@media screen and (min-width: 1280px) {
  section {
    padding: 80px 0;
  }
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 480px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
    padding: 0 15px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.title {
  font-size: 26px;
}
@media screen and (min-width: 768px) {
  .title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .title {
    font-size: 40px;
  }
}

/*-------------- post page -------------*/
.post-text {
  /* Заголовки блогу */
}
.post-text ul {
  padding-left: 20px;
  list-style: disc;
}
.post-text ol {
  padding-left: 20px;
  list-style: decimal;
}
.post-text h1,
.post-text h2,
.post-text h3,
.post-text h4,
.post-text h5,
.post-text h6 {
  margin-block: 1em;
  line-height: 1.2;
  font-weight: bold;
}
.post-text p {
  margin-block: 1em;
  line-height: 1.6;
}
.post-text ul,
.post-text ol {
  margin-block: 1em;
}
.post-text li {
  margin-bottom: 0.5em;
}
.post-text dl {
  margin-block: 1em;
}
.post-text dd {
  margin-left: 20px;
}
.post-text h1 {
  font-size: 2.5rem;
}
.post-text h2 {
  font-size: 2rem;
  margin-bottom: 0.75em;
}
.post-text h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75em;
}
.post-text h4,
.post-text h5,
.post-text h6 {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}
.post-text blockquote {
  margin-block: 1.5em;
  padding: 1em;
  border-left: 4px solid #ccc;
  background-color: #f9f9f9;
  font-style: italic;
}
.post-text a {
  text-decoration: underline;
  -webkit-transition: var(--transition-opacity);
  transition: var(--transition-opacity);
  opacity: 1;
}
.post-text a:hover {
  opacity: 0.8;
}
.post-text table {
  width: 100%;
  border-collapse: collapse;
  margin-block: 1.5em;
}
.post-text th,
.post-text td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.post-text th {
  background-color: #f4f4f4;
}
.post-text img {
  display: block;
  border-radius: 12px;
}
.post-text .post-page-title {
  margin-block: 0;
}
.post-text .post-page-content {
  margin-top: 2.5em;
}
.post-text b,
.post-text strong {
  font-weight: 700;
}

svg {
  display: block;
}

.alignright {
  float: right;
  margin: 0 0 1em 2em;
}

.alignleft {
  float: left;
  margin: 0 2em 1em 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}

.is-menu-open {
  overflow: hidden;
}

.menu-btn {
  position: relative;
  z-index: 100;
  padding: 6px;
  width: 32px;
  height: 32px;
  background-color: blueviolet;
  color: white;
  border-radius: 100%;
}
@media screen and (min-width: 1280px) {
  .menu-btn {
    display: none;
  }
}
@media (pointer: fine) {
  .menu-btn {
    cursor: pointer;
  }
}

.menu-burger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all 0.3s var(--cubic);
  transition: all 0.3s var(--cubic);
}

.menu-cross {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all 0.3s var(--cubic);
  transition: all 0.3s var(--cubic);
  -webkit-transform: scale(0);
          transform: scale(0);
}

.burger-active .menu-burger {
  -webkit-transform: scale(0);
          transform: scale(0);
  z-index: -1;
}

.burger-active .menu-cross {
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 100;
}

.header-menu-wrapper.menu-open {
  opacity: 1;
  -webkit-transform: translateY(-4%);
          transform: translateY(-4%);
}

.backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: white;
  opacity: 0;
  -webkit-transition: all 0.3s var(--cubic);
  transition: all 0.3s var(--cubic);
}

.is-menu-open .backdrop {
  position: absolute;
  z-index: 98;
  inset: 0;
  background-color: white;
  opacity: 0.5;
  backdrop-filter: blur(5px);
}

.btn {
  position: relative;
  padding: 8px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 56px;
  border-radius: 100px;
  min-width: 234px;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  border: 1px solid transparent;
  background-image: radial-gradient(100% 140% at 100% 40%, #9839ea 0%, #281584 100%), linear-gradient(103deg, #432acd 3%, #9a4dff 38%, #ffb277 83%, #c364f6 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  -webkit-transition: var(--transition-opacity);
  transition: var(--transition-opacity);
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    opacity: 0.8;
  }
}

.header {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--snow);
}
@media screen and (min-width: 1280px) {
  .header {
    height: 84px;
  }
}

@media screen and (max-width: 1319px) {
  body:has(.nav-wrapper.menu-open) {
    overflow: hidden;
  }
}
.header-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-wrapper {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-link-logo {
  position: relative;
  width: 80px;
  height: 38px;
}
@media screen and (min-width: 1280px) {
  .header-link-logo {
    width: 98px;
    height: 38px;
  }
}
.header-link-logo > svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mobile-menu-button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 44px;
  height: 44px;
}
.mobile-menu-button > svg {
  width: 24px;
  height: 24px;
}
.menu-open .mobile-menu-button {
  display: none;
}
@media screen and (min-width: 1280px) {
  .mobile-menu-button {
    display: none;
  }
}

.header-link-logo.mobile {
  display: none;
  position: absolute;
  top: 24px;
  left: 16px;
}
.menu-open .header-link-logo.mobile {
  display: block;
}

@media screen and (max-width: 1319px) {
  .header-blur {
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(177, 177, 177, 0.46);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
    z-index: 999;
    -webkit-transition: var(--transition-opacity), -webkit-transform 250ms var(--cubic);
    transition: var(--transition-opacity), -webkit-transform 250ms var(--cubic);
    transition: transform 250ms var(--cubic), var(--transition-opacity);
    transition: transform 250ms var(--cubic), var(--transition-opacity), -webkit-transform 250ms var(--cubic);
  }
  .menu-open .header-blur {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.nav-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 16px;
}
@media screen and (max-width: 1319px) {
  .nav-list {
    top: 2%;
    left: 50%;
    width: 90%;
    padding: 104px 16px 128px;
    border-radius: 10px;
    background-color: var(--snow);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 1280px) {
  .nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.mobile-menu-close {
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 16px;
  display: block;
}
.mobile-menu-close > svg {
  stroke: var(--white);
}
@media screen and (min-width: 1280px) {
  .mobile-menu-close {
    display: none;
  }
}

.nav-link {
  width: 116px;
  position: relative;
  height: 44px;
  overflow: hidden;
  padding: 8px 20px;
  cursor: pointer;
}
.nav-link:last-child {
  width: 192px;
}
@media (hover: hover) and (pointer: fine) {
  .nav-link:hover .nav-l-w {
    -webkit-transform: translateY(-61%);
            transform: translateY(-61%);
  }
}
.nav-link.current {
  border-bottom: 2px solid var(--black-950);
}

.nav-l-w {
  width: 100%;
  position: absolute;
  top: 8px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 300ms linear;
  transition: -webkit-transform 300ms linear;
  transition: transform 300ms linear;
  transition: transform 300ms linear, -webkit-transform 300ms linear;
}
.nav-l-w > span {
  width: 100%;
  height: 44px;
  color: var(--gray-800);
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 154%;
  text-align: right;
}

.hh-section {
  background-color: var(--gray-50);
}
@media screen and (min-width: 1280px) {
  .hh-section {
    padding-top: 0;
  }
}

.hh-container {
  position: relative;
}
@media screen and (min-width: 1280px) {
  .hh-container {
    padding-top: 328px;
  }
}

.hh-title-wrap {
  position: relative;
  padding: 16px;
  width: 100%;
  background: var(--snow);
  -webkit-box-shadow: 11px 8px 40px 0 rgba(173, 173, 173, 0.11);
          box-shadow: 11px 8px 40px 0 rgba(173, 173, 173, 0.11);
  z-index: 3;
}
@media screen and (min-width: 1280px) {
  .hh-title-wrap {
    padding: 48px 40px;
    width: 878px;
  }
}

.hh-title {
  margin-bottom: 16px;
  color: var(--black-950);
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 124%;
}
@media screen and (min-width: 1280px) {
  .hh-title {
    font-size: 64px;
    text-align: left;
  }
}

.hh-text {
  margin-bottom: 32px;
  color: var(--gray-800);
  text-align: center;
  font-size: 15px;
  line-height: 153%;
}
@media screen and (min-width: 1280px) {
  .hh-text {
    display: block;
    max-width: 627px;
    margin-bottom: 40px;
    font-size: 18px;
    text-align: left;
  }
}

.hh-listen-on-wrap.desk {
  display: none;
}
@media screen and (min-width: 768px) {
  .hh-listen-on-wrap.desk {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.hh-listen-on-wrap.mob {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .hh-listen-on-wrap.mob {
    display: none;
  }
}

.hh-listen-on-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.hh-listen-on-wrap > svg {
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 1280px) {
  .hh-listen-on-wrap {
    gap: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.hh-listen-title {
  display: none;
}
@media screen and (min-width: 1280px) {
  .hh-listen-title {
    display: block;
    color: var(--gray-600);
    font-size: 18px;
    line-height: 153%;
    margin-right: 40px;
  }
}

.hh-listen-on-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 1280px) {
  .hh-listen-on-item:not(:last-child) {
    margin-right: 80px;
  }
}

.hh-image-mob {
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .hh-image-mob {
    display: none;
  }
}

.hh-image-desk {
  display: none;
}
@media screen and (min-width: 1280px) {
  .hh-image-desk {
    display: block;
    height: 614px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
}

.hh-book-wrap {
  position: relative;
  top: -12px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 335px;
  padding: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--gray-100);
  z-index: 2;
}
@media screen and (min-width: 1280px) {
  .hh-book-wrap {
    position: absolute;
    top: auto;
    bottom: 64px;
    right: 0;
    width: 392px;
    height: 285px;
    padding: 24px 32px;
  }
}

.hh-book-title {
  color: var(--black-950);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 128%;
}

.hh-image-book {
  width: 132px;
  height: 172px;
}

.hh-book-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 16px 6px 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  border: 1px solid var(--black-950);
}
.hh-book-link > svg {
  width: 24px;
  height: 24px;
}

.hh-book-text {
  color: var(--black-950);
  font-weight: 500;
  line-height: 136%;
  text-transform: uppercase;
}

.all-pod-title {
  color: var(--black-950);
  font-size: 28px;
  font-weight: 600;
  line-height: 128%;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .all-pod-title {
    font-size: 44px;
    text-align: start;
  }
}

.all-pod-title-nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .all-pod-title-nav-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.podcast-seasons-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 16px;
}
@media screen and (min-width: 768px) {
  .podcast-seasons-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}

.podcast-season-tab {
  padding: 4px;
  background-color: transparent;
  border: none;
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 400;
  line-height: 153%;
  -webkit-transition: var(--transition-color);
  transition: var(--transition-color);
}
@media (hover: hover) and (pointer: fine) {
  .podcast-season-tab:hover {
    color: var(--black-950);
  }
}
.podcast-season-tab.active {
  color: var(--black-950);
  border-bottom: 1px solid var(--black-950);
}

.all-pod-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .all-pod-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .all-pod-list > .related-item {
    width: auto;
    max-width: none;
  }
  .all-pod-list > .related-item > img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.featured-title {
  margin-bottom: 32px;
  color: var(--black-950);
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 128%;
}
@media screen and (min-width: 1280px) {
  .featured-title {
    font-size: 44px;
  }
}

.featured-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .featured-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 32px;
  }
}

.featured-item {
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .featured-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.featured-img-link {
  position: relative;
  width: 100%;
}

.featured-img {
  width: 100%;
  aspect-ratio: 21/9;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.featured-item-title {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--snow);
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
}
@media screen and (min-width: 1280px) {
  .featured-item-title {
    font-size: 24px;
  }
}

.featured-content-wrap {
  background: var(--gray-50);
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1280px) {
  .featured-content-wrap {
    padding: 24px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.featured-summary {
  margin-top: 4px;
  max-height: 60px;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 144%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  text-overflow: ellipsis;
}

.featured-more-link {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--black-950);
  font-weight: 500;
  line-height: 136%;
  text-transform: uppercase;
}
@media screen and (min-width: 1280px) {
  .featured-more-link {
    font-size: 18px;
  }
}
.featured-more-link > svg {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (min-width: 1280px) {
  .featured-play-button {
    margin-top: auto !important;
  }
}

.on-board-section {
  padding: 0;
}
@media screen and (min-width: 1280px) {
  .on-board-section {
    background: -webkit-gradient(linear, left top, right top, from(rgb(246, 246, 246)), color-stop(50%, rgb(246, 246, 246)), color-stop(50%, rgb(226, 226, 226)), to(rgb(226, 226, 226)));
    background: linear-gradient(90deg, rgb(246, 246, 246) 0%, rgb(246, 246, 246) 50%, rgb(226, 226, 226) 50%, rgb(226, 226, 226) 100%);
  }
}

.on-board-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .on-board-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.on-b-powered {
  width: 100%;
  padding: 40px 20px;
  background: var(--gray-50);
}
@media screen and (min-width: 1280px) {
  .on-b-powered {
    padding: 80px 48px;
  }
}
.on-b-powered img {
  width: 183px;
  height: 64px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1280px) {
  .on-b-powered img {
    width: 345px;
    height: 121px;
    margin-bottom: 24px;
  }
}

.on-b-title {
  margin-bottom: 32px;
  color: var(--black-950);
  font-size: 20px;
  font-weight: 500;
  line-height: 144%;
}
@media screen and (min-width: 1280px) {
  .on-b-title {
    margin-bottom: 24px;
    font-size: 24px;
  }
}

.on-b-text {
  color: var(--gray-800);
  line-height: 153%;
}
@media screen and (min-width: 1280px) {
  .on-b-text {
    font-size: 18px;
  }
}

.on-b-hosted {
  width: 100%;
  padding: 40px 20px;
  background: var(--gray-100);
}
@media screen and (min-width: 1280px) {
  .on-b-hosted {
    padding: 80px 48px;
  }
}

.on-b-h-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
@media screen and (min-width: 1280px) {
  .on-b-h-wrap {
    margin-bottom: 24px;
  }
}

.douglas-img {
  width: 98px;
  height: 98px;
}
@media screen and (min-width: 1280px) {
  .douglas-img {
    width: 194px;
    height: 194px;
  }
}

.on-b-h-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 8px;
}
@media screen and (min-width: 1280px) {
  .on-b-h-text-wrap {
    gap: 12px;
  }
}

.douglas-name {
  color: var(--black-950);
  font-size: 24px;
  font-weight: 500;
  line-height: 123%;
}
@media screen and (min-width: 1280px) {
  .douglas-name {
    font-size: 36px;
  }
}

.on-b-h-position-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 1280px) {
  .on-b-h-position-wrap {
    gap: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.on-b-h-position-wrap img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 71px;
  height: 60px;
}
@media screen and (min-width: 1280px) {
  .on-b-h-position-wrap img {
    width: 114px;
    height: 96px;
  }
}

.on-b-h-position {
  color: var(--gray-600);
  line-height: 128%;
}
@media screen and (min-width: 1280px) {
  .on-b-h-position {
    font-size: 20px;
  }
}

.contributing-firms-wrap {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contributing-firms-i-w {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 160px;
  height: 92px;
  padding: 16px;
  background: var(--gray-50);
}
@media screen and (min-width: 1280px) {
  .contributing-firms-i-w {
    width: 236px;
    height: 140px;
    padding: 30px 27px;
  }
}

.firm-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
}

.episodes-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
}
@media screen and (min-width: 1280px) {
  .episodes-title-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.episodes-title {
  color: var(--black-950);
  font-size: 28px;
  font-weight: 600;
  line-height: 128%;
}
@media screen and (min-width: 1280px) {
  .episodes-title {
    font-size: 44px;
  }
}

.episodes-soc-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (min-width: 1280px) {
  .episodes-soc-wrap {
    gap: 24px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.episodes-soc-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 12px 24px;
  width: 220px;
  height: 48px;
  border: 1px solid var(--black-950);
  -webkit-transition: all 250ms var(--cubic);
  transition: all 250ms var(--cubic);
}
@media screen and (min-width: 1280px) {
  .episodes-soc-link {
    width: 128px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .episodes-soc-link:hover {
    background-color: var(--black-950);
    color: var(--snow);
  }
}

.episodes-soc-link-i-w {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.episodes-soc-link-i-w > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  -webkit-transition: var(--transition-opacity);
  transition: var(--transition-opacity);
}
.episodes-soc-link-i-w > svg:first-child {
  opacity: 1;
}
.episodes-soc-link-i-w > svg:last-child {
  opacity: 0;
}

.episodes-soc-link:hover .episodes-soc-link-i-w > svg:first-child {
  opacity: 0;
}

.episodes-soc-link:hover .episodes-soc-link-i-w > svg:last-child {
  opacity: 1;
}

.podcasts-controls {
  width: 100%;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and (min-width: 1280px) {
  .podcasts-controls {
    margin-bottom: 32px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.search-wrap {
  width: 100%;
  max-width: 634px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

#podcast-search {
  padding: 6px 16px;
  height: 100%;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--black-950);
}

#podcast-search-clear {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  border: none;
  width: 40px;
  height: 40px;
}
#podcast-search-clear > svg {
  width: 100%;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sort-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px 40px;
}
@media screen and (min-width: 1280px) {
  .sort-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 32px;
  }
}

.sort-tab {
  background-color: transparent;
  border: none;
  color: var(--gray-600);
  text-align: center;
  font-size: 18px;
  line-height: 153%;
  border-bottom: 1px solid transparent;
  -webkit-transition: var(--transition-color);
  transition: var(--transition-color);
}
@media (hover: hover) and (pointer: fine) {
  .sort-tab:hover {
    color: var(--black-950);
  }
}
.sort-tab.active {
  color: var(--black-950);
  border-bottom: 1px solid var(--black-950);
}

.podcast-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .podcast-list {
    gap: 24px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.ep-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .ep-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 218px;
  }
}

.ep-img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .ep-img {
    max-width: 350px;
    height: 218px;
  }
}
@media screen and (min-width: 1280px) {
  .ep-img {
    max-width: 400px;
  }
}

.ep-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px;
  background: var(--gray-50);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .ep-content-wrap {
    height: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .ep-content-wrap {
    padding: 16px 24px 16px 24px;
  }
}

.related-ep-wrap.ep-ep-wrap {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ep-read-more-wrap {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ep-read-more-wrap > a, .ep-read-more-wrap > button {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .ep-read-more-wrap {
    margin-top: auto;
  }
}

.podcast-footer-controls {
  margin-top: 32px;
}
@media screen and (min-width: 1280px) {
  .podcast-footer-controls {
    margin-top: 48px;
  }
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

.page-numbers {
  padding: 10px;
  color: var(--gray-600);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 116%;
  border-bottom: 1px solid transparent;
}
.page-numbers.current {
  color: var(--black-950);
  border-bottom: 1px solid var(--black-950);
}

.pt-section h1,
.pt-section h2,
.pt-section h3,
.pt-section ul,
.pt-section li {
  margin-bottom: 16px;
}
@media screen and (min-width: 1280px) {
  .pt-section h1,
  .pt-section h2,
  .pt-section h3,
  .pt-section ul,
  .pt-section li {
    margin-bottom: 24px;
  }
}

.pt-section p {
  margin-bottom: 16px;
}

.pod-section {
  padding-top: 24px;
}
@media screen and (min-width: 1280px) {
  .pod-section {
    padding-top: 0;
  }
}

.pod-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pod-hero-img {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pod-hero-img {
    display: block;
    width: 100%;
    margin-bottom: 32px;
  }
}

.pod-main-wrap {
  max-width: 842px;
  padding: 80px 0;
}

.pod-ep-container {
  position: relative;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1280px) {
  .pod-ep-container {
    margin-bottom: 32px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 56px;
  }
}

.pod-ep-current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--black-950);
  font-size: 14px;
  font-weight: 400;
  line-height: 116%;
}
.pod-ep-current.disabled {
  color: var(--gray-600);
}
.pod-ep-current > svg {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pod-title {
  margin-bottom: 24px;
  color: var(--black-950);
  font-size: 24px;
  font-weight: 600;
  line-height: 128%;
}
@media screen and (min-width: 1280px) {
  .pod-title {
    margin-bottom: 32px;
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    line-height: 123%;
  }
}

.pod-h2-title {
  margin-bottom: 16px;
  color: var(--black-950);
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (min-width: 1280px) {
  .pod-h2-title {
    font-size: 24px;
  }
}

.pod-text {
  margin-bottom: 24px;
  color: var(--gray-900);
  line-height: 148%;
}
@media screen and (min-width: 1280px) {
  .pod-text {
    margin-bottom: 32px;
    font-size: 18px;
  }
}

.pod-music-fut-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
@media screen and (min-width: 1280px) {
  .pod-music-fut-list {
    margin-bottom: 32px;
  }
}

.pod-music-fut-item {
  color: var(--gray-900);
}
@media screen and (min-width: 1280px) {
  .pod-music-fut-item {
    font-size: 18px;
  }
}

.pod-res-fut-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.pod-res-fut-item > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1px;
  height: 16px;
  background-color: var(--gray-900);
}

.pod-res-name {
  color: var(--gray-900);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 153%;
}
@media screen and (min-width: 1280px) {
  .pod-res-name {
    font-size: 18px;
  }
}

.pod-res-link {
  color: var(--gray-900);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 153%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
}
@media screen and (min-width: 1280px) {
  .pod-res-link {
    font-size: 18px;
  }
}

.pod-player-main-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1280px;
  z-index: 3;
}
@media screen and (min-width: 1280px) {
  .pod-player-main-wrap {
    position: sticky;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    top: 84px;
  }
}

.pod-player-img {
  width: 100%;
  max-width: 375px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 1280px) {
  .pod-player-img {
    max-width: none;
    width: 220px;
    height: 220px;
  }
}

.pod-player-wrap {
  max-width: 375px;
  padding: 16px;
  background-color: var(--snow);
  -webkit-box-shadow: 0 6px 24px 0 rgba(164, 175, 180, 0.22);
          box-shadow: 0 6px 24px 0 rgba(164, 175, 180, 0.22);
}
@media screen and (min-width: 1280px) {
  .pod-player-wrap {
    max-width: 1030px;
    padding: 24px;
  }
}

.pod-player-button {
  width: 100%;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  background-color: transparent;
  border: none;
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  .pod-player-button {
    margin-bottom: 24px;
  }
}
.pod-player-button > svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 44px;
  height: 44px;
}
@media screen and (min-width: 1280px) {
  .pod-player-button > svg {
    width: 56px;
    height: 56px;
  }
}
.pod-player-button .pod-player-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--black-950);
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

.pod-player-voice {
  width: 100%;
  height: 52px;
  margin-bottom: 24px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pod-player-voice > svg {
  height: 100%;
  width: auto;
  aspect-ratio: 1012/52;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  max-width: none;
}

.pod-player-share-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.pod-share-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  height: 16px;
  background-color: transparent;
  border: none;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 116%;
  text-transform: uppercase;
}
.pod-share-button > svg {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pod-book-link-w {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1280px) {
  .pod-book-link-w {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.pod-book-link-text {
  color: var(--gray-900);
}

.pod-book-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 24px 4px 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--white);
  background: var(--black-950);
}
.pod-book-link > svg {
  width: 40px;
  height: 40px;
}

.related-pod-section {
  background-color: var(--gray-50);
}

.rated-title {
  margin-bottom: 32px;
  color: var(--black-950);
  font-size: 28px;
  font-weight: 600;
  line-height: 128%;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .rated-title {
    text-align: start;
    font-size: 44px;
  }
}

.rated-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.related-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .related-item {
    max-width: 392px;
    width: 392px;
  }
}
@media screen and (min-width: 1280px) {
  .related-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 196px;
  }
}

.related-img {
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .related-img {
    width: 196px;
    height: 196px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.related-content-wrap {
  padding: 16px;
  background-color: var(--snow);
}
.all-pod-list .related-content-wrap {
  background: var(--gray-50);
}
@media screen and (min-width: 1280px) {
  .related-content-wrap {
    width: 100%;
  }
}

.related-ep-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 16px 0 12px;
  max-height: 16px;
}
@media screen and (min-width: 1280px) {
  .related-ep-wrap {
    margin: 0 0 16px 0;
  }
}

.related-season-title {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 116%;
}

.related-ep-title {
  color: var(--black-950);
  font-size: 14px;
  line-height: 116%;
}

.related-title {
  color: var(--black-950);
  font-size: 18px;
  font-weight: 500;
  line-height: 144%;
  max-height: 52px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
}

.related-summary {
  margin-top: 4px;
  color: var(--gray-700);
  line-height: 144%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
}
@media screen and (min-width: 1280px) {
  .related-summary {
    font-size: 14px;
    max-height: 40px;
  }
}

.related-play-button {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background-color: transparent;
  border: none;
}

.modal-container-wrap {
  padding: 0 !important;
  border-radius: 0 !important;
}

.modal-play-container {
  width: 335px !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  padding: 0 !important;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .modal-play-container {
    width: 406px !important;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  padding: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 20px;
  background: rgba(254, 254, 254, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-play-img {
  height: 220px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.modal-play-content-wrap {
  padding: 24px;
  background-color: var(--snow);
}

.modal-play-title {
  margin-bottom: 4px;
  color: var(--black-950);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 128%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
}

.modal-play-summary {
  color: var(--gray-700);
  text-align: center;
  line-height: 148%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  text-overflow: ellipsis;
}

.modal-play-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  background: var(--gray-50);
}

.modal-play-item {
  height: 24px;
  width: 100%;
  cursor: pointer;
}

.modal-play-link {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-play-icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.modal-play-icon-wrap > svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.modal-play-platform {
  color: var(--black-950);
  font-size: 16px;
  line-height: 148%;
}

.modal-play-play-text {
  color: var(--black-950);
  font-weight: 500;
  line-height: 148%;
  text-transform: uppercase;
}

.modal-sub-container {
  height: auto !important;
  max-height: none !important;
  max-width: 492px !important;
}

.sub-modal-title {
  margin-bottom: 32px;
  color: var(--black-950);
  font-size: 20px;
  font-weight: 500;
  line-height: 128%;
}

.sub-modal-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .sub-modal-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.modal-sub-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal-sub-link > svg {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.share-modal-subtitle {
  margin-bottom: 16px;
  color: var(--black-950);
  font-weight: 500;
  line-height: 148%;
}

.share-modal-shared-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 56px 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-radius: 8px;
  background-color: var(--gray-50);
  line-height: 148%;
}

.share-modal-copy-button {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: none;
  padding: 0;
}
.share-modal-copy-button > svg {
  width: 100%;
  height: 100%;
}
.share-modal-copy-button > svg:first-child {
  display: block;
}
.share-modal-copy-button > svg:last-child {
  display: none;
}
.share-modal-copy-button.copied > svg:first-child {
  display: none;
}
.share-modal-copy-button.copied > svg:last-child {
  display: block;
}

.share-modal-decor-line {
  margin: 24px 0;
  width: 100%;
  height: 1px;
  background-color: var(--gray-100);
}

.share-sub-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background-color: transparent;
  border: none;
}
.share-sub-btn > svg {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.modal-share-platform {
  color: var(--gray-800);
  font-size: 14px;
  line-height: 116%; /* 16.24px */
}

/**************************\
  Basic Modal Styles
\**************************/
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}

.modal-container-wrap {
  padding: 4px;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.modal__container {
  position: relative;
  background-color: var(--white);
  padding: 24px 16px;
  max-width: 800px;
  max-height: 680px;
  height: 96svh;
  width: 94svw;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--light-blue) transparent;
}
@media screen and (min-width: 1280px) {
  .modal__container {
    padding: 24px;
  }
}
.modal__container.modal-form-container {
  padding: 0;
  max-width: 620px;
}

/**************************\
  Demo Animation Style
\**************************/
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.modal-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}

.modal-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--blue);
}

.modal-close {
  -webkit-transition: all 250ms var(--cubic);
  transition: all 250ms var(--cubic);
  border-radius: 100%;
  padding: 4px;
}
@media (pointer: fine) {
  .modal-close {
    cursor: pointer;
  }
}
@media (hover: hover) and (pointer: fine) {
  .modal-close:hover {
    background-color: var(--light-blue);
  }
}
.modal-close svg {
  pointer-events: none;
}

.contact-us-section {
  background-color: var(--black-950);
}

.contact-form-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1280px) {
  .contact-form-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.contact-form-wrap > div {
  width: 100%;
}

.contact-form-title {
  color: var(--snow);
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 128%;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .contact-form-title {
    display: block;
    max-width: 405px;
    font-size: 44px;
    text-align: start;
  }
}

form input,
textarea {
  padding: 14px 20px;
  background-color: rgba(61, 61, 61, 0.3);
  border: 1px solid transparent;
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 400;
  line-height: 153%;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  form input:hover,
  textarea:hover {
    border: 1px solid var(--gray-700);
  }
}
@media screen and (min-width: 1280px) {
  form input,
  textarea {
    max-width: 412px;
  }
}

form textarea {
  max-width: none;
  height: 162px;
  resize: none;
}

form input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 400;
  line-height: 153%;
}

form input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 400;
  line-height: 153%;
}

form input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 400;
  line-height: 153%;
}

form input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 400;
  line-height: 153%;
}

form input::placeholder,
textarea::placeholder {
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 400;
  line-height: 153%;
}

.form-contact-wrap {
  margin-bottom: 24px;
}
@media screen and (min-width: 1280px) {
  .form-contact-wrap {
    margin-bottom: 32px;
  }
}
.form-contact-wrap > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1280px) {
  .form-contact-wrap > p {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px 20px;
  }
}
.form-contact-wrap span {
  display: block;
}

form > p {
  display: block;
}

.wpcf7-response-output {
  margin: 24px 0 0 0 !important;
  font-size: 18px;
  color: var(--snow);
  border-color: var(--snow) !important;
  padding: 12px 24px !important;
}

.wpcf7-form-control.wpcf7-submit.has-spinner {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 16px 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--snow);
  color: var(--black-950);
  font-size: 18px;
  font-weight: 500;
  line-height: 136%;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 260px;
    margin-top: 32px;
  }
}

.wpcf7-spinner {
  display: none;
}

.footer-section {
  padding: 40px 0;
}
@media screen and (min-width: 1280px) {
  .footer-section {
    padding: 24px 0;
  }
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--gray-100, #e2e2e2);
  padding-bottom: 16px;
}
@media screen and (min-width: 1280px) {
  .footer-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer-link-logo {
  width: 130px;
  height: 38px;
  margin: 0 0 32px 0;
}
.footer-link-logo > svg {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1280px) {
  .footer-link-logo {
    margin: 0 auto 0 0;
  }
}

.footer-nav-link {
  padding: 8px;
  color: var(--gray-900);
  line-height: 148%;
  -webkit-transition: all 250ms var(--cubic);
  transition: all 250ms var(--cubic);
  border-bottom: 1px solid transparent;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav-link:hover {
    color: var(--black-950);
    border-bottom: 1px solid var(--black-950);
  }
}

.footer-nav-link:not(:last-child) {
  margin: 0 0 12px 0;
}
@media screen and (min-width: 1280px) {
  .footer-nav-link:not(:last-child) {
    margin: 0 48px 0 0;
  }
}

.footer-terms-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 16px;
  padding-bottom: 24px;
  gap: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1280px) {
  .footer-terms-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
  }
}

.wpautoterms-footer {
  display: none;
}

.dev-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dev-text {
  color: var(--gray-900);
  font-size: 14px;
  font-weight: 400;
}

.dev-link {
  color: var(--gray-900);
  font-size: 14px;
  text-decoration: underline;
}/*# sourceMappingURL=main.css.map */