/* input(6000,1): run-time error CSS1019: Unexpected token, found '}' */
​html {
  scroll-behavior: smooth;
}

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

.primary-button {
  border-radius: var(--border-radius-button);
  display: flex;
  min-height: 50px;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  background: var(--primary, #a000ed);
  color: var(--white, #fff);
  flex-shrink: 0;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;

  /* large-body-medium */
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

.white-button {
  border-radius: var(--border-radius-button);
  display: flex;
  min-height: 50px;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  background: var(--white, #fff);
  color: var(--bg-dark, #141152);
  flex-shrink: 0;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;

  /* large-body-medium */
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

.cyan-button {
  border-radius: var(--border-radius-button);
  display: flex;
  min-height: 50px;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  background: var(--tertiary, #82f5de);
  color: var(--black, #000);
  flex-shrink: 0;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;

  /* large-body-medium */
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

.full-width {
  width: 100%;
}

.input {
  display: flex;
  width: 372px;
  height: 50px;
  padding: 10px 23px;
  align-items: center;
  gap: 10px;
  border-radius: var(--corner-radius-xxxl, 50px);
  border: 1px solid var(--secondary, #97c7b5);
  background: var(--white, #fff);
  color: var(--body-color, #5a6a79);

  /* medium-body-medium */
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.highlight {
  color: var(--primary, #a000ed);
}

.highlight-extra {
  color: var(--primary-extra, #6970ff);
}

.input-button-group {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.link {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus,
.skip-link:active {
  position: static;
  left: 0;
  width: auto;
  height: auto;
  background: var(--white, #fff);
  color: var(--bg-dark, #141152);
  padding: 8px 12px;
  z-index: 1000;
  text-decoration: none;
  border-radius: 4px;
}

.color-black {
  color: var(--black, #000);
}

.body-color {
  color: var(--body-color, #5a6a79);
}

.no-vertical-padding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

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

* {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: normal;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Geologica", sans-serif;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-richtext :is(ul, pl) {
  list-style: disc;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

.heading-xxxl,
.heading-xxxl--responsive {
  font-family: Geologica;
  font-size: 93px;
  font-style: normal;
  font-weight: 500;
  line-height: 75.256px;
  letter-spacing: -2.792px;
}

.heading-xxl,
.heading-xxl--responsive {
  font-family: Geologica;
  font-size: 87px;
  font-style: normal;
  font-weight: 500;
  line-height: 87px;
  /* 100% */
  letter-spacing: -2.61px;
}

.heading-h1,
.heading-h1--responsive,
.heading-h2,
.heading-h2--responsive {
  font-family: Geologica;
  font-style: normal;
  font-weight: 500;
}

.heading-h1 {
  font-size: 66px;
  line-height: 66px;
  /* 100% */
  letter-spacing: -1.98px;
}

.heading-h1--responsive {
  font-size: clamp(38px, calc(20.67px + 3.15vw), 66px);
  line-height: clamp(42px, calc(26px + 2.78vw), 66px);
  letter-spacing: -1.98px;
}

.heading-h2 {
  font-size: 42px;
  line-height: 46px;
  letter-spacing: -1.26px;
}

.heading-h2--responsive {
  font-size: clamp(30px, calc(25.14px + 1.52vw), 42px);
  line-height: clamp(36px, calc(31.95px + 1.26vw), 46px);
  letter-spacing: -1.26px;
}

.heading-h3,
.heading-h3--responsive {
  font-family: Geologica;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  /* 120% */
  letter-spacing: -0.9px;
}

.heading-h4,
.heading-h4--responsive {
  font-family: Geologica;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  /* 123.077% */
  letter-spacing: -0.78px;
}

.heading-h5,
.heading-h5--responsive {
  font-family: Geologica;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 127.273% */
  letter-spacing: -0.66px;
}

.heading-h6 {
  font-family: Geologica;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  /* 130% */
  letter-spacing: -0.4px;
}

.large-body-medium {
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  /* 137.5% */
}

.large-body-light {
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  /* 137.5% */
}

.large-body-regular {
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 137.5% */
}

.large-body-medium--bold {
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  /* 137.5% */
}

.large-body-small--bold {
  font-family: Geologica;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  /* 183.333% */
}

.medium-body-light {
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  /* 128.571% */
}

.medium-body-medium {
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
}

.medium-body-regular {
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

.medium-body-semibold {
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 142.857% */
}

.small-body-medium {
  font-family: Geologica;
  font-size: 12.702px;
  font-style: normal;
  font-weight: 500;
  line-height: 17.465px;
  /* 137.5% */
}

.small-body-regular {
  font-family: Geologica;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  /* 141.667% */
}

.xl-body-medium {
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 133.333% */
}

.xl-body-light {
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 29px;
  /* 161.111% */
}

.xxl-body-light {
  font-family: Geologica;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}

.xxl-body-light {
  font-size: clamp(16px, calc(13.53px + 0.45vw), 20px);
  line-height: clamp(24px, calc(21.53px + 0.45vw), 28px);
}

.xxl-display-light,
.xxl-display-light--responsive,
.xxl-display {
  font-family: Geologica;
  font-style: normal;
  font-weight: 500;
}

.xxl-display-light,
.xxl-display-light--responsive {
  font-size: 89px;
  line-height: 66px;
  letter-spacing: -2.67px;
}

.xxl-display {
  font-size: clamp(38px, calc(21.14px + 5.27vw), 97.192px);
  line-height: clamp(42px, calc(25.71px + 5.09vw), 99px);
  letter-spacing: -2.916px;
}

.large-heading-medium,
.large-heading-medium--responsive {
  font-family: Geologica;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  /* 120% */
  letter-spacing: -0.9px;
}

.medium-heading-bold {
  font-family: Geologica;
  font-size: 42.553px;
  font-style: normal;
  font-weight: 700;
  line-height: 56.737px;
  /* 133.333% */
}

.body-text-regular {
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%;
  /* 23.68px */
}

@media (max-width: 1200px) {

  .heading-xxxl--responsive {
    /* heading-h1 */
    font-family: Geologica;
    font-size: 66px;
    font-style: normal;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -1.98px;
  }

  .heading-xxl--responsive {
    /* heading-h2 */
    font-family: Geologica;
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 46px;
    letter-spacing: -1.26px;
  }
}

@media (max-width: 768px) {

  .heading-h3--responsive {
    /* heading-h6 */
    font-family: Geologica;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.4px;
  }

  .heading-h3--responsive.h4 {
    /* heading-h4 */
    font-family: Geologica;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.78px;
  }

  .heading-h4--responsive {
    /* heading-h6 */
    font-family: Geologica;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.4px;
  }

  .heading-h4--responsive.h5 {
    /* heading-h5 */
    font-family: Geologica;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.66px;
  }

  .heading-h5--responsive {
    font-size: 19.272px;
    font-style: normal;
    font-weight: 500;
    line-height: 24.528px;
    /* 127.273% */
    letter-spacing: -0.578px;
  }

  .large-heading-medium--responsive {
    /* heading-h4 */
    font-family: Geologica;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.78px;
  }

  .xxl-display-light--responsive {
    /* heading-h1 */
    font-family: Geologica;
    font-size: 66px;
    font-style: normal;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -1.98px;
  }
}

:root {
  /* Color Palette */
  --bg-dark: #141152;
  --bg-darker: #2a0745;
  --bg-footer: #defff8;
  --bg-light: #f5f6fa;
  --bg-audio-circle: #e6e6ff;
  --main-shape-bg: #374152;

  --border-color: #d8d8f2;

  --school-color: #293755;
  --school-color-2: #cba155;

  --primary: #a000ed;
  --primary-button: #a612ee;
  --primary-light: #fd19fd;
  --primary-extra: #6970ff;
  --primary-fade: #fadfdf;

  --secondary: #97c7b5;
  --tertiary: #82f5de;

  --body-color: #5a6a79;
  --body-color-dark: #5a6a86;

  --accent: #df9715;

  --stroke: #e7e7ff;

  --white: #ffffff;
  --white-gray: #eee;
  --gray-lightest: #eaeaea;
  --gray-warm: #c5c5c5;
  --gray-light: #bac7dc;
  --gray-light-border: #d2dae6;
  --gray-dark: #313131;
  --grayscale-white: #d1d4e0;
  --grayscale-light: #bdbdbd;

  --black: #000;
  --brown-dark: #2c2720;
  --yellow-dark: #FFC600;
  --yellow: #ffd200;

  /* Backgrounds */
  --linear: linear-gradient(90deg, #77f 0%, #a80fed 82.46%);
  --linear-light: linear-gradient(180deg, #acceff 0%, #c99dfe 100%);
  --linear-dark: linear-gradient(90deg, #42275a 0%, #734b6d 100%);
  --linear-fade: linear-gradient(0deg,
      rgba(236, 244, 255, 0) -0.76%,
      #f6efff 94.49%);
  --radial: radial-gradient(94.49% 94.49% at 16.82% 100%,
      #ecf4ff 0%,
      #f6efff 100%);

  /* Border Radius */
  --border-radius-button: 71px;
  --border-radius-card: 20px;
  --border-radius-chip: 26px;
  --border-radius-footer: 44px 44px 0 0;
  --footer-overlap: 40px;
  --corner-radius-xxxl: 50px;
  --corner-radius-xxxl: 22px;
  --corner-radius-md: 6px;
  --corner-radius-sm: 8px;
  --corner-radius-lg: 10px;
  --corner-radius-xl: 16px;
  --corner-radius-mxl: 15px;
  --border-radius-card-secondary: 21px;
  --border-radius-button-large: 120px;
  --border-radius-input: 31px;
}

.accordion-item {
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
}

.accordion-item:not(:last-child) {
  border-bottom: 1px solid var(--primary-light, #fd19fd);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.3s ease;
  color: var(--black);
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.accordion-icon svg {
  display: block;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: auto;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content::-webkit-scrollbar {
  display: none;
}

.accordion-content-inner {
  padding: 10px 32px 0 0;
}

.accordion-item.active .accordion-header {
  color: var(--primary);
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-icon {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-180deg) skew(0deg, 0deg);
}

.watercolor-bg {
  width: 100%;
  min-height: 506px;
  flex-shrink: 0;
  background: var(--radial,
      radial-gradient(94.49% 94.49% at 16.82% 100%, #ecf4ff 0%, #f6efff 100%));
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.articles-header-container {
  max-width: 1540px;
  width: 100%;
  display: flex;
  gap: 12px;
  box-sizing: border-box;
}

.articles-header {
  display: flex;
  flex: 1;
  min-width: 0;
  min-height: 377px;
  padding: 40px 0 22px 36px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
}

.articles-header-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 17px;
  align-self: stretch;
}

.articles-header-image-container {
  width: 100%;
  max-width: 581px;
  height: 377px;
  overflow: hidden;
  border-radius: var(--border-radius-card, 20px);
  box-shadow: 0 14px 23.2px 0 rgba(32, 44, 78, 0.35);
  flex-shrink: 1;
}

.articles-header-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tags-container {
  display: flex;
  align-items: center;
  gap: 17px;
  align-self: stretch;
  flex-wrap: wrap;
}

.articles-body {
  padding: 71px 24px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.articles-body-container {
  display: flex;
  max-width: 1540px;
  width: 100%;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 90px;
}

.articles-body-paragraphs-container {
  display: flex;
  max-width: 992px;
  flex-direction: column;
  gap: 39px;
  flex: 1;
  min-width: 0;
}

.articles-body-paragraph-title {
  margin-bottom: 18px;
}

.author-info-container {
  display: flex;
  width: 272px;
  flex-direction: column;
  gap: 18px;
  align-items: start;
  flex-shrink: 0;
}

.author-info-title-description-socials {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-info-container-image {
  max-width: 102px;
  height: 102px;
  overflow: hidden;
  border-radius: var(--border-radius-card, 20px);
}

.author-info-container-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.socials-container {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 29px;
  margin-top: 27px;
}

.new-topics-container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
}

.new-topics {
  display: flex;
  max-width: 1540px;
  width: 100%;
  padding: 22px 0;
  align-self: stretch;
  align-items: center;
  gap: 28px;
  justify-content: flex-start;
  border-top: 1px solid var(--border-light, #e0e0e0);
  border-bottom: 1px solid var(--border-light, #e0e0e0);
  margin-bottom: 42px;
  flex-wrap: wrap;
}

.error-404 {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 96px 24px 120px;
  background:
    linear-gradient(135deg, rgba(166, 18, 238, 0.12) 0 18%, transparent 18% 100%),
    linear-gradient(315deg, rgba(118, 120, 255, 0.12) 0 16%, transparent 16% 100%),
    repeating-linear-gradient(135deg, rgba(20, 17, 82, 0.04) 0 1px, transparent 1px 28px),
    var(--bg-light, #f8f3ff);
}

.error-404::before,
.error-404::after {
  position: absolute;
  width: min(44vw, 520px);
  height: min(44vw, 520px);
  content: "";
  border: 1px solid rgba(166, 18, 238, 0.14);
  transform: rotate(18deg);
  pointer-events: none;
}

.error-404::before {
  top: max(-180px, -12vw);
  right: max(-130px, -8vw);
  background: rgba(255, 255, 255, 0.32);
}

.error-404::after {
  bottom: max(-210px, -14vw);
  left: max(-150px, -9vw);
  background: rgba(118, 120, 255, 0.08);
}

.error-404__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  max-width: 1200px;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
}

.error-404__code {
  margin: 0;
  color: rgba(166, 18, 238, 0.16);
  font-family: Geologica;
  font-size: clamp(140px, 21vw, 310px);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.error-404__content {
  display: flex;
  max-width: 610px;
  flex-direction: column;
  align-items: flex-start;
}

.error-404__eyebrow {
  margin: 0 0 18px;
  color: var(--primary, #a000ed);
}

.error-404__title {
  margin: 0;
  color: var(--bg-dark, #141152);
}

.error-404__hint {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--body-color, #5a6a79);
}

.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.error-404__button {
  text-decoration: none;
}

@media (max-width: 1024px) {
  .watercolor-bg {
    min-height: auto;
  }

  .articles-header-container {
    flex-direction: column-reverse;
    gap: 24px;
    padding: 24px 0;
  }

  .articles-header {
    min-height: auto;
    padding: 0;
  }

  .articles-body {
    padding: 50px 20px 0;
  }

  .articles-body-container {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
  }

  .articles-body-paragraphs-container {
    max-width: 100%;
    order: 2;
  }

  .author-info-container {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    order: 1;
  }

  .author-info-container-image {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .new-topics-container {
    padding: 0 20px;
  }

  .new-topics {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .error-404 {
    min-height: 560px;
    padding: 72px 20px 96px;
  }

  .error-404__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .error-404__code {
    font-size: clamp(108px, 34vw, 180px);
  }
}

@media (max-width: 480px) {

  .error-404__actions,
  .error-404__button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .articles-header-container {
    padding: 20px 0 40px;
  }

  .articles-header {
    gap: 8px;
  }

  .articles-header-text {
    gap: 12px;
  }

  .tags-container {
    gap: 10px;
  }

  .articles-body {
    padding: 32px 16px 0;
  }

  .articles-body-container {
    gap: 32px;
    margin-bottom: 40px;
  }

  .articles-body-paragraphs-container {
    gap: 28px;
  }

  .articles-body-paragraph-title {
    margin-bottom: 12px;
  }

  .author-info-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .author-info-container-image {
    width: 80px;
    height: 80px;
    border-radius: 16px;
  }

  .socials-container {
    gap: 20px;
    margin-top: 20px;
  }

  .new-topics-container {
    padding: 0 16px;
  }

  .new-topics {
    padding: 18px 0;
    gap: 16px;
    margin-bottom: 32px;
  }
}

.audio-player {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.player-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.progress-container svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.progress-bg {
  fill: none;
  stroke: var(--bg-audio-circle, #e6e6ff);
  stroke-width: 4;
}

.progress-bar {
  fill: none;
  stroke: var(--primary, #a000ed);
  stroke-width: 4;
  stroke-linecap: square;
  stroke-dasharray: 144.51;
  /* 2 * π * 23 */
  stroke-dashoffset: 144.51;
  transition: stroke-dashoffset 0.1s linear;
}

.play-icon {
  position: relative;
  z-index: 2;
  width: 14px;
  height: 16px;
  flex-shrink: 0;
  left: 1px;
}

.play-icon path {
  fill: var(--primary);
}

.pause-icon {
  position: relative;
  z-index: 2;
  display: none;
  gap: 2px;
}

.pause-icon span {
  width: 5.09px;
  height: 16.29px;
  background: var(--primary);
  border-radius: 3.054px;
}

.audio-player.playing .play-icon {
  display: none;
}

.audio-player.playing .pause-icon {
  display: flex;
}

.carousel-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  border-radius: 15px;
}

.slide-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.swiper-pagination {
  bottom: 32px !important;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-bullet {
  width: 85px;
  height: 2px;
  background: #EEE;
  opacity: 1;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet:hover:not(.swiper-pagination-bullet-active) {
  transform: scaleY(2) scaleX(1.1);
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active,
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #68DE50;
}

section.bg-white .swiper-pagination-bullet.swiper-pagination-bullet-active,
section.bg-white .swiper-pagination-bullets .swiper-pagination-bullet-active,
section.bg-white.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: var(--primary);
}

@media (max-width: 600px) {
  .swiper-slide {
    min-height: 350px;
  }
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--grayscale-white, #d1d4e0);
  background: var(--grayscale-white, #fff);
}

.header-container.contact-us-bg {
  background: var(--linear-dark,
      linear-gradient(90deg, #42275a 0%, #734b6d 100%));
}

.contact-us-header {
  display: flex;
  width: 100%;
  padding: 66px 24px 148px;
  justify-content: center;
}

.contact-us-header-container {
  max-width: 1540px;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  color: var(--white, #fff);
}

.contact-us-header-description {
  color: var(--primary-fade, #fadfdf);
  margin-bottom: 9px;
  text-align: center;
}

.contact-us-section {
  background: var(--linear-fade,
      linear-gradient(0deg, rgba(236, 244, 255, 0) -0.76%, #f6efff 94.49%));
  display: flex;
  justify-content: center;
  padding: 59px 24px 182px;
  width: 100%;
}

.contact-us-section-container {
  max-width: 1540px;
  width: 100%;
  display: flex;
  gap: 40px;
  align-items: start;
}

.contact-us-column {
  display: flex;
  justify-content: center;
  width: 50%;
}

.contact-info {
  flex: 0 0 auto;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info-cards-container {
  display: flex;
  width: 100%;
  flex-direction: row;
  gap: 25px;
}

.contact-info-card {
  display: flex;
  width: 259px;
  height: 264px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: var(--border-radius-card, 20px);
  background: rgba(91, 30, 121, 0.07);
  text-align: center;
}

.contact-info-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.contact-info-card-title {
  margin-top: 5px;
}

.contact-info-card-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.contact-form {
  flex: 1 1 auto;
  max-width: 584px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}

.contact-form-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.contact-form .umbraco-forms-form,
.contact-form .umbraco-forms-form form {
  width: 100%;
}

.form-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 24px;
  align-self: stretch;
}

.form-group {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.form-input {
  display: flex;
  width: 100%;
  padding: 14px 16px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: var(--corner-radius-sm, 8px);
  border: 1px solid #C5C5C5;
  background-color: #fff;
  color: var(--black);
}

.form-label {
  color: var(--body-color);
}

.form-input::placeholder {
  color: var(--body-color);
  opacity: 0.55;
}

.form-input:focus {
  outline: 2px solid var(--primary, #a000ed);
}

.form-textarea {
  min-height: 148px;
  height: 148px;
  max-height: 300px;
  align-items: flex-start;
  resize: none;
  border-radius: 8px;
  background: var(--white, #fff);
  box-shadow: 0 12px 60px 0 #dfe2f3;
}

.contact-form-select-container {
  display: flex;
}

.contact-form-select {
  appearance: none;
  cursor: pointer;
  padding-right: 44px;
}

.contact-form-select,
.contact-form-select option {
  font-family: "Geologica", "Geologica Alt", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.contact-form-select option {
  color: var(--black);
  background-color: var(--white, #fff);
}

.contact-form-select-arrow {
  pointer-events: none;
  transform: translateY(-50%);
}

.contact-form-consent {
  color: var(--body-color);
}

.contact-form-consent input {
  flex: 0 0 auto;
}

.contact-form .umbraco-forms-field-wrapper,
.contact-form .umbraco-forms-navigation {
  width: 100%;
}

.contact-form .umbraco-forms-hidden {
  display: none;
}

.contact-form .form-validation-message,
.contact-form .field-validation-error,
.contact-form .validation-summary-errors {
  color: #c62828;
  font-family: Geologica;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.contact-form-button {
  border: none;
  cursor: pointer;
}

.contact-form-button--secondary {
  margin-bottom: 12px;
  background: var(--white, #fff);
  color: var(--primary, #a000ed);
}

.contact-form .umbraco-forms-submitmessage {
  color: var(--body-color);
}

.contact-form-thank-you {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(130, 245, 222, 0.72);
  border-radius: var(--corner-radius-xl, 16px);
  background:
    linear-gradient(135deg, rgba(130, 245, 222, 0.22) 0%, rgba(255, 255, 255, 0.94) 56%),
    var(--white, #fff);
  box-shadow: 0 18px 55px rgba(20, 17, 82, 0.1);
}

.contact-form-thank-you-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--tertiary, #82f5de);
  color: var(--black, #000);
}

.contact-form-thank-you-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contact-form-thank-you-title {
  color: var(--black, #000);
  font-family: Geologica;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.contact-form-thank-you-text {
  color: var(--body-color, #5a6a79);
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

@media (max-width: 1049px) {
  .contact-us-section-container {
    flex-direction: column;
    gap: 40px;
    max-width: 584px;
  }

  .contact-us-column {
    width: 100%;
  }

  .contact-info {
    order: 2;
    max-width: 100%;
  }

  .contact-form {
    order: 1;
    max-width: 100%;
  }
}

.contact-info-social .image-row {
  margin: 0;
  width: unset;
}

@media (max-width: 486px) {
  .form-row {
    flex-direction: column;
    gap: 24px;
  }

  .contact-info-cards-container {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .contact-info-social .image-container {
    width: 60px;
    height: 60px;
  }

  .contact-us-section {
    padding: 59px 16px 182px;
  }

  .contact-form-thank-you {
    flex-direction: column;
    padding: 24px;
  }

  .contact-form-thank-you-title {
    font-size: 20px;
    line-height: 26px;
  }
}

.contact-info-social {
  margin-top: 74px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 35px;
}

.contact-info-social-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 9px;
}

.dropdown-container {
  position: relative;
  width: 100%;
}

.dropdown-container.numbers {
  width: 90px;
  border-radius: var(--corner-radius-md, 6px);
  border: 1px solid #c5c5c5;
}

.dropdown-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  width: 100%;
  border: none;
}

.dropdown-trigger:hover {
  background: var(--grayscale-light-2, #f5f5f5);
}

.dropdown-selected {
  flex: 1;
  color: var(--black);
}

.dropdown-selected.placeholder {
  color: var(--body-color);
  opacity: 0.55;
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.1s ease;
  position: absolute;
  right: 13px;
  top: 50%;
}

.dropdown-arrow path {
  fill: var(--black);
}

.dropdown-trigger.open .dropdown-arrow {
  transform: translateY(-10px) rotate(180deg);
  transform-origin: center center;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white, #fff);
  border-radius: var(--corner-radius-sm, 8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  padding: 4px 0;
  max-height: 240px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.dropdown-menu.open {
  display: block;
}

.dropdown-item {
  padding: 12px 16px;
  cursor: pointer;
  color: var(--black);
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.dropdown-item:hover {
  background: var(--grayscale-light-2, #f5f5f5);
}

.dropdown-item.selected {
  background: var(--grayscale-light-2, #f5f5f5);
  color: var(--primary, #a000ed);
  font-weight: 500;
}

.dropdown-trigger:focus {
  outline: 2px solid var(--primary, #a000ed);
}

.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--grayscale-light, #bdbdbd);
  border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--grayscale, #828282);
}

.cart-button {
  display: flex;
  padding: 12px;
  align-items: center;
  gap: 6px;
  border-radius: 120px;
  background: var(--primary, #a000ed);
}

.eshop {
  width: 100%;
  justify-content: center;
  display: flex;
  padding: 42px 24px 168px;
  background: var(--bg-light, #f5f6fa);
}

.eshop-container {
  display: flex;
  max-width: 1540px;
  width: 100%;
  gap: 24px;
  margin-bottom: 40px;
}

.eshop-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
}

.eshop-header {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  align-items: flex-start;
  gap: 17px;
  flex: 1 0 0;
  margin-bottom: 42px;
}

.eshop-header.no-margin {
  margin-bottom: 0;
}

.trends-container {
  display: flex;
  align-items: center;
  gap: 9.527px;
  flex-wrap: wrap;
}

.trends-title {
  color: var(--body-color);
  padding-right: 12.5px;
}

.trend {
  display: flex;
  height: 28.58px;
  padding: 7.939px 23.816px;
  justify-content: center;
  align-items: center;
  gap: 7.939px;
  border-radius: 56.365px;
  border: 0.794px solid var(--body-color, #5a6a86);
  color: var(--body-color, #5a6a86);
}

.trend:hover {
  background-color: rgba(90, 106, 134, 0.1);
}

.eshop-product-card {
  width: 100%;
  max-width: 370px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--border-radius-card, 20px);
  background: var(--white, #fff);
  overflow: hidden;
}

.eshop-product-card .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 360px) {
  .eshop-product-card {
    max-width: 300px;
  }
}

.eshop-product-info {
  display: flex;
  padding: 25px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.eshop-product-info-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eshop-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.eshop-item-details-container {
  display: flex;
  align-items: center;
  gap: 88px;
}

@media (max-width: 1300px) {
  .eshop-cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .eshop-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .eshop {
    padding: 32px 16px 120px;
  }

  .eshop-header {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .eshop-cards-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .eshop {
    padding: 24px 16px 80px;
  }

  .eshop-header {
    margin-bottom: 24px;
  }
}

.product-page {
  max-width: 1540px;
  margin: 0 auto;
  padding: 60px 24px;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: var(--white);
  border-radius: var(--border-radius-card);
  padding: 40px;
}

.product-gallery {
  display: flex;
  gap: 16px;
}

.thumbnail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thumbnail {
  height: 105px;
  align-self: stretch;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  border-radius: var(--corner-radius-lg, 10px);
  opacity: 0.3;
  box-shadow: 0 12px 60px 0 #dfe2f3;
}

.thumbnail:hover {
  border: 2px solid var(--primary, #a90ced);
}

.thumbnail.active {
  opacity: 1;
  border-radius: var(--corner-radius-lg, 10px);
  border: 2px solid var(--primary, #a90ced);
}

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

.main-image {
  max-width: 506px;
  height: 623px;
  aspect-ratio: 506/623;
  flex: 1;
  border-radius: var(--border-radius-card);
  overflow: hidden;
}

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

.product-info {
  display: flex;
  max-width: 772px;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
}

.product-description {
  margin-bottom: 10px;
}

.product-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-label {
  color: var(--black);
}

.option-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.option-buttons.less-gap {
  gap: 10px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quantity-control {
  display: flex;
  align-items: center;
  height: 50px;
  gap: 0;
  border-radius: 120px;
  background: var(--bg-light, #f5f6fa);
  overflow: hidden;
}

.quantity-btn {
  display: flex;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--main-shape-bg, #374152);
}

.quantity-input {
  background: var(--bg-light, #f5f6fa);
  width: 67px;
  height: 50px;
  border: none;
  text-align: center;
  color: var(--main-shape-bg, #374152);
}

.quantity-input:focus {
  outline: none;
}

@media (max-width: 1200px) {
  .product-container {
    padding: 0;
  }
}

@media (max-width: 1100px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-gallery {
    flex-direction: column-reverse;
  }

  .thumbnail-list {
    flex-direction: row;
    overflow-x: auto;
  }

  .thumbnail {
    flex-shrink: 0;
  }
}

@media (max-width: 640px) {
  .product-page {
    padding: 32px 16px;
  }

  .action-buttons {
    flex-direction: column;
  }
}

.color-option {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-option:hover {
  border-color: var(--primary, #a000ed);
}

.color-option.active {
  border: 2px solid var(--primary, #a000ed);
}

.color-option svg {
  width: 36px;
  height: 36px;
  display: block;
}

.color-option.active svg {
  width: 36px;
  height: 36px;
}

.size-option {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 8.654px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8.654px;
  border-radius: 3.462px;
  border: 0.865px solid #c2cad7;
}

.size-option:hover {
  border: 2px solid var(--primary, #a000ed);
}

.size-option.active {
  border: 2px solid var(--primary, #a000ed);
}

.quantity-container {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-title-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.quantity-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 560px) {
  .quantity-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
  }

  .main-image {
    max-width: 100%;
    height: auto;
  }
}

.eshop-homepage {
  display: flex;
  width: 100%;
  justify-content: center;
  background: var(--bg-light, #f5f6fa);
  padding: 76px 24px 112px;
}

.eshop-homepage-container {
  display: flex;
  max-width: 984px;
  flex-direction: column;
  align-items: center;
  gap: 29px;
}

.eshop-homepage-cards-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 10px;
  margin-top: 50px;
}

.eshop-homepage-cards-container.less-margin-top {
  margin-top: 9px;
}

@media (max-width: 768px) {
  .eshop-homepage-cards-container {
    flex-direction: column;
    align-items: center;
  }
}

.eshop-homepage-text {
  text-align: center;
  display: flex;
  max-width: 862px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.eshop-homepage-description {
  color: var(--gray-700, #4a4a6a);
  margin-top: 20px;
}

.eshop-homepage-product-carousel {
  width: 100%;
  overflow: hidden;
}

.eshop-homepage-price-add-to-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  margin-top: 10px;
}

.productCarousel .swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
}

.productCarousel .swiper-slide {
  overflow: hidden;
  padding: 0;
}

.productCarousel .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.productCarousel .swiper-pagination {
  bottom: 20px !important;
  gap: 6px !important;
}

.productCarousel .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: var(--gray-dark) !important;
  opacity: 0.2 !important;
  border-radius: 50% !important;
  transform: none !important;
}

.productCarousel .swiper-pagination-bullet:hover:not(.swiper-pagination-bullet-active) {
  transform: none !important;
  opacity: 0.4 !important;
}

.productCarousel .swiper-pagination-bullet-active {
  background: var(--black) !important;
  opacity: 1 !important;
}

.eshop-homepage-suggestions-card {
  display: flex;
  max-width: 604px;
  padding: 35px 32px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 18.61px;
  background: var(--white, #fff);
}

.eshop-homepage-suggestions-list li:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-lightest, #eaeaea);
}

.eshop-homepage-suggestions-list li:not(:first-child) {
  padding-top: 20px;
}

.eshop-homepage-suggestion {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  align-self: stretch;
}

.eshop-homepage-suggestion-info {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  flex: 1 0 0;
}

.eshop-homepage-suggestion-image {
  overflow: hidden;
  width: 101px;
  height: 150px;
  aspect-ratio: 101/150;
}

.eshop-homepage-suggestion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eshop-homepage-suggestion-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
}

.see-also-container {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.eshop-homepage-book-description {
  margin-top: 7px;
  margin-bottom: 14.888px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90ch;
}

@media (max-width: 768px) {
  .eshop-homepage-book-description {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    max-width: 60ch;
  }
}

@media (max-width: 480px) {
  .eshop-homepage-book-description {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    max-width: 45ch;
  }

  .eshop-homepage-suggestions-card {
    padding: 15px;
  }
}

.event-details {
  padding: 46px 0 52px;
  width: 100%;
  display: flex;
  justify-content: center;
  height: min(970px, calc(100vh - 82px));
  height: min(970px, calc(100dvh - 82px));
}

@media (max-width: 1440px) {
  .event-details {
    padding-bottom: 70px;
  }
}

@media (max-width: 530px) {
  .event-details:has(.days-till-next-event-container) {
    padding-top: 250px
  }
}

.event-details-content {
  display: flex;
  flex-direction: column;
  max-width: 1540px;
  width: 100%;
  border-radius: var(--border-radius-card, 20px);
  position: relative;
  justify-content: end;
}

@media (min-width: 769px) {
  header .event-details-content:has(>.days-till-next-event-container) {
    --hero-shrink-lift: clamp(0px, calc((810px - 100dvh) * 0.18), 16px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(220px, 26vw, 257px);
    grid-template-rows: 1fr auto;
    column-gap: clamp(24px, 5vw, 80px);
    row-gap: clamp(16px, 3vh, 28px);
    align-items: end;
    min-height: 0;
  }

  header .event-details-content>.days-till-next-event-container {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: min(100%, 257px);
    justify-self: end;
    align-self: start;
    margin: 0;
    position: static;
  }

  header .event-details-content>.event-slider-content {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    min-width: 0;
    max-width: 100%;
    transform: translateY(calc(var(--hero-shrink-lift) * -1));
  }

  header .event-slider-content {
    gap: 14px;
  }

  header .event-slider-title {
    gap: 10px;
  }

  header .event-info {
    padding-top: 10px;
  }

}

.event-info {
  display: flex;
  align-items: center;
  gap: 41px;
  align-self: stretch;
  padding-top: 18px;
}

.event-info-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}

section:has(.days-till-next-event-container) .event-info-item .medium-body-light {
  color: #BAC7DC;
}

.event-info-item .medium-body-light {
  color: #fff
}

.days-till-next-event-container {
  align-self: flex-end;
  display: flex;
  width: 257px;
  padding: 20px;
  margin: 34px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: var(--border-radius-card, 20px);
  background: rgba(122, 18, 212, 0.69);
  backdrop-filter: blur(4px);
}

.days-till-next-event-container .icons-container {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  margin-bottom: 25px;
}

.days-till-next-event-container .icons-container {
  display: flex;
  justify-content: flex-end;
}

/* When there are 2 or more children */
.days-till-next-event-container .icons-container:has(> :nth-child(2)) {
  justify-content: space-between;
}

.days-till-next-event-container .days {
  background: var(--linear-light,
      linear-gradient(180deg, #acceff 0%, #c99dfe 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 7px;
}


.header-dark nav a {
  color: #000;
}

.days-till-next-event-container .text-container {
  color: var(--white, #fff);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.days-till-next-event-container .footer-text {
  color: var(--yellow, #ffd200);
  text-align: center;
  align-self: center;
}

.header-slider {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.homepageHeaderSwiper {
  width: 100%;
  height: auto;
}

.homepageHeaderSwiper .swiper-wrapper {
  align-items: stretch;
}

.homepageHeaderSwiper .swiper-slide {
  align-items: stretch;
  border-radius: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  min-height: 0;
  padding: 0 50px;
}

.homepageHeaderSwiper .event-details-content {
  margin: 0 auto;
  max-width: 1540px;
  position: relative;
  width: 100%;
}

.homepageHeaderSwiper .swiper-pagination {
  display: none;
}

.homepageHeaderSwiper .swiper-button-next,
.homepageHeaderSwiper .swiper-button-prev {
  width: 17.6px;
  height: 35.2px;
  color: var(--white, #fff);
  top: 50%;
  z-index: 4;
}

.homepageHeaderSwiper .swiper-button-next::after,
.homepageHeaderSwiper .swiper-button-prev::after {
  font-size: 35.2px;
}

.homepageHeaderSwiper .swiper-button-next {
  right: 32px;
}

.homepageHeaderSwiper .swiper-button-prev {
  left: 32px;
}

@media (max-width: 768px) {
  .event-details {
    height: auto;
    min-height: calc(100svh - 82px);
  }

  .event-info {
    gap: 16px;
  }

  .homepageHeaderSwiper .swiper-button-next,
  .homepageHeaderSwiper .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 1024px) {
  .homepageHeaderSwiper .swiper-slide {
    padding: 0 24px;
  }
}

@media (max-width: 780px) {
  .homepageHeaderSwiper .swiper-slide {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .days-till-next-event-container {
    width: 220px;
    padding: 16px;
    margin: 24px;
  }

  .days-till-next-event-container .icons-container {
    margin-bottom: 0;
  }

  .forever-young-icon {
    width: 80px;
    height: 80px;
  }

  .event-details-content {
    height: auto;
  }

  .event-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.event-description-section {
  padding: 90px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: var(--white, #fff);
}

.event-description-header {
  display: flex;
  max-width: 759px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  color: var(--black, #000);
  text-align: center;
}

.event-description-subheader {
  max-width: 865px;
  width: 100%;
  color: var(--body-color);
  margin-top: 40px;
  text-align: center;
}

.event-description-goals {
  max-width: 1540px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  margin-top: 70px;
}

.event-description-goals.less-margin-top {
  margin-top: 30px;
}

.goal-card {
  display: flex;
  max-width: 372px;
  width: 100%;
  padding: 24px 28px;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: var(--corner-radius-lg, 10px);
  background: var(--bg-light, #f5f6fa);
}

.why-come-section {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 90px 24px;
}

.why-come-section.padding-top {
  padding-top: 96px;
}

.why-come {
  width: 100%;
  max-width: 1540px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 57px;
}

.why-come:has(> :nth-child(2)) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(24px, 7vw, 110px);
}

.why-come:has(> :nth-child(2))>* {
  width: 100%;
  min-width: 0;
}

.why-come:has(> :nth-child(2))>.check-list {
  max-width: none;
}

.why-come-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
}

.why-come-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.check-list {
  display: flex;
  max-width: 693px;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.check-list-item {
  color: var(--black, #000);
  display: flex;
  align-items: center;
  gap: 14px;
}

.why-come-benefits {
  width: 1540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.update-now {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--primary, #a000ed);
  padding: 90px 24px 104px;
}

.update-now.gray {
  background: var(--bg-light, #f5f6fa);
}

.update-now.less-padding-bottom {
  padding-bottom: 40px;
}

.update-now-container {
  display: flex;
  max-width: 1105px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white, #fff);
}

.update-now.gray .update-now-container {
  color: var(--black, #000);
}

.update-now-card {
  display: flex;
  padding: 25px 21px;
  flex-direction: column;
  align-items: flex-start;
  gap: 29px;
  width: 100%;
  border-radius: var(--border-radius-card, 20px);
  background: var(--white, #fff);
  margin-top: 20px;
}

.update-now-options-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  color: var(--black);
}

.terms-text {
  max-width: 759px;
  text-align: center;
  color: var(--body-color);
}

.terms-text.white {
  color: var(--white, #fff);
}

.numbered-list-section {
  background: var(--white, #fff);
  display: flex;
  justify-content: center;
  padding: 90px 24px;
  width: 100%;
}

.numbered-list-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1540px;
  width: 100%;
}

.numbered-list-title {
  color: var(--black, #000);
  font-family: Geologica;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.9px;
  line-height: 36px;
}

.numbered-list-grid {
  color: var(--body-color-dark, #5a6a86);
  display: flex;
  gap: 68px;
  width: 100%;
}

.numbered-list-column {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  list-style: none;
  margin: 0;
  padding: 0;
}

.numbered-list-column li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px;
  line-height: 29px;
}

.numbered-list-marker {
  white-space: nowrap;
}

@media (max-width: 1600px) {
  .event-description-goals {
    flex-wrap: wrap;
    justify-content: center;
  }

  .why-come-benefits {
    max-width: 1540px;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .why-come {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .why-come:has(> :nth-child(2)) {
    grid-template-columns: 1fr;
    row-gap: 35px;
  }

  .check-list {
    max-width: unset;
  }

  .numbered-list-grid {
    flex-wrap: wrap;
  }

  .numbered-list-column {
    flex: 1 1 320px;
  }
}

@media (max-width: 480px) {
  .why-come-section {
    padding: 0 16px 86px;
  }

  .update-now {
    padding: 90px 16px 184px;
  }

  .numbered-list-section {
    padding: 40px 16px 72px;
  }

  .numbered-list-grid {
    gap: 0;
  }

  .numbered-list-column {
    flex-basis: 100%;
  }
}

.event-slider {
  background: #2C5E22;
  width: 100%;
  height: auto;
  overflow-x: clip;
}

.event-slider:not(.bg-white) {
  padding-top: 78px;
  padding-bottom: 78px;
}

.event-slider>.carousel-container {
  max-width: 1540px;
  margin: 0 auto;
  border-radius: var(--border-radius-card, 20px);
}

.event-slider:not(.bg-white)>.carousel-container {
  overflow: visible;
}

.event-slider-card-viewport {
  aspect-ratio: 1540 / 836;
  border-radius: var(--border-radius-card, 20px);
  box-sizing: border-box;
  clip-path: inset(0 round var(--border-radius-card, 20px));
  height: auto;
  max-height: 836px;
  overflow: hidden;
  width: 100%;
  padding: 0 24px;
}

.event-slider-card-viewport>.arrowSwiperSingle {
  height: 100%;
  overflow: hidden;
}

.title-text-social-section {
  background: var(--white, #fff);
  display: flex;
  justify-content: center;
  padding: 90px 24px;
  width: 100%;
}

.title-text-social-container {
  align-items: flex-start;
  display: flex;
  gap: 48px;
  justify-content: space-between;
  max-width: 1540px;
  width: 100%;
}

.title-text-social-main {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 39px;
  max-width: 992px;
  width: 100%;
}

.title-text-social-block {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.title-text-social-copy {
  color: var(--body-color-dark, #5a6a86);
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.title-text-social-main>.xl-body-light {
  color: var(--body-color-dark, #5a6a86);
}

.title-text-social-aside {
  align-items: flex-start;
  display: flex;
  flex: 0 0 272px;
  flex-direction: column;
  gap: 32px;
}

.title-text-social-aside-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.title-text-social-aside-copy .medium-body-light {
  color: var(--body-color-dark, #5a6a86);
}

.title-text-social-links {
  align-items: center;
  display: flex;
  gap: 29px;
}

.title-text-social-links a {
  align-items: center;
  display: flex;
  height: 38px;
  justify-content: center;
}

.title-text-social-links img {
  display: block;
}

@media (max-width: 1054px) {
  .title-text-social-section {
    padding: 80px 24px 88px;
  }

  .title-text-social-container {
    flex-direction: column;
    gap: 44px;
  }

  .title-text-social-main {
    max-width: 100%;
  }

  .title-text-social-aside {
    flex-basis: auto;
    max-width: 480px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .title-text-social-section {
    padding: 60px 24px 72px;
  }

  .title-text-social-main {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .title-text-social-section {
    padding: 48px 16px 60px;
  }

  .title-text-social-links {
    gap: 24px;
  }
}

.event-slider.bg-white {
  height: auto;
}

.event-slider:not(.bg-white) .arrowSwiperSingle>.swiper-wrapper {
  height: 100%;
}

.event-slider:not(.bg-white) .arrowSwiperSingle>.swiper-wrapper>.swiper-slide {
  height: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-top: 0;
  overflow: hidden;
}

.event-slider:not(.bg-white)>.carousel-container>.swiper-pagination {
  bottom: auto !important;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 38px;
  position: static;
  transform: none;
  width: auto !important;
}

.event-slider-content {
  color: var(--white, #fff);
  display: flex;
  gap: 22px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  align-self: stretch;
  max-width: 929px;
  width: 100%;
  text-align: start;
}

.event-slider-content.fixed-height {
  padding: 0 0 95px 67px;
}

@media (max-width: 1024px) {


  .event-slider-content.fixed-height {
    padding: 40px 24px;
  }
}

.event-slider-title {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 832px;
}

.watch-online-button {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.arrowSwiperSingle .swiper-slide {
  width: 100%;
  padding-top: 78px;
  margin-bottom: -8px;
}

.arrowSwiperSingle .swiper-slide-content {
  background-image: url("../../assets/img/GroupPhoto.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1540 / 836;
  height: auto;
  max-height: 836px;
  align-items: end;
  display: flex;
  border-radius: var(--border-radius-card, 20px);
  overflow: hidden;
  width: 100%;
}

.arrowSwiperSingle .swiper-button-next,
.arrowSwiperSingle .swiper-button-prev {
  width: 17.6px;
  height: 35.2px;
  stroke-width: 1.903px;
  color: var(--white, #fff);
  top: 46%;
}

.arrowSwiperSingle .swiper-button-next {
  right: 25px;
}

.arrowSwiperSingle .swiper-button-prev {
  left: 25px;
}

.arrowSwiperSingle .swiper-pagination {
  bottom: 72px !important;
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 1032px) {

  .event-slider:not(.bg-white) .event-slider-card-viewport,
  .event-slider:not(.bg-white) .arrowSwiperSingle .swiper-slide-content {
    aspect-ratio: auto;
    height: 560px;
    max-height: none;
  }

  .event-slider:not(.bg-white) .arrowSwiperSingle .swiper-slide-content {
    background-size: cover;
  }
}

@media (max-width: 720px) {

  .event-slider:not(.bg-white) .event-slider-card-viewport,
  .event-slider:not(.bg-white) .arrowSwiperSingle .swiper-slide-content {
    height: clamp(560px, 150vw, 720px);
  }
}

@media (max-width: 768px) {
  header .event-slider-content {
    height: auto;
  }

  .event-slider.bg-white .how-it-started {
    padding-bottom: 24px;
  }

  .event-slider.bg-white .timelineCarousel .swiper-pagination {
    margin-top: 20px;
  }

  .arrowSwiperSingle .swiper-button-next,
  .arrowSwiperSingle .swiper-button-prev {
    display: none;
  }
}

.podcast-player-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 316px;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.podcast-player-float.show {
  transform: translateX(0);
}

.podcast-player-float.closing {
  transform: translateX(120%);
}

.podcast-player-container {
  background: rgba(7, 4, 76, 0.92);
  border: 1px solid var(--white);
  border-radius: var(--corner-radius-lg, 10px);
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 40.8px 2px rgba(32, 44, 78, 0.22);
  position: relative;
}

.podcast-player-float .close-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: transparent;
  transition: all 0.2s ease;
}

.podcast-player-float .close-btn:hover {
  color: var(--white);
  transform: scale(1.1);
}

.podcast-player-float .close-btn svg {
  width: 20px;
  height: 20px;
}

.podcast-player-float .podcast-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 48px;
  width: 100%;
}

.podcast-player-float .podcast-cover {
  flex-shrink: 0;
  width: 59px;
  height: 59px;
  border-radius: 3.54px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.podcast-player-float .podcast-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-player-float .podcast-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.podcast-player-float .podcast-title {
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  align-self: stretch;
}

.podcast-player-float .podcast-subtitle {
  color: var(--grayscale-light, #bdbdbd);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  align-self: stretch;
}

.podcast-player-float .progress-container {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 280px;
  left: 18px;
}

.podcast-player-float .time-current {
  color: var(--white);
  min-width: 45px;
  text-align: right;
}

.podcast-player-float .time-total {
  color: var(--grayscale-light, #bdbdbd);
  min-width: 45px;
}

.podcast-player-float .progress-bar {
  height: 5px;
  flex: 1;
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--corner-radius-lg, 10px);
  position: relative;
  cursor: pointer;
}

.podcast-player-float .progress-fill {
  height: 100%;
  background: var(--white);
  border-radius: var(--corner-radius-lg, 10px);
  position: relative;
  width: 0%;
}

.podcast-player-float .progress-handle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.podcast-player-float .progress-bar:hover .progress-handle,
.podcast-player-float .progress-bar.dragging .progress-handle {
  opacity: 1;
}

.podcast-player-float .player-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 8px;
  width: 100%;
}

.podcast-player-float .control-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: relative;
  width: 18.448px;
  height: 15.489px;
  flex-shrink: 0;
}

.podcast-player-float .control-btn:hover {
  transform: scale(1.1);
}

.podcast-player-float .control-btn:active {
  transform: scale(0.95);
}

.podcast-player-float .control-btn svg {
  width: 100%;
  height: 100%;
}

.player-circle {
  width: 100%;
  height: 100%;
  background: var(--white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.player-play-icon {
  position: relative;
  z-index: 2;
  width: 14px;
  height: 16px;
  flex-shrink: 0;
  left: 1px;
}

.player-play-icon path {
  fill: #151a22;
}

.player-pause-icon {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2px;
}

.player-pause-icon.hidden {
  display: none;
}

.player-pause-icon span {
  width: 5.09px;
  height: 16.29px;
  background: #151a22;
  border-radius: 3.054px;
}

.podcast-player-float .play-pause-btn {
  width: 45px;
  height: 45px;
  margin: 0 8px;
}

.podcast-player-float .play-pause-btn svg {
  width: 14px;
  height: 16px;
}

.podcast-player-float .play-pause-btn:hover {
  transform: scale(1.05);
}

.podcast-player-float .rewind-btn,
.podcast-player-float .forward-btn {
  width: 24px;
  height: 24px;
}

.podcast-player-float .prev-btn,
.podcast-player-float .next-btn {
  width: 24px;
  height: 24px;
}

.podcast-player-float .skip-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
}

.podcast-player-float .hidden {
  display: none !important;
}

@media (max-width: 600px) {
  .podcast-player-float .progress-container {
    top: 12px;
    width: 90%;
  }

  .podcast-player-float {
    bottom: 10px;
    right: 10px;
    left: 10px;
    width: auto;
  }

  .podcast-player-container {
    padding: 16px;
    height: 200px;
    gap: 32px;
  }

  .podcast-player-float .podcast-header {
    flex-direction: row;
    align-items: center;
    text-align: left;
    margin-bottom: 20px;
  }

  .podcast-player-float .podcast-cover {
    width: 60px;
    height: 60px;
  }

  .podcast-player-float .podcast-info {
    text-align: left;
    align-items: flex-start;
  }

  .podcast-player-float .podcast-title {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }

  .podcast-player-float .podcast-subtitle {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .podcast-player-float .progress-container {
    gap: 8px;
  }

  .podcast-player-float .time-current,
  .podcast-player-float .time-total {
    min-width: 38px;
    font-size: 11px;
  }

  .podcast-player-float .player-controls {
    justify-content: center;
    gap: 32px;
  }

  .podcast-player-float .control-btn {
    width: 16px;
    height: 16px;
  }

  .podcast-player-float .play-pause-btn {
    width: 50px;
    height: 50px;
    margin: 0 6px;
  }

  .podcast-player-float .play-pause-btn svg {
    width: 14px;
    height: 16px;
  }

  .podcast-player-float .rewind-btn,
  .podcast-player-float .forward-btn {
    width: 24px;
    height: 24px;
  }

  .podcast-player-float .prev-btn,
  .podcast-player-float .next-btn {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 400px) {
  .podcast-player-container {
    padding: 14px;
  }

  .podcast-player-float .podcast-header {
    gap: 8px;
    margin-bottom: 16px;
  }

  .podcast-player-float .podcast-cover {
    width: 50px;
    height: 50px;
  }

  .podcast-player-float .podcast-title {
    font-size: 13px;
  }

  .podcast-player-float .podcast-subtitle {
    font-size: 11px;
  }

  .podcast-player-float .progress-container {
    gap: 6px;
  }

  .podcast-player-float .time-current,
  .podcast-player-float .time-total {
    min-width: 35px;
    font-size: 10px;
  }

  .podcast-player-float .player-controls {
    gap: 8px;
  }
}

.footer {
  width: 100%;
  min-height: 583px;
  flex-shrink: 0;
  border-radius: var(--border-radius-footer);
  background: var(--bg-footer);
  padding: 71px 24px 27px;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: calc(-1 * var(--footer-overlap));
}

.footer .input:focus {
  outline: 2px solid var(--primary, #a000ed);
}

.footer-container {
  max-width: 1540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-row.first {
  flex-direction: column;
}

.footer-row.first.has-newsletter {
  flex-direction: row;
}

.footer-row.first.has-newsletter .footer-column:first-child {
  flex: 1 1 500px;
}

.footer-row.first.has-newsletter .footer-column:last-child {
  flex: 1.8 1 680px;
  justify-content: flex-end;
}

.footer-row.align-end {
  align-items: flex-end;
  margin-top: clamp(56px, 6vw, 84px);
}

.footer-column {
  display: flex;
  min-width: 0;
}

.footer-newsletter-signup {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 630px;
}

.footer-logo {
  display: flex;
  width: 250px;
  height: 37px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  aspect-ratio: 250/37;
}

.footer-newsletter-signup-title {
  margin-top: 60px;
}

.footer-newsletter-signup-subtitle {
  margin-top: 13px;
}

.footer-newsletter-signup-inputs {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin-top: 31px;
  margin-bottom: 21px;
}

.footer-newsletter-form .umbraco-forms-hidden {
  display: none;
}

.footer-newsletter-field.umbraco-forms-field.email {
  display: flex;
  width: 372px;
  flex-direction: column;
}

.footer-newsletter-form .umbraco-forms-field-wrapper {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex-direction: column;
}

.footer-newsletter-form .input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.footer-newsletter-form .primary-button {
  width: 253px;
  max-width: 100%;
  min-height: 50px;
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
}

.footer-newsletter-consent {
  color: var(--body-color);
}

.footer-newsletter-consent input {
  flex: 0 0 auto;
}

.footer-newsletter-form .form-validation-message,
.footer-newsletter-form .field-validation-error,
.footer-newsletter-form .validation-summary-errors {
  margin-top: 6px;
  color: #c62828;
  font-family: Geologica;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.footer-newsletter-submit-message {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  margin-top: 31px;
  margin-bottom: 21px;
  border: 1px solid rgba(151, 199, 181, 0.8);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  padding: 14px 18px;
  box-shadow: 0 12px 30px rgba(75, 62, 87, 0.06);
}

.footer-newsletter-submit-message__icon {
  display: flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary, #a000ed);
  color: var(--white, #fff);
}

.footer-newsletter-submit-message__icon svg {
  width: 20px;
  height: 20px;
}

.footer-newsletter-submit-message__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--body-color-dark, #5a6a86);
  font-family: Geologica;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
}

.footer-newsletter-submit-message__copy strong {
  color: var(--black, #000);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.footer-links {
  padding-top: 60px;
  display: flex;
  max-width: 100%;
  width: 100%;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 73px);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.footer-row.first.has-newsletter .footer-links {
  padding-top: 97px;
  gap: 50px;
  max-width: 820px;
  flex-shrink: 1;
  flex-wrap: nowrap;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1 1 145px;
  min-width: 145px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.follow-us {
  margin-top: 27px;
}

.social-media-links {
  display: flex;
  align-items: center;
  gap: 11.825px;
  margin-top: 3px;
}

.social-media-link {
  display: flex;
  width: 43px;
  height: 43px;
  padding: 2.15px 7.525px;
  justify-content: center;
  align-items: center;
  gap: 10.75px;
  aspect-ratio: 1/1;
  border-radius: 23.65px;
  background: var(--white, #fff);
}

.footer-terms {
  display: flex;
  justify-content: flex-start;
  width: auto;
  height: 18px;
  align-items: center;
  gap: 43px;
  flex-shrink: 0;
  color: var(--body-color);
  margin-top: 0;
}


.back-to-top-button {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .footer-row.first.has-newsletter {
    flex-direction: column;
  }

  .footer-row.first.has-newsletter .footer-column:first-child,
  .footer-row.first.has-newsletter .footer-column:last-child {
    flex: 0 1 auto;
    width: 100%;
    justify-content: flex-start;
  }

  .footer-row.first.has-newsletter .footer-links {
    padding-top: 50px;
    max-width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) {
  .footer {
    min-height: auto;
  }

  .footer-row.first {
    gap: 40px;
    flex-direction: column;
  }

  .footer-newsletter-signup {
    max-width: 100%;
  }

  .footer-links {
    padding-top: 60px;
    gap: clamp(24px, 4vw, 40px);
    max-width: 100%;
    flex-wrap: wrap;
  }

  .footer-row.first.has-newsletter .footer-links {
    padding-top: 30px;
  }

  .footer-newsletter-signup-title {
    margin-top: 40px;
  }

  .footer-terms {
    width: 60%;
    gap: 43px;
  }
}

@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    gap: 40px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-newsletter-signup {
    max-width: 100%;
  }

  .footer-newsletter-signup-title {
    margin-top: 30px;
  }

  .footer-newsletter-signup-inputs {
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .footer-row.align-end {
    align-items: flex-start;
    gap: 30px;
    margin-top: 50px;
  }

  .footer-terms {
    width: 100%;
    flex-direction: column;
    height: auto;
    align-items: flex-start;
    gap: 15px;
  }

  .back-to-top-button {
    width: 100%;
  }

  .social-media-links {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 46px 20px;
  }

  .footer-newsletter-signup-title {
    margin-top: 20px;
  }

  .footer-newsletter-signup-inputs {
    margin-top: 20px;
  }

  .footer-row.first {
    gap: 30px;
  }

  .footer-links {
    padding-top: 0;
    gap: 30px;
  }

  .footer-links-column {
    gap: 15px;
  }

  .social-media-link {
    width: 38px;
    height: 38px;
  }

  .footer-terms {
    gap: 12px;
  }
}

@media (max-width: 390px) {
  .footer-links-column {
    min-width: 100%;
    flex: 1 1 100%;
  }
}

.forever-young {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 162px 0;
  background: rgba(138, 0, 255, 0.07);
}

.forever-young-container {
  display: flex;
  width: 100%;
  max-width: 651px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.forever-young-images {
  position: absolute;
  display: flex;
  flex-direction: column;
}

.forever-young-images img {
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  position: relative;
}

.forever-young-images-left {
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.forever-young-images-left img:nth-child(1) {
  width: 191px;
  height: 233px;
  aspect-ratio: 191/233;
  left: 50px;
}

.forever-young-images-left img:nth-child(2) {
  width: 209px;
  height: 255px;
  aspect-ratio: 209/255;
  margin-top: 40px;
  left: 180px;
}

.forever-young-images-left img:nth-child(3) {
  width: 179px;
  height: 201px;
  margin-top: -130px;
  border-radius: var(--border-radius-card, 20px);
  left: 90px;
  z-index: -1;
}

.forever-young-images-left img:nth-child(4) {
  width: 200px;
  margin-top: -20px;
  left: 5px;
}

.forever-young-images-right {
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.forever-young-images-right img:nth-child(1) {
  width: 103px;
  height: 113px;
  border-radius: var(--border-radius-card, 20px);
  right: -10px;
}

.forever-young-images-right img:nth-child(2) {
  width: 232px;
  height: 283px;
  border-radius: 19.323px;
  aspect-ratio: 232/283;
  margin-top: -40px;
  right: 200px;
}

.forever-young-images-right img:nth-child(3) {
  width: 185px;
  height: 225px;
  border-radius: 19.323px;
  aspect-ratio: 37/45;
  margin-top: -40px;
  right: -80px;
}

.forever-young-images-right img:nth-child(4) {
  width: 237px;
  height: 264px;
  border-radius: var(--border-radius-card, 20px);
  margin-top: -40px;
  right: 50px;
  z-index: -1;
}

.forever-young-images-right img:nth-child(5) {
  width: 204px;
  height: 249px;
  aspect-ratio: 68/83;
  border-radius: 19.323px;
  margin-top: -80px;
  right: 120px;
}

.forever-young-body {
  color: var(--body-color-dark);
}

.forever-young-body-title {
  margin-top: 47px;
}

.forever-young-body-eyebrow {
  text-align: center;
  color: black;
  font-family: Geologica;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.66px;
  margin-top: 47px;
}

.forever-young-body-eyebrow+.forever-young-body-title {
  margin-top: 10px;
}

.forever-young-title {
  color: var(--primary);
  margin: 24px 0 40px;
}

.forever-young-label {
  display: flex;
  width: 217px;
  padding: 8.173px 20.432px;
  justify-content: center;
  align-items: center;
  gap: 8.173px;
  border-radius: var(--corner-radius-lg, 10px);
  background: var(--yellow);
  color: var(--black, #000);
  margin: 54px 0 22px;
  text-wrap: nowrap;
}

.forever-young-date-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  margin-bottom: 53px;
}

@media (max-width: 1400px) {
  .forever-young {
    padding: 0 16px;
  }

  .forever-young-images {
    flex-direction: row;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    justify-content: center;
    width: 100%;
    overflow-x: hidden;
    padding: 20px 0;
    gap: 15px;
  }

  .forever-young-images img {
    margin-top: 0 !important;
    margin-left: 0 !important;
    position: static;
    left: auto !important;
    right: auto !important;
    z-index: auto !important;
  }

  .forever-young-images-left img:nth-child(1) {
    width: 180px;
    height: auto;
  }

  .forever-young-images-left img:nth-child(2) {
    width: 195px;
    height: auto;
  }

  .forever-young-images-left img:nth-child(3) {
    width: 165px;
    height: auto;
  }

  .forever-young-images-left img:nth-child(4) {
    width: 185px;
    height: auto;
  }

  .forever-young-images-right img:nth-child(1) {
    display: none;
  }

  .forever-young-images-right img:nth-child(2) {
    width: 200px;
    height: auto;
  }

  .forever-young-images-right img:nth-child(3) {
    width: 170px;
    height: auto;
  }

  .forever-young-images-right img:nth-child(4) {
    width: 210px;
    height: auto;
  }

  .forever-young-images-right img:nth-child(5) {
    width: 185px;
    height: auto;
  }

  .forever-young-images-left {
    order: -1;
    margin-bottom: 30px;
  }

  .forever-young-images-right {
    order: 1;
    margin-top: 30px;
  }

  .forever-young {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .forever-young {
    margin-bottom: 88px;
  }

  .forever-young-images {
    gap: 10px;
  }

  .forever-young-images-left img:nth-child(1) {
    width: 150px;
    height: auto;
  }

  .forever-young-images-left img:nth-child(2) {
    width: 165px;
    height: auto;
  }

  .forever-young-images-left img:nth-child(3) {
    display: none;
  }

  .forever-young-images-left img:nth-child(4) {
    width: 155px;
    height: auto;
  }

  .forever-young-images-right img:nth-child(2) {
    width: 170px;
    height: auto;
  }

  .forever-young-images-right img:nth-child(3) {
    width: 140px;
    height: auto;
  }

  .forever-young-images-right img:nth-child(4) {
    display: none;
  }

  .forever-young-images-right img:nth-child(5) {
    width: 155px;
    height: auto;
  }
}

@media (max-width: 500px) {
  .forever-young-images {
    gap: 5px;
  }

  .forever-young-images-left img:nth-child(1) {
    width: 110px;
    height: auto;
  }

  .forever-young-images-left img:nth-child(2) {
    width: 120px;
    height: auto;
  }

  .forever-young-images-left img:nth-child(3) {
    display: none;
  }

  .forever-young-images-left img:nth-child(4) {
    width: 115px;
    height: auto;
  }

  .forever-young-images-right img:nth-child(2) {
    width: 125px;
    height: auto;
  }

  .forever-young-images-right img:nth-child(3) {
    width: 100px;
    height: auto;
  }

  .forever-young-images-right img:nth-child(4) {
    display: none;
  }

  .forever-young-images-right img:nth-child(5) {
    width: 115px;
    height: auto;
  }
}

@media (min-width: 1800px) {
  .forever-young-images-left {
    left: 150px;
  }

  .forever-young-images-right {
    right: 150px;
  }
}

@media (min-width: 2500px) {
  .forever-young-images-left {
    left: 400px;
  }

  .forever-young-images-right {
    right: 400px;
  }
}

.frequently-asked {
  width: 100%;
  background: var(--white, #fff);
  display: flex;
  justify-content: center;
  padding-bottom: 48px;
}

.frequently-asked-container {
  width: 100%;
  max-width: 1105px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.subtitle-text {
  color: var(--Body-Color, #5A6A86);
  text-align: center;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 29px;
  max-width: 1098px;
}

.faq-wrapper {
  padding: 0 24px 136px;
}

.header-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 24px;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.05) 15.88%), linear-gradient(205deg, rgba(0, 0, 0, 0.00) 16.07%, #29083E 98.74%), url("../../assets/img/EventDetail.png") lightgray 0px -68.5px / 100% 120% no-repeat;
}

.header-container-2 {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 50px;
  background: linear-gradient(0deg, #7A12D4 -27.97%, #2A0745 100%);
}

.header-container.light {
  background: var(--white);
  box-shadow: 0 7px 19.6px 0 rgba(75, 62, 87, 0.06);
}

.site-nav {
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav.site-nav--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  width: 100%;
  box-sizing: border-box;
  padding-inline: max(24px, calc((100vw - 1540px) / 2));
  background: var(--white, #fff);
  box-shadow: none;
  isolation: isolate;
}

.site-nav.site-nav--sticky.site-nav--at-top {
  background: transparent;
}

.site-nav.site-nav--sticky.site-nav--at-top::after {
  box-shadow: none;
}

.site-nav.site-nav--sticky.site-nav--at-top .nav-logo__image--default {
  opacity: 1;
}

.site-nav.site-nav--sticky.site-nav--at-top .nav-logo__image--sticky {
  opacity: 0;
}

.site-nav.site-nav--sticky.site-nav--at-top .nav-menu-item,
.site-nav.site-nav--sticky.site-nav--at-top .nav-menu-item a {
  color: var(--white, #fff);
}

.site-nav.site-nav--sticky.site-nav--at-top .nav-menu-item:hover,
.site-nav.site-nav--sticky.site-nav--at-top .nav-menu-item--active {
  border-bottom-color: var(--white, #fff);
}

.site-nav.site-nav--sticky.site-nav--at-top .nav-menu-item .nav-submenu a {
  color: var(--bg-dark, #141152);
}

.site-nav.site-nav--sticky.site-nav--at-top .nav-menu-toggle__line {
  background-color: var(--white, #fff);
}

.site-nav.site-nav--sticky.site-nav--at-top .white-button.nav-button--drawer {
  background: var(--white, #fff);
  color: var(--bg-dark, #141152);
}

.header-container.light .site-nav.site-nav--sticky.site-nav--at-top {
  background: var(--white, #fff);
}

.header-container.light .site-nav.site-nav--sticky.site-nav--at-top::after {
  box-shadow: 0 7px 19.6px 0 rgba(75, 62, 87, 0.06);
}

.header-container.light .site-nav.site-nav--sticky.site-nav--at-top .nav-logo__image--default {
  opacity: 0;
}

.header-container.light .site-nav.site-nav--sticky.site-nav--at-top .nav-logo__image--sticky {
  opacity: 1;
}

.header-container.light .site-nav.site-nav--sticky.site-nav--at-top .nav-menu-item,
.header-container.light .site-nav.site-nav--sticky.site-nav--at-top .nav-menu-item a {
  color: var(--bg-dark, #141152);
}

.header-container.light .site-nav.site-nav--sticky.site-nav--at-top .nav-menu-item:hover,
.header-container.light .site-nav.site-nav--sticky.site-nav--at-top .nav-menu-item--active {
  border-bottom-color: var(--bg-dark, #141152);
}

.header-container.light .site-nav.site-nav--sticky.site-nav--at-top .nav-menu-toggle__line {
  background-color: var(--bg-dark, #141152);
}

.site-nav.site-nav--sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  box-shadow: 0 7px 19.6px 0 rgba(75, 62, 87, 0.06);
}

.site-nav.site-nav--sticky .nav-menu-item,
.site-nav.site-nav--sticky .nav-menu-item a,
.header-dark .site-nav.site-nav--sticky .nav-menu-item,
.header-dark .site-nav.site-nav--sticky .nav-menu-item a {
  color: var(--bg-dark, #141152);
}

.site-nav.site-nav--sticky .nav-menu-item:hover,
.site-nav.site-nav--sticky .nav-menu-item--active,
.header-dark .site-nav.site-nav--sticky .nav-menu-item:hover,
.header-dark .site-nav.site-nav--sticky .nav-menu-item--active {
  border-bottom-color: var(--bg-dark, #141152);
}

.site-nav.site-nav--sticky .nav-menu-toggle__line,
.header-dark .site-nav.site-nav--sticky .nav-menu-toggle__line {
  background-color: var(--bg-dark, #141152);
}

.header-dark .site-nav.site-nav--sticky img {
  filter: none;
}

.header {
  width: 100%;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1540px;
}

.header--with-sticky-nav {
  padding-top: 82px;
}

.header.margin-bottom {
  margin-bottom: 32px;
}

.event-slide {
  width: 100%;
  display: flex;

  gap: 20px;

  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

.event-date-card {
  display: flex;
  height: 497px;
  width: 100%;
  max-width: 640px;
  padding: 40px 36px;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
  border-radius: var(--border-radius-card, 20px);
  background: var(--primary, #a000ed);
  color: var(--white);
  flex: 1;
}

@media (max-width: 1024px) {
  .event-slide {
    flex-direction: column-reverse;
    align-items: center;
  }

  .event-date-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .event-date-card {
    height: 350px;
    padding: 32px 24px;
    padding: 27px;
  }
}

.event-date-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.event-date-card-label {
  color: var(--gray-light);
}

.event-date-card-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

@media (max-width: 480px) {
  .event-date-card-date {
    gap: 12px;
  }
}

.event-date-card-body {
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
}

.event-date-card-description {
  margin-bottom: 23px;
  text-align: start;
}

@media (max-width: 480px) {
  .event-date-card-description {
    margin-bottom: 16px;
  }
}

.event-image-slide {
  border-radius: var(--border-radius-card);
  overflow: hidden;
  width: 100%;
  height: 497px;
  flex: 1;
}

.event-image-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .event-image-slide {
    height: 350px;
  }

  .event-image-slide img {
    height: 350px;
  }
}

.main-intro {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 90px 24px;
}

.main-intro-container {
  max-width: 1540px;
  width: 100%;
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .main-intro {
    padding: 50px 24px;
  }
}

@media (max-width: 480px) {
  .main-intro {
    padding: 50px 16px 87px 16px;
  }
}

.main-intro-text {
  color: var(--black, #000);
  text-align: center;
  max-width: 1098px;
  width: 100%;
}

.main-intro-icon-cards-container {
  display: inline-flex;
  align-items: stretch;
  gap: 38px;
  padding-top: 35px;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

@media (max-width: 1260px) {
  .main-intro-icon-cards-container {
    flex-direction: column;
    align-items: center;
  }
}

.icon-card {
  display: flex;
  max-width: 488px;
  width: 100%;
  min-height: 186px;
  padding: 30px 35px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-radius: var(--border-radius-card, 20px);
  background: var(--bg-light, #f5f6fa);
}

.icon-card a {
  color: var(--Primary, #A000ED);
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

.icon-card-content {
  color: var(--black, #000);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 768px) {
  .icon-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
}

.channel {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 78px 24px;
  gap: 10px;
  flex-shrink: 0;
  background: var(--black, #000);
  color: var(--white, #fff);
}

.channel.white-bg {
  background: var(--white, #fff);
  color: var(--black, #000);
}

@media (max-width: 768px) {
  .channel {
    padding: 48px 16px;
  }
}

.channel-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 43px;
  width: 100%;
  margin: 0 auto;
  max-width: 1540px;
}

.channel-content.gap-20 {
  gap: 20px;
}

@media (max-width: 768px) {
  .channel-content {
    gap: 32px;
  }
}

.channel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .channel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.channel-title {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.more-link {
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 480px) {
  .icon-card {
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    text-align: center;
    min-height: auto;
  }

  .icon-card-content {
    align-items: center;
  }

  .channel {
    padding: 32px 16px;
  }

  .channel-content {
    gap: 24px;
  }

  .channel-title {
    gap: 16px;
  }

  .more-link {
    gap: 12px;
  }
}

.youtube-videos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 40px;
  width: 100%;
}

@media (max-width: 1400px) {
  .youtube-videos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .youtube-videos {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
  }
}

/* 1 column on mobile */
@media (max-width: 600px) {
  .youtube-videos {
    grid-template-columns: 1fr;
  }
}

.youtube-video-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}

.youtube-video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--padding, 20px);
}

.youtube-video-thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.youtube-video-title {
  text-align: start;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.see-you-online {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.see-you-online-container {
  max-width: 1540px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 120px;
}

.see-you-online-content {
  width: 100%;
  max-width: 770px;
  overflow: hidden;
}

@media (max-width: 1126px) {
  .see-you-online-container {
    flex-direction: column;
    gap: 40px;
    margin-top: 80px;
  }

  .see-you-online-container {
    gap: 61px;
  }

  .see-you-online-content {
    width: 100%;
    max-width: unset;
  }
}

.see-you-online-container img {
  max-width: 100%;
  height: auto;
}

.see-you-online-description {
  color: var(--body-color, #5a6a79);
  margin-top: 10px;
}

@media (max-width: 480px) {
  .see-you-online {
    padding: 0 16px;
  }
}

.recent-news {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 24px;
  overflow: visible;
}

.recent-news.padding-bottom {
  padding-bottom: 184px;
}

.recent-news-container {
  max-width: 1540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  overflow: visible;
}

.recent-news-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 40px;
  width: 100%;
}

.recent-news-cards-container .workshop-card {
  width: 100%;
  min-width: 0;
}

.recent-news-cards-container.five-cards {
  grid-template-columns: repeat(5, 1fr);
}

.recent-news-container:has(.recent-news-cards-container.episodes-scroll) {
  gap: 0;
}

.recent-news-cards-container.episodes-scroll {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  grid-template-columns: unset;
  gap: 20px;
}

.recent-news-cards-container.episodes-scroll::-webkit-scrollbar {
  display: none;
}

.recent-news-cards-container.episodes-scroll .episode-card {
  flex-shrink: 0;
  width: 292px;
}

@media (max-width: 1399px) {

  .recent-news-cards-container,
  .recent-news-cards-container.five-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1023px) {

  .recent-news-cards-container,
  .recent-news-cards-container.five-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {

  .recent-news-cards-container,
  .recent-news-cards-container.five-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {

  .recent-news-cards-container,
  .recent-news-cards-container.five-cards {
    grid-template-columns: 1fr;
  }
}

.inspiration-header-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 0 35px;
}

.inspiration-header {
  width: 100%;
  max-width: 1540px;
  display: flex;
  min-height: 56px;
  padding: 15px 0 0;
  align-items: center;
  justify-content: space-between;
}

.inspiration-tabs {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.inspiration-tabs::-webkit-scrollbar {
  display: none;
}

.inspiration-tab {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: var(--border-radius-chip, 26px);
  color: var(--body-color);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.inspiration-tab.selected {
  background: var(--bg-dark, #141152);
  color: var(--white, #fff);
}

.search-input-wrapper {
  position: relative;
  max-width: 323px;
  width: 100%;
  padding: 0 24px;
}

.inspiration-search-input {
  max-width: 323px;
  width: 100%;
  height: 44px;
  padding-right: 45px;
  padding-left: 20px;
  border-radius: var(--border-radius-input, 31px);
  border: 1px solid var(--border-color, #d8d8f2);
  background: var(--white, #fff) url("../../assets/svg/searchIcon.svg") no-repeat right 12px center;
  background-size: 18px 18px;
  color: var(--black, #000);
}

.inspiration-search-input:focus {
  outline: 2px solid var(--primary, #a000ed);
}

.inspiration-search-input::placeholder {
  color: var(--body-color);
}

.search-clear-btn {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--body-color);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.2s ease;
}

.search-clear-btn:hover {
  color: var(--black);
}

.search-clear-btn.visible {
  display: flex;
}

.horizontal-divider {
  height: 1px;
  width: 100%;
  max-width: 1540px;
  background: var(--stroke, #e7e7ff);
  margin: 30px 0;
}

.stories {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  gap: 20px;
}

.stories-header-container {
  width: 100%;
  max-width: 1540px;
}

.stories-slider-container {
  width: 100%;
  position: relative;
  overflow: visible;
}

.arrowSliderFourSlides-wrapper {
  position: relative;
  max-width: 1540px;
  margin: 0 auto;
  overflow: visible;
}

.arrowSliderFourSlides {
  overflow: hidden;
}

.arrowSliderFourSlides .swiper-slide {
  padding: 0;
  height: auto;
  display: flex;
  justify-content: center;
}

.story-slide {
  display: flex;
  width: 370px;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  text-align: start;
}

.story-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.story-slide-image {
  width: 100%;
  height: 562px;
  border-radius: var(--border-radius-card, 15px);
  overflow: hidden;
}

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

.arrowSliderFourSlides-wrapper .swiper-button-next,
.arrowSliderFourSlides-wrapper .swiper-button-prev {
  display: flex;
  width: 46px;
  height: 46px;
  padding: 14.681px 0;
  justify-content: center;
  align-items: center;
  gap: 9.787px;
  border-radius: 52.851px;
  border: 0.979px solid var(--gray-light-border, #d2dae6);
  background: var(--white, #fff);
  backdrop-filter: blur(27.399999618530273px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.arrowSliderFourSlides-wrapper .swiper-button-next {
  right: -60px;
}

.arrowSliderFourSlides-wrapper .swiper-button-prev {
  left: -60px;
}

.arrowSliderFourSlides-wrapper .swiper-button-next::after {
  content: url("../../assets/svg/smallArrowNextBlack.svg");
  position: relative;
  left: 2px;
  bottom: 6px;
}

.arrowSliderFourSlides-wrapper .swiper-button-prev::after {
  content: url("../../assets/svg/smallArrowPrevBlack.svg");
  position: relative;
  right: 2px;
  bottom: 6px;
}

.arrowSliderFourSlides-wrapper .swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.podcast.inspiration-homepage {
  padding: 0 24px 0;
}

.podcast-speakers-container {
  max-width: 1540px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.podcast-speakers-container::-webkit-scrollbar {
  display: none;
}

.episode-card {
  display: flex;
  max-width: 292px;
  padding: 15px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: var(--border-radius-card, 20px);
  background: var(--bg-light, #f5f6fa);
  text-align: left;
}

.episode-card:hover {
  background: var(--white, #fff);
  box-shadow: 0 8px 18px 0 rgba(223, 226, 243, 0.8);
}

.episode-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.episode-card:hover .episode-title {
  color: var(--primary, #a000ed);
}

.episode-card-text-content {
  display: flex;
  padding: 0 10px 10px 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
}

.episode-card img {
  width: 100%;
  border-radius: var(--border-radius-card, 20px);
  object-fit: cover;
}

@media (max-width: 1540px) {
  .inspiration-tabs {
    padding-left: 24px;
  }
}

@media (max-width: 768px) {
  .podcast-speakers-container {
    justify-content: flex-start;
    gap: 24px;
  }
}

@media (max-width: 800px) {
  .inspiration-header {
    flex-direction: column;
    height: auto;
    gap: 12px;
    align-items: flex-start;
  }

  .search-input-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 1599px) {
  .arrowSliderFourSlides-wrapper .swiper-button-next {
    right: -2px;
  }

  .arrowSliderFourSlides-wrapper .swiper-button-prev {
    left: -2px;
  }
}

@media (max-width: 792px) {
  .arrowSliderFourSlides-wrapper .swiper-button-next {
    right: 10px;
  }

  .arrowSliderFourSlides-wrapper .swiper-button-prev {
    left: 10px;
  }
}

@media (max-width: 480px) {
  .stories {
    padding: 0 16px;
  }

  .recent-news {
    padding: 0 16px;
  }

  .search-input-wrapper {
    padding: 0 16px;
  }

  .inspiration-tabs {
    padding-left: 16px;
  }
}

@media (max-width: 450px) {
  .arrowSliderFourSlides-wrapper .swiper-button-next {
    right: -10px;
  }

  .arrowSliderFourSlides-wrapper .swiper-button-prev {
    left: -10px;
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-logo {
  width: 250px;
  height: 37px;
  flex-shrink: 0;
}

.nav-logo a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo__image {
  position: absolute;
  inset: 0;
  object-fit: contain;
  opacity: 1;
}

.nav-logo__image--sticky {
  opacity: 0;
}

.site-nav.site-nav--sticky .nav-logo__image--default {
  opacity: 0;
}

.site-nav.site-nav--sticky .nav-logo__image--sticky {
  opacity: 1;
}

.nav-menu-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 8px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu-item {
  display: flex;
  padding: 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: var(--white);
  height: 82px;
  border-bottom: 4px solid transparent;
}

.nav-menu-item>a {
  align-items: center;
  align-self: stretch;
  display: flex;
  justify-content: center;
  padding: 0 10px;
  text-wrap: wrap;
}

.nav-menu-item--dark {
  color: var(--bg-dark);
}

.nav-menu-item:hover,
.nav-menu-item--active {
  border-bottom-color: var(--white);
  transition: border-bottom-color 0.3s ease, color 0.3s ease;
  color: var(--white);
}

.header-dark .nav-menu-item:hover,
.header-dark .nav-menu-item--active {
  border-bottom-color: #000;
  transition: border-bottom-color 0.3s ease, color 0.3s ease;
}

.nav-actions {
  display: flex;
  max-width: 152px;
  width: 100%;
  justify-content: center;
  gap: 48px;
  align-items: center;
}

.nav-icon-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon {
  width: 24px;
  height: 24px;
}

.header-container.light .nav-icon svg path {
  fill: var(--primary);
}

.cart-badge {
  position: absolute;
  right: -21px;
  top: 2px;
  background: var(--primary-light);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}



.nav-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 999;
  transition: transform 0.3s ease;
  margin-left: 20px;
}

.nav-menu-toggle__line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--white, #fff);
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}

.header-dark .nav-menu-toggle__line {
  background-color: #000;
}

.nav-menu-toggle--dark .nav-menu-toggle__line {
  background-color: var(--bg-dark, #000);
}

.nav-menu-toggle.active .nav-menu-toggle__line:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.nav-menu-toggle.active .nav-menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-menu-toggle.active .nav-menu-toggle__line:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

@media (max-width: 1520px) {
  .nav-menu-toggle {
    display: flex;
    margin-left: 40px;
    margin-right: auto;
  }

  .nav {
    justify-content: unset !important;
    height: 80px;
  }

  .nav-menu-container {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background-color: var(--bg-darker);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.2);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .header-container.light .nav-menu-container {
    background-color: var(--white);
  }

  .header-container.light .nav-menu-container::before {
    color: var(--bg-dark, #141152);
  }

  .header-container.light .nav-menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header-container.light .nav-menu-item:hover,
  .header-container.light .nav-menu-item--active {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--bg-dark, #141152);
  }

  .nav-menu-container.active {
    left: 0;
  }

  .nav-menu {
    flex-direction: column;
    padding: 100px 0 30px;
    gap: 0;
    align-items: stretch;
  }

  .nav-menu-item {
    width: 100%;
    height: auto;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: flex-start;
  }

  .nav-menu-item a {
    display: block;
    padding: 24px 30px;
    width: 100%;
    transition: all 0.3s ease;
    text-align: left;
  }

  .nav-menu-item:hover,
  .nav-menu-item--active {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--white, #fff);
  }

  .nav-menu-item:hover {
    color: var(--white);
  }

  .nav-menu-container .nav-menu-item a {
    color: var(--white, #fff);
  }

  .nav-menu-container .nav-menu-item:hover,
  .nav-menu-container .nav-menu-item--active {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    border-left-color: var(--white, #fff);
    color: var(--white, #fff);
  }

  .nav-menu-container .nav-menu-item:hover a,
  .nav-menu-container .nav-menu-item--active a {
    background-color: rgba(255, 255, 255, 0.08);
  }

  .nav-menu-container .nav-actions--drawer .nav-icon-link {
    opacity: 0.82;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-menu-container .nav-actions--drawer .nav-icon-link:hover {
    opacity: 1;
    transform: translateY(-1px);
  }

  .nav-menu-container .nav-actions--drawer img {
    filter: none;
  }

  .nav-menu-container .nav-button--drawer {
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .nav-menu-container .nav-button--drawer:hover {
    background-color: var(--primary, #a000ed);
    color: var(--white, #fff);
  }

  .nav .nav-actions--drawer {
    display: flex;
    margin-top: auto;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 32px;
    max-width: 100%;
    justify-content: center;
  }

  .nav-menu-container::before {
    content: "×";
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: var(--white, #fff);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 10;
  }

  .nav-menu-container::before:hover {
    opacity: 1;
  }

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

@media (max-width: 1024px) {
  .nav {
    justify-content: space-between !important;
  }

  .nav-menu-toggle {
    display: flex;
    margin-left: 20px;
    margin-right: unset;
  }

  .nav .nav-actions--desktop,
  .nav .nav-button--desktop {
    display: none;
  }

  .nav .nav-button--drawer {
    display: flex;
  }

  .nav .nav-button--drawer {
    margin: 0 30px 30px;
    width: calc(100% - 60px);
    padding: 16px 24px;
    font-size: 16px;
    text-align: center;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }
}

@media (max-width: 768px) {
  .nav-menu-container {
    max-width: 320px;
  }

  .nav-menu {
    padding: 80px 0 30px;
  }

  .nav-menu-item a {
    padding: 20px 25px;
  }

  .nav .nav-actions--drawer {
    padding: 25px;
    gap: 28px;
  }

  .nav .nav-button--drawer {
    margin: 0 25px 25px;
    width: calc(100% - 50px);
  }
}

@media (max-width: 480px) {
  .nav-menu-toggle {
    margin-left: 15px;
    width: 26px;
    height: 20px;
  }

  .nav-menu-toggle__line {
    height: 2.5px;
  }

  .nav-menu-container {
    max-width: 280px;
  }

  .nav-icon {
    width: 22px;
    height: 22px;
  }

  .cart-badge {
    width: 18px;
    height: 18px;
    right: -18px;
    font-size: 11px;
  }

  .nav .nav-actions--drawer {
    padding: 20px;
    gap: 24px;
  }

  .nav .nav-button--drawer {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
    padding: 14px 20px;
    font-size: 15px;
  }
}

.nav .white-button.nav-button--drawer {
  display: flex;
  height: 50px;
  min-height: 50px;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 71px;
  background: var(--white, #fff);
  color: var(--bg-dark, #141152);
}

.site-nav.site-nav--sticky .white-button.nav-button--drawer {
  background: var(--primary-button, #a612ee);
  color: var(--white, #fff);
}

.nav .white-button.nav-button--drawer svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.nav .white-button.nav-button--drawer svg circle,
.nav .white-button.nav-button--drawer svg ellipse {
  stroke: currentColor;
}

.nav .white-button.nav-button--drawer-desktop {
  width: auto;
  margin: 0 0 0 auto;
  align-self: center;
  flex: 0 0 auto;
}

.nav .white-button.nav-button--drawer-mobile {
  display: none;
}

@media (max-width: 768px) {
  .nav .white-button.nav-button--drawer-desktop {
    display: none;
  }

  .nav .white-button.nav-button--drawer-mobile {
    display: flex;
    margin: 0 25px 25px;
    width: calc(100% - 50px);
  }
}

@media (max-width: 480px) {
  .nav .white-button.nav-button--drawer-mobile {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
  }
}

/* Light navbar */
.header-container.light .nav-menu-item {
  color: var(--bg-dark, #141152);
}

.header-container.light .nav-menu-item:hover,
.header-container.light .nav-menu-item--active {
  border-bottom-color: var(--bg-dark, #141152);
  color: var(--bg-dark, #141152);
}

.header-container.light .nav-menu-toggle__line {
  background-color: var(--bg-dark, #000);
}

.header-container.light .nav-menu-container::before {
  color: var(--bg-dark, #141152);
}

.header-container.light .nav-menu-toggle.active .nav-menu-toggle__line {
  background-color: var(--bg-dark, #000);
}

.header-container.light .nav-actions--drawer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Overlay */
body.menu-open.light-mode::after {
  background-color: rgba(20, 17, 82, 0.4);
}

.header-container.light .nav-icon-link {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.header-container.light .nav-icon-link:hover {
  opacity: 1;
}

.header-container.light .nav-menu-item a {
  color: inherit;
}

@media (max-width: 1520px) {
  .site-nav.site-nav--sticky .nav-menu-container {
    background-color: var(--white, #fff);
  }

  .site-nav.site-nav--sticky .nav-menu-container::before {
    color: var(--bg-dark, #141152);
  }

  .site-nav.site-nav--sticky .nav-menu-item {
    border-bottom: 1px solid rgba(20, 17, 82, 0.1);
  }

  .site-nav.site-nav--sticky .nav-menu-item:hover,
  .site-nav.site-nav--sticky .nav-menu-item--active {
    border-bottom-color: rgba(20, 17, 82, 0.1);
    border-left-color: var(--bg-dark, #141152);
  }

  .site-nav.site-nav--sticky .nav-menu-container .nav-menu-item a {
    color: var(--bg-dark, #141152);
  }

  .site-nav.site-nav--sticky .nav-menu-container .nav-menu-item:hover,
  .site-nav.site-nav--sticky .nav-menu-container .nav-menu-item--active {
    color: var(--bg-dark, #141152);
    border-bottom-color: rgba(20, 17, 82, 0.1);
    border-left-color: var(--bg-dark, #141152);
  }

  .site-nav.site-nav--sticky .nav-menu-container .nav-menu-item:hover a,
  .site-nav.site-nav--sticky .nav-menu-container .nav-menu-item--active a {
    background-color: rgba(20, 17, 82, 0.06);
  }

  .site-nav.site-nav--sticky .nav-actions--drawer {
    border-top: 1px solid rgba(20, 17, 82, 0.1);
  }
}

@media (max-width: 1024px) {

  .header-container.light .nav-menu-item:hover,
  .header-container.light .nav-menu-item--active {
    border-left-color: var(--bg-dark, #141152);
  }

  .header-container.light .nav-menu-container {
    background-color: var(--white);
  }

  .header-container.light .nav-menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.new-highschool-logo {
  width: 570px;
  height: 109px;
  flex-shrink: 0;
  aspect-ratio: 570/109;
  align-self: center;
}

.new-highschool-header-container {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  color: var(--white);
}

.new-highschool-header {
  width: 100%;
  align-items: center;
  max-width: 1014px;
  display: flex;
  justify-content: center;
  padding: 100px 16px 50px;
}

.new-highschool-header.more-padding-top {
  padding-top: 100px;
}

.new-highschool-title {
  width: 100%;
  display: flex;
  justify-content: center;
  color: var(--white);
  padding: 92px 0 50px;
  text-align: center;
}

.pen-circle {
  display: block;
  align-self: flex-end;
}

.book-circle {
  display: block;
  align-self: flex-start;
}

.new-highschool-slide {
  display: flex;
  width: 100%;
  max-width: 1127px;
  height: 617px;
  padding: 0 60px;
  align-items: flex-start;
  gap: 35px;
  border-radius: var(--border-radius-card, 20px);
  background: var(--brown-dark);
}

.new-highschool-slide.full-width {
  max-width: unset;
}

.margin-bottom-64 {
  margin-bottom: 64px;
}

.new-highschool-slide-info {
  color: var(--white);
  display: flex;
  flex: 0 1 492px;
  width: 100%;
  max-width: 492px;
  min-width: 0;
  height: 617px;
  padding: 64px 0 56px 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  text-align: start;
}

.new-highschool-slide-info-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  gap: 11px;
}

.new-highschool-slide-info-duration {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  align-self: stretch;
}

.new-highschool-slide-info-start-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}

.info-date {
  display: flex;
  gap: 12px;
}

.new-highschool-slide-info-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 15px;
}

.new-highschool-slide-info-body-description {
  margin-bottom: 15px;
  text-align: left;
}

.new-highschool-slide.secondary {
  background: var(--accent);
}

.new-highschool-slide-image-container {
  display: flex;
  flex: 0 1 480px;
  width: 480px;
  min-width: 400px;
  justify-content: center;
}

.new-highschool-slide-image {
  display: flex;
  width: 100%;
  max-width: 480px;
  justify-content: center;
  align-items: flex-end;
  height: 617px;
  position: relative;
  flex-shrink: 0;
}


.new-highschool-slide-image-inner {
  position: relative;
  display: flex;
  max-height: 594px;
  max-height: 100%;
  z-index: 0;
}

.new-highschool-slide-image-inner img {
  max-height: 100%;
  width: auto;
}

@media (max-width: 1024px) {
  .new-highschool-slide {
    padding: 0 30px;
    max-width: 100%;
  }
}

.frame-container {
  background: var(--bg-dark, #141152);
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 120px;
}

.frame-container.no-frames {
  padding-bottom: 80px;
}

.frame-container.no-frames::before,
.frame-container.no-frames::after {
  display: none;
}

.frame-container>* {
  position: relative;
  z-index: 2;
}

.frame-container.above-footer {
  overflow: visible;
  padding-bottom: 80px;
}

.new-highschool-description {
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 90px;
  margin-top: 40px;
  margin-bottom: 64px;
  height: 606px;
}

.new-highschool-description-text {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.new-highschool-description-body-text {
  margin-top: 17px;
}

.new-highschool-description-image-wrapper {
  width: 691px;
  height: 606px;
  flex-shrink: 0;
  border-radius: var(--border-radius-card, 20px);
  overflow: hidden;
}

.new-highschool-description-image-wrapper img {
  width: 691px;
  height: auto;
  object-fit: cover;
}

.back-button {
  position: absolute;
  top: 120px;
  left: 24px;
}

.class-description {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  padding: 90px 56px;
}

.class-description-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 94px;
  max-width: 1540px;
  width: 100%;
}

.class-description-text-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 120px;
  width: 100%;
}

.class-description-text-list {
  display: flex;
  flex-direction: column;
  gap: 94px;
  flex: 1;
  min-width: 0;
}

.class-description-text {
  max-width: 725px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.class-description-emphasis-text {
  display: inline-flex;
  align-items: flex-start;
  gap: 29px;
  color: var(--black, #000);
  max-width: 680px;
  flex: 1;
  min-width: 0;
}

.class-description-emphasis-text .highlight {
  color: var(--school-color-2);
}

.class-description-info-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 24px;
  max-width: 1540px;
  width: 100%;
}

.class-description-info-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
  max-width: 344px;
}

.class-description-info-item img {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
}

.class-description-info-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vertical-divider {
  width: 1px;
  background: var(--stroke, #e7e7ff);
  align-self: stretch;
}

@media (max-width: 768px) {
  .class-description-info-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .class-description-info-item {
    gap: 20px;
  }
}

@media (max-width: 1320px) {
  .new-highschool-description {
    gap: 24px;
  }

  .class-description-text-container {
    gap: 60px;
  }
}

@media (max-width: 1100px) {
  .class-description {
    padding: 80px 24px 48px;
  }

  .class-description-text-container {
    gap: 40px;
  }

  .class-description-text {
    max-width: none;
  }

  .class-description-text-list {
    max-width: none;
  }

  .class-description-emphasis-text {
    max-width: none;
  }
}

@media (max-width: 960px) {
  .new-highschool-slide {
    flex-direction: column;
    height: auto;
    padding: 0;
  }

  .new-highschool-slide-info {
    flex: 1 1 auto;
    max-width: 100%;
    height: auto;
    padding: 30px 24px;
    gap: 40px;
    order: 2;
    z-index: 2;
  }

  .new-highschool-slide-image {
    order: 1;
    width: 100%;
    height: auto;
  }

  .new-highschool-slide-image-container {
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .new-highschool-slide-image::before {
    width: 126.285px;
    height: 100%;
    top: 0;
    left: 20%;
  }

  .new-highschool-slide-image-inner {
    max-width: 320px;
    width: 100%;
    margin-top: 16px;
  }

  .new-highschool-slide-image-inner img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }

  .class-description-text-container {
    flex-direction: column;
    gap: 54px;
  }

  .vertical-divider {
    display: none;
  }

  .class-description-info-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }

  .class-description-info-item {
    flex-direction: row;
    gap: 26px;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .new-highschool-description {
    flex-direction: column;
    height: auto;
  }

  .new-highschool-description-image-wrapper {
    order: -1;
    width: auto;
    height: auto;
    align-self: center;
  }
}

@media (max-width: 784px) {
  .back-button {
    top: 80px;
  }

  .pen-circle {
    width: 90px;
  }

  .book-circle {
    width: 75px;
  }

  .new-highschool-logo {
    width: 400px;
    height: 77px;
  }
}

@media (max-width: 556px) {
  .pen-circle {
    width: 65px;
    align-self: flex-start;
  }

  .book-circle {
    width: 50px;
    align-self: flex-end;
  }

  .new-highschool-logo {
    width: 320.209px;
    height: 61.668px;
    aspect-ratio: 320.21/61.67;
  }

  .class-description {
    padding: 80px 16px 48px;
  }

  .new-highschool-slide-info {
    padding: 0 24px 36px;
  }

  .class-description-emphasis-text img {
    width: 66.828px;
  }
}

@media (max-width: 375px) {
  .new-highschool-slide-image::before {
    left: 10%;
  }
}

.number-dropdown-wrapper {
  position: relative;
  display: inline-block;
  width: 90px;
}

.number-dropdown {
  width: 100%;
  height: 53px;
  padding: 10px 40px 10px 16px;
  border-radius: var(--corner-radius-md, 6px);
  border: 1px solid var(--gray-warm, #c5c5c5);
  background: var(--white, #fff);
  cursor: pointer;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.2s ease;
}

.number-dropdown:focus {
  outline: none;
  border-color: var(--primary, #a000ed);
}

.number-dropdown:hover {
  border-color: var(--primary, #a000ed);
}

.dropdown-arrow {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 16px;
  height: 16px;
}

.number-dropdown::-ms-expand {
  display: none;
}

.peek-carousel-container {
  width: 100%;
  overflow: hidden;
}

.peekSwiper {
  width: 100%;
  overflow: visible;
}

.peekSwiper .swiper-slide {
  width: 100%;
  max-width: 1127px;
  transition: transform 0.3s ease;
  padding: 50px 0 120px;
}

.peekSwiper .swiper-slide-active {
  transform: scale(1);
}

.peekSwiper .swiper-wrapper {
  align-items: center;
}

.peekSwiper .swiper-pagination {
  position: relative;
  bottom: auto !important;
  top: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 16px;
}

.peekSwiper .swiper-pagination::-webkit-scrollbar {
  display: none;
}

@media (max-width: 1500px) {
  .peekSwiper .swiper-slide {
    padding: 60px 16px 120px;
  }
}

@media (max-width: 1200px) {
  .peekSwiper .swiper-slide {
    max-width: 90%;
  }
}

@media (max-width: 786px) {
  .peekSwiper .swiper-slide {
    padding: 32px 16px 90px;
    max-width: 100%;
  }

  .peek-carousel-container {
    overflow: hidden;
  }
}

@media (max-width: 700px) {
  .peekSwiper .swiper-pagination {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    gap: 10px;
    padding: 0 16px;
  }
}

.swiper-pagination-bullet.peek-swiper-pagination-button.xl-body-medium {
  display: flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: var(--corner-radius-xxxl, 22px);
  border: 1px solid #FFF;
  color: #FFF;
  text-align: center;
  background-color: transparent;
  height: 44px;
  width: fit-content;
  text-wrap: nowrap;
  flex: 0 0 auto;
  max-width: 100%;
}

@media (max-width: 600px) {
  .swiper-pagination-bullet.peek-swiper-pagination-button.xl-body-medium {
    height: auto;
    min-height: 44px;
    max-width: calc(100vw - 32px);
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }
}

.swiper-pagination-bullet.peek-swiper-pagination-button.xl-body-medium:hover {
  transform: none;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.swiper-pagination-bullet.peek-swiper-pagination-button.xl-body-medium.swiper-pagination-bullet-active {
  background: #FFF;
  color: #000;
}

.podcast {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  background-color: var(--white, #fff);
  width: 100%;
  padding: 120px 24px 200px;
}

.podcast-content-container {
  max-width: 1540px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}

.podcast-content-container.space-between {
  justify-content: space-between;
}

.podcast-update-title {
  display: flex;
  align-items: center;
}

.podcast-update-title.updates-online {
  gap: 40px;
  padding: 20px 0;
}

.podcast-banner {
  width: 363.478px;
  height: 270px;
  display: block;
}

.podcast-banner.updates-online {
  width: 329.263px;
  height: 202.284px;
}

.podcast-section {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  width: 100%;
}

.podcast-section.set-max-width {
  max-width: 700px;
}

@media (max-width: 1280px) {
  .podcast-content-container {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .podcast-section.set-max-width {
    max-width: 100%;
  }

  .podcast-banner {
    width: 258.522px;
    height: 192.036px;
  }
}

@media (max-width: 840px) {
  .podcast-update-title.updates-online {
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .podcast-update-title {
    flex-direction: column;
    align-items: center;
  }
}

.podcast-speakers-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.podcast-speaker {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  position: relative;
}

.podcast-speaker::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(64px + 26px);
  /* Image width + gap */
  right: 0;
  height: 1px;
  background-color: var(--stroke, #e7e7ff);
}

.podcast-speaker:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(64px + 26px);
  /* Image width + gap */
  right: 0;
  height: 1px;
  background-color: var(--stroke, #e7e7ff);
}

.podcast-speaker-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  flex: 1;
  padding: 10px 0;
}

.podcast-speaker-info img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.date-speaker {
  margin-top: 6px;
}

@media (max-width: 800px) {
  .podcast-speaker-info.inspiration {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

.podcast-speaker-text-content {
  display: flex;
  flex-direction: column;
}

.podcast-speaker-subtitle {
  color: var(--body-color, #5a6a79);
}

.get-access-button {
  display: flex;
  height: 42px;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: white;
  border-radius: 71px;
  background: var(--Primary, #A000ED);
}

.listen-now-button {
  display: flex;
  height: 42px;
  width: 158px;
  padding: 4px 20px 4px 3px;
  align-items: center;
  gap: 10px;
  border-radius: var(--border-radius-button-large, 120px);
  background: var(--primary, #a000ed);
  color: var(--white, #fff);
  text-align: center;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.listen-now-button.playing {
  background: #fff;
  box-shadow: 0 12px 60px 0 #dfe2f3;
  color: var(--primary, #a000ed);
}

.listen-now-button-wrapper {
  position: relative;
}

.listen-now-player {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listen-now-player-circle {
  position: absolute;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.listen-now-player-play-icon {
  display: block;
}

.listen-now-player-pause-icon {
  display: none;
}

.listen-now-button.is-playing .listen-now-player-play-icon {
  display: none;
}

.listen-now-button.is-playing .listen-now-player-pause-icon {
  display: flex;
}

.listen-now-progress-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  z-index: 1;
}

.listen-now-progress-bg {
  stroke: #e6e6ff;
}

.listen-now-progress-bar {
  stroke: var(--primary, #a000ed);
  stroke-dasharray: 144.51;
  stroke-dashoffset: 144.51;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 0.1s linear;
}

.listen-now-text {
  white-space: nowrap;
  margin: 0 auto;
}

.podcast-section-title {
  margin-bottom: 10px;
}

.tip-container {
  margin-top: 9px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 451px;
  color: var(--body-color, #5a6a79);
}

.stay-tuned-container {
  margin-top: 3px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  color: var(--body-color, #5a6a79);
}

.stay-tuned-text {
  max-width: 302px;
}

.stay-tuned-icon-and-link {
  display: flex;
  align-items: center;
  gap: 25px;
}

.stay-tuned-link {
  color: var(--black, #000);
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 768px) {
  .podcast {
    padding: 60px 16px 130px;
    gap: 53px;
  }

  .podcast-speaker {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .listen-now-button-wrapper {
    align-self: flex-end;
  }

  .tip-container {
    max-width: 100%;
  }
}

@media (max-width: 582px) {
  .podcast {
    padding: 53px 16px 130px;
  }

  .stay-tuned-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .stay-tuned-text {
    max-width: 100%;
  }

  .stay-tuned-icon-and-link {
    width: 100%;
    justify-content: start;
  }
}

@media (max-width: 480px) {
  .podcast-speaker {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

.podcast-player-card {
  display: flex;
  padding: 15px 27px 15px 15px;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  align-self: stretch;
  border-radius: var(--border-radius-card-secondary, 21px);
  background: var(--bg-light, #f5f6fa);
}

.podcast-player-card:hover {
  background: var(--white, #fff);
  box-shadow: 0 12px 60px 0 #dfe2f3;
}

.podcast-player-card-section {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.podcast-player-card-image-content {
  width: 100px !important;
  flex-shrink: 0;
  height: 100px;
  border-radius: var(--corner-radius-md, 6px);
  overflow: hidden;
  background: lightgray;
}

.podcast-player-card-image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.podcast-player-card-text-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: start;
  text-align: start;
}

.podcast-player-card-subtitle {
  color: var(--body-color, #5a6a79);
}

.podcast-player-card-duration {
  color: var(--body-color, #5a6a79);
  text-wrap: nowrap;
}

.audio-player-section {
  display: flex;
  align-items: center;
  margin: auto 0;
}

@media (max-width: 480px) {
  .podcast-player-card {
    flex-direction: column;
    align-items: start;
    text-align: center;
    gap: 15px;
    padding: 15px 15px 15px 16px;
  }

  .podcast-player-card-image-content {
    width: 72px !important;
    height: 72px !important;
  }

  .audio-player-section {
    align-self: end;
  }
}

.podcasts-header-container {
  display: flex;
  max-width: 1540px;
  width: 100%;
  align-items: flex-end;
  gap: 46px;
}

.watercolor-bg.podcasts-header-bg {
  min-height: 399px;
  align-items: center;
}

.podcasts-header-container-image {
  max-width: 262px;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--corner-radius-lg, 10px);
  box-shadow: 0 14px 23.2px 0 rgba(32, 44, 78, 0.35);
  flex-shrink: 0;
}

.podcasts-header-container-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.podcasts-header-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 24px;
}

.podcasts-header {
  display: flex;
  padding-bottom: 15px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 22px;
  flex: 1 0 0;
  min-width: 0;
  max-width: 1200px;
  width: 100%;
}

.podcast-header-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.podcasts-header-actions-container {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.podcasts-body {
  padding: 30px 24px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.podcasts-body-container {
  display: flex;
  max-width: 1540px;
  width: 100%;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.podcasts-column-container {
  max-width: 1113px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.podcast.inspiration-podcasts {
  padding: 0;
  align-items: start;
}

.podcast-author {
  margin-top: 44px;
}

.more-text {
  display: none;
}

.more-text.show {
  display: inline;
}

@media (max-width: 1024px) {
  .podcasts-header-container {
    gap: 32px;
  }

  .podcasts-body-container {
    flex-direction: column;
  }

  .podcasts-column-container {
    max-width: 100%;
  }

  .podcast-author {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .watercolor-bg.podcasts-header-bg {
    min-height: auto;
    padding-bottom: 40px;
  }

  .podcasts-header-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .podcasts-header {
    width: 100%;
    padding-bottom: 0;
    align-items: start;
  }

  .podcast-header-text {
    align-items: start;
    text-align: start;
  }

  .podcasts-header-actions-container {
    justify-content: center;
    gap: 16px;
  }

  .podcasts-body {
    padding: 20px 16px 0;
  }

  .podcasts-body-container {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .podcasts-header-actions-container {
    gap: 12px;
  }

  .podcasts-header-wrapper {
    padding: 0 16px;
  }
}

.reviews {
  display: flex;
  justify-content: center;
  width: 100%;
}

.reviews-container {
  max-width: 1540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -25px;
  padding: 0 120px;
}

.reviews-header {
  text-align: center;
}

.review-card {
  display: flex;
  align-items: center;
  padding: 0 160px;
  flex-direction: column;
  gap: 13px;
}

.review-card-user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.review-card-text {
  max-width: 726px;
  text-align: center;
}

.arrowSwiperNoPagination.swiper {
  max-width: 1046px;
  margin-bottom: 60px;
}

.arrowSwiperNoPagination .swiper-button-next::after {
  content: url("../../assets/svg/arrowNextBlack.svg");
}

.arrowSwiperNoPagination .swiper-button-prev::after {
  content: url("../../assets/svg/arrowPrevBlack.svg");
}

@media (max-width: 1024px) {
  .reviews-container {
    padding: 0 60px;
  }

  .review-card {
    padding: 0 80px;
  }
}

@media (max-width: 768px) {
  .reviews-container {
    padding: 0 40px;
  }

  .review-card {
    padding: 0 40px;
  }

  .arrowSwiperNoPagination.swiper {
    margin-bottom: 40px;
  }
}

@media (max-width: 556px) {
  .reviews-container {
    padding: 0 16px;
  }

  .review-card {
    padding: 0 20px;
  }

  .review-card-text {
    max-width: 100%;
  }

  .arrowSwiperNoPagination .swiper-button-next,
  .arrowSwiperNoPagination .swiper-button-prev {
    width: 32px;
    height: 32px;
  }

  .arrowSwiperNoPagination .swiper-button-next::after,
  .arrowSwiperNoPagination .swiper-button-prev::after {
    transform: scale(0.8);
  }
}

.slots-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y pinch-zoom;
}

.slotsSwiper {
  width: 100%;
  overflow: visible;
  overscroll-behavior-x: none;
}

.slotsSwiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.slotsSwiper .swiper-slide {
  width: 182.737px;
  padding: 50px 0;
}

.slot-card {
  display: flex;
  width: 100%;
  padding: 20.667px;
  flex-direction: column;
  align-items: center;
  gap: 10.877px;
  border-radius: var(--border-radius-card-secondary, 21px);
  background: var(--bg-light, #f5f6fa);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slot-card:hover,
.slot-card:focus {
  background: var(--primary, #a000ed);
  transform: translateY(-4px);
}

.slot-card:hover .slot svg path,
.slot-card:focus .slot svg path {
  fill: var(--tertiary);
  transition: all 0.3s ease;
}

.slot-card:hover .slot,
.slot-card:focus .slot {
  color: var(--white, #fff);
}

.slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8.702px;
  color: var(--primary, #a000ed);
}

.slot-time {
  margin: 18.49px 0 21.3px;
}

.slot svg {
  width: 34px;
  height: 17px;
}

.slotsSwiper .swiper-pagination {
  position: relative;
  margin-top: 32px;
  bottom: auto;
}

.slotsSwiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--white-gray, #eee) !important;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.slotsSwiper .swiper-pagination-bullet-active {
  background: var(--primary, #a000ed) !important;
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .slotsSwiper .swiper-slide {
    width: 160px;
  }

  .slot-card {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .slotsSwiper .swiper-slide {
    width: 150px;
    min-height: unset;
  }

  .slot-card {
    padding: 16px;
  }

  .slot-time {
    margin: 14px 0 16px;
  }

  .slot svg {
    width: 28px;
    height: 14px;
  }
}

.team {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  overflow-x: hidden;
  padding: 52px 24px 0 24px;
  position: relative;
}

.team-container {
  width: 100%;
  max-width: 1540px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 52px;
  margin-bottom: 112px;
  position: relative;
}

.team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  opacity: 0.1;
  background: #000;
}

.umb-block-list:has(+ section.team)>.header-title-text-section:last-child {
  padding-bottom: 70px;
}

.team-container.margin-bottom-smallest {
  margin-bottom: 80px;
}

.team-container::after {
  content: "";
  position: absolute;
  bottom: -78px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  opacity: 0.1;
  background: #000;
}

.team-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
}

.team-member {
  width: 100%;
}

.team-member-profile {
  width: 100%;
  max-width: 610px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  align-self: stretch;
  padding-top: 38px;
}

.member-count {
  color: var(--black, #000);
  opacity: 0.2;
}

.team-member-info {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: start;
}

.team-member-photo {
  width: 287px;
  height: 275px;
  aspect-ratio: 287/275;
  border-radius: 19.323px;
  object-fit: cover;
  margin-top: 39px;
}

@media (max-width: 400px) {
  .team-member-photo {
    width: 200px;
    height: auto;
  }
}

.grid-wrapper {
  width: 100%;
  position: relative;
}

.grid-wrapper.smaller-margin {
  margin-bottom: 154px;
}

.grid-wrapper.margin-bottom-smallest {
  margin-bottom: 80px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  box-sizing: border-box;
}

.grid>* {
  padding-bottom: 38px;
  position: relative;
}

.grid>*:nth-child(odd)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  opacity: 0.1;
  background: #000;
}

@media (max-width: 1700px) {
  .team-member-profile {
    max-width: 610px;
  }

  .team-member:nth-child(even) {
    padding-right: 24px;
  }

  .team-member:nth-child(odd) {
    padding-left: 24px;
  }
}

@media (max-width: 1440px) {
  .team-member-profile {
    max-width: 400px;
  }
}

@media (max-width: 1100px) {
  .team-member-profile {
    max-width: 400px;
  }

  .team-member:nth-child(even) {
    padding-right: 0;
  }

  .team-member:nth-child(odd) {
    padding-left: 0;
  }

  .grid {
    padding: 0 16px;
  }

  .team-member-profile {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .team-member {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .team-member-profile {
    max-width: 100%;
  }

  .grid>*::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    opacity: 0.1;
    background: #000;
  }
}

@media (max-width: 480px) {
  .team {
    padding: 0 16px;
  }

  .grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .team-member:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
  }

  .team-member:nth-child(odd) {
    padding-left: 0;
    padding-right: 0;
  }
}

.update-yourself {
  display: flex;
  width: 100%;
  gap: 24px;
  justify-content: space-between;
  margin: 69px 0 97px;
  align-items: center;
}

.update-yourself-text {
  display: flex;
  max-width: 760px;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 79px;
  color: var(--white, #fff);
}

.update-yourself-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  object-fit: contain;
  display: block;
}

.update-yourself-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
  align-self: stretch;
}

.update-yourself-description p {
  margin-top: 20px;
}

.update-yourself-stats {
  display: flex;
  align-items: center;
  gap: 59px;
}

.update-yourself-stat {
  display: flex;
  align-items: center;
  gap: 23px;
}

.update-yourself-number {
  background: linear-gradient(180deg, #acceff 15.15%, #c99dfe 84.85%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.how-it-started {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 90px 24px 36px;
}

.how-it-started-container {
  max-width: 1540px;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 114px;
}

.how-it-started-text {
  color: var(--black, #000);
  display: flex;
  max-width: 760px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.how-it-started-img-text {
  display: flex;
  align-items: center;
  gap: 89px;
}

.timeline-item {
  display: flex;
  width: 458px;
  max-width: 100%;
  align-items: flex-start;
  gap: 19px;
  color: var(--body-color, #5a6a86);
  text-align: start;
}

.timeline-item-number {
  background: var(--linear, linear-gradient(90deg, #77f 0%, #a80fed 82.46%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  min-width: fit-content;
}

.timeline-item .xl-body-light {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.timelineCarousel .swiper-wrapper {
  display: flex;
  gap: 78px;
}

.timelineCarousel .swiper-slide {
  padding: 0 0 60px;
  width: 370px;
  max-width: 100%;
  box-sizing: border-box;
}

.timelineCarousel .swiper-pagination {
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.timelineCarousel .swiper-pagination-bullet {
  background: var(--white-gray, #eee) !important;
}

.timelineCarousel .swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

.quote-section {
  display: flex;
  width: 100%;
  justify-content: center;
  background: var(--primary);
  padding: 0 24px;
  color: white;
}

.quote-section-container {
  max-width: 1540px;
  width: 100%;
  margin: 103px 0 125px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  text-align: center;
  text-align: start;
}

@media (max-width: 1408px) {
  .update-yourself-stats {
    flex-wrap: wrap;
  }
}

@media (max-width: 1300px) {
  .how-it-started-img-text {
    gap: 24px;
  }
}

@media (max-width: 1054px) {
  .update-yourself {
    gap: 80px;
    flex-direction: column;
    margin: 69px 0 40px;
  }

  .update-yourself-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .update-yourself-text {
    max-width: 100%;
    gap: 50px;
  }

  .update-yourself-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .update-yourself-stat {
    gap: 15px;
  }

  .how-it-started {
    padding: 60px 24px 36px;
  }

  .how-it-started-container {
    gap: 40px;
  }

  .how-it-started-text {
    max-width: 100%;
  }

  .how-it-started-img-text {
    gap: 50px;
    flex-direction: column;
  }

  .timeline-item {
    width: 100%;
    max-width: 458px;
  }

  .timelineCarousel .swiper-slide {
    width: 100%;
    max-width: 370px;
  }

  .quote-section-container {
    margin: 80px 0 100px;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .timeline-item {
    gap: 16px;
  }

  .timelineCarousel .swiper-slide {
    width: 100%;
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .update-yourself {
    gap: 50px;
  }

  .update-yourself-text {
    gap: 40px;
  }

  .update-yourself-description {
    gap: 15px;
  }

  .update-yourself-description p {
    margin-top: 15px;
  }

  .update-yourself-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .update-yourself-stat {
    gap: 12px;
  }

  .how-it-started {
    padding: 50px 24px 60px;
  }

  .how-it-started-container {
    gap: 35px;
  }

  .how-it-started-text {
    gap: 15px;
  }

  .how-it-started-img-text {
    gap: 40px;
  }

  .timeline-item {
    width: 100%;
    flex-direction: column;
    gap: 15px;
  }

  .timelineCarousel .swiper-slide {
    padding: 0 0 50px;
    width: 100%;
    max-width: 100%;
  }

  .quote-section-container {
    margin: 60px 0 70px;
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .timeline-item {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .quote-section {
    padding: 0 16px;
  }

  .update-yourself {
    gap: 40px;
  }

  .update-yourself-text {
    gap: 30px;
  }

  .update-yourself-description {
    gap: 12px;
  }

  .update-yourself-stats {
    gap: 20px;
  }

  .update-yourself-stat {
    gap: 10px;
  }

  .how-it-started {
    padding: 40px 16px 50px;
  }

  .how-it-started-container {
    gap: 30px;
  }

  .how-it-started-img-text {
    gap: 30px;
  }

  .timeline-item {
    gap: 12px;
  }

  .timelineCarousel .swiper-slide {
    padding: 0 0 40px;
  }

  .quote-section-container {
    margin: 40px 0 50px;
    gap: 20px;
  }
}

@media (max-width: 400px) {
  .timeline-item {
    gap: 10px;
  }

  .timeline-item-number {
    font-size: 36px;
    line-height: 40px;
  }
}

@media (max-width: 340px) {
  .timeline-item {
    gap: 8px;
  }

  .timeline-item-number {
    font-size: 32px;
    line-height: 36px;
  }
}

.updates {
  width: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  padding: 84px 24px 123px;
}

.updates-content {
  max-width: 1540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.updates-title {
  width: 100%;
  display: flex;
  padding-top: 40px;
  justify-content: space-between;
  align-items: center;
}

.updates-online-color-text {
  background: var(--Linear, linear-gradient(90deg, #77f 0%, #a80fed 82.46%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.updates-archive-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-wrapper:has(.updates-archive-list) {
  max-height: none;
  clip-path: none;
}

.updates-archive-list~.fade-overlay,
.list-wrapper:has(.updates-archive-list)+.see-more-btn {
  display: none;
}

.updates-file-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--corner-radius-xl, 16px);
  background: var(--bg-light, #f5f6fa);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.updates-file-summary {
  display: flex;
  min-height: 139px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 61px 20px 24px;
  cursor: pointer;
}

.updates-file-intro {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 20px;
}

.updates-file-thumb {
  aspect-ratio: 16 / 9;
  width: 176px;
  height: 99px;
  flex: 0 0 auto;
  border: 0;
  border-radius: var(--corner-radius-md, 6px);
  object-fit: contain;
}

.updates-file-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.updates-file-copy {
  gap: 4px;
}

.updates-file-title {
  margin: 0;
  color: var(--black, #000);
}

.updates-file-description {
  margin: 0;
  max-width: 650px;
}

.updates-file-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 40px;
}

.updates-file-avatars {
  display: flex;
  min-width: 225px;
  align-items: center;
  justify-content: flex-end;
}

.updates-file-avatar {
  width: 60px;
  height: 60px;
  margin-left: -5px;
  border-radius: 50%;
  object-fit: cover;
}

.updates-file-avatar:first-child {
  margin-left: 0;
}

.updates-file-watch svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.previous-session-card {
  width: 100%;
  display: flex;
  padding: 10px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: var(--corner-radius-xl, 16px);
  background: var(--bg-light, #f5f6fa);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.previous-session-card:hover {
  background: var(--white, #fff);
  box-shadow: 0 8px 40px 0 rgba(223, 226, 243, 0.8);
}

.previous-session-card:not(:last-child) {
  margin-bottom: 10px;
}

.previous-session-info {
  display: flex;
  width: 50%;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.previous-session-info img {
  width: 134px;
  height: 99px;
  aspect-ratio: 134/99;
  border-radius: var(--corner-radius-md, 6px);
  object-fit: cover;
  flex-shrink: 0;
}

.previous-session-info-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: start;
  min-width: 0;
}

.session-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.list-container {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.list-wrapper {
  padding-top: 24px;
  max-height: 890px;
  clip-path: inset(0 -50px 0 -50px);
  transition: max-height 0.4s ease, clip-path 0.4s ease;
  position: relative;
}

.list-wrapper.expanded {
  max-height: none;
  clip-path: none;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.8) 50%,
      #ffffff 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.fade-overlay.hidden {
  opacity: 0;
}

.see-more-btn {
  align-self: center;
  margin-top: 10px;
  transition: background 0.3s ease;
  width: 100%;
  max-width: max-content;
}

.see-more-btn.hidden {
  display: none;
}

.updates--locked {
  padding-bottom: 110px;
}

.updates--locked-preview {
  padding-bottom: 102px;
}

.updates--locked .updates-content {
  align-items: center;
}

.updates--locked .podcast-update-title.updates-online {
  justify-content: center;
  margin: 0;
}

.updates-archive-content {
  color: var(--body-color, #5a6a86);
  display: flex;
  font-family: Geologica, sans-serif;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 29px;
  max-width: 872px;
  padding-top: 30px;
  text-align: center;
  gap: 20px;
}

.updates-archive-content :where(p, li) {
  color: inherit;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  line-height: inherit;
}


.updates--locked .updates-title {
  align-items: flex-end;
  padding-top: 82px;
  gap: 36px;
}

.updates--locked .updates-title .heading-h3--responsive {
  max-width: 670px;
}

.updates--locked .updates-title .large-body-regular {
  max-width: 302px;
}

.updates--locked-preview .list-wrapper:has(.updates-archive-list) {
  clip-path: inset(0 -50px 0 -50px);
  max-height: var(--locked-preview-height, 915px);
  padding-bottom: 32px;
  padding-top: 26px;
}

.updates--locked .updates-archive-list {
  gap: 10px;
}

.updates--locked-preview .updates-archive-list~.fade-overlay {
  display: block;
}

.updates--locked-preview .list-wrapper:has(.updates-archive-list)>.see-more-btn {
  display: flex;
}

.updates--locked-preview .fade-overlay {
  background: linear-gradient(0deg, #ffffff 43.66%, rgba(255, 255, 255, 0) 100%);
  height: var(--locked-preview-fade-height, 150px);
}

.updates--locked .see-more-btn {
  display: flex;
  margin-top: 33px;
}

.updates--locked .list-wrapper:has(.updates-archive-list)+.see-more-btn {
  display: flex;
}

.updates--locked-preview .see-more-btn {
  bottom: 8px;
  left: 50%;
  margin-top: 0;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}

.updates:not(.updates--locked) .list-wrapper:has(.updates-archive-list) {
  clip-path: inset(0 -50px 0 -50px);
  max-height: 890px;
  padding-top: 26px;
}

.updates:not(.updates--locked) .list-wrapper:has(.updates-archive-list).expanded {
  clip-path: none;
  max-height: none;
}

.updates:not(.updates--locked) .updates-archive-list {
  gap: 10px;
}

.updates:not(.updates--locked) .updates-archive-list~.fade-overlay {
  display: block;
}

.updates:not(.updates--locked) .list-wrapper:has(.updates-archive-list)+.see-more-btn {
  display: flex;
}

.updates-file-card--locked .updates-file-summary,
.updates-file-card--available .updates-file-summary {
  cursor: default;
  min-height: 131px;
  padding: 10px 47px 10px 10px;
}

.updates-file-card--locked .updates-file-intro,
.updates-file-card--available .updates-file-intro {
  gap: 20px;
}

.updates-file-card--locked .updates-file-thumb,
.updates-file-card--available .updates-file-thumb {
  border-radius: var(--corner-radius-md, 6px);
  height: 111px;
  width: 197px;
}

.updates-file-card--locked .updates-file-actions,
.updates-file-card--available .updates-file-actions {
  gap: 40px;
}

.updates-file-watch--locked {
  align-items: center;
  background: #ced1d6;
  border-radius: 120px;
  color: var(--body-color, #5a6a86);
  display: flex;
  flex: 0 0 auto;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  gap: 10px;
  height: 42px;
  justify-content: center;
  line-height: 20px;
  min-width: 158px;
  padding: 4px 20px 4px 3px;
  text-align: center;
  text-decoration: none;
}

.updates-file-watch--available {
  align-items: center;
  background: var(--primary, #a000ed);
  border-radius: 120px;
  color: var(--white, #fff);
  display: flex;
  flex: 0 0 auto;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  gap: 10px;
  height: 42px;
  justify-content: center;
  line-height: 20px;
  min-width: 158px;
  padding: 4px 20px 4px 3px;
  text-align: center;
  text-decoration: none;
}

.updates-file-watch--locked:hover {
  background: var(--primary, #a000ed);
  color: var(--white, #fff);
}

.updates-file-watch--available:hover {
  background: var(--primary-button, #a612ee);
  color: var(--white, #fff);
}

.updates-file-watch-icon {
  align-items: center;
  background: var(--white, #fff);
  border-radius: 50%;
  color: var(--body-color, #5a6a86);
  display: flex;
  flex: 0 0 auto;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.updates-file-watch--locked:hover .updates-file-watch-icon {
  color: var(--primary, #a000ed);
}

.updates-file-watch--available .updates-file-watch-icon,
.updates-file-watch--available:hover .updates-file-watch-icon {
  color: var(--primary, #a000ed);
}

.updates-file-watch-icon svg {
  height: 19px;
  margin-left: 2px;
  width: 19px;
}

.archive-access-modal {
  align-items: center;
  background: rgba(0, 0, 0, 0.42);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.2s ease;
  z-index: 10000;
}

.archive-access-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

html.archive-access-modal-open,
body.archive-access-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.archive-access-modal__panel {
  align-items: center;
  background: var(--white, #fff);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 608px;
  padding: 20px 40px 40px;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.2s ease;
  width: min(100%, 608px);
}

.archive-access-modal.is-open .archive-access-modal__panel {
  transform: translateY(0);
}

.archive-access-modal__close {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--body-color, #5a6a86);
  cursor: pointer;
  display: flex;
  font-family: Geologica;
  font-size: 28px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 16px;
  top: 12px;
  width: 40px;
}

.archive-access-modal__close:hover {
  color: var(--primary, #a000ed);
}

.archive-access-modal__graphic {
  align-items: center;
  display: flex;
  height: 180px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.archive-access-modal__graphic-lines {
  background: repeating-linear-gradient(0deg,
      rgba(90, 106, 134, 0.14) 0,
      rgba(90, 106, 134, 0.14) 1px,
      transparent 1px,
      transparent 4px);
  height: 92px;
  position: absolute;
  width: 220px;
}

.archive-access-modal__graphic-pill {
  background: #eef6ff;
  border-radius: 12px;
  height: 104px;
  position: absolute;
  width: 58px;
}

.archive-access-modal__graphic-pill--left {
  left: calc(50% - 108px);
}

.archive-access-modal__graphic-pill--right {
  right: calc(50% - 108px);
}

.archive-access-modal__graphic-video {
  align-items: center;
  background: #ed603e;
  border-radius: 14px;
  display: flex;
  height: 66px;
  justify-content: center;
  position: relative;
  width: 96px;
  z-index: 1;
}

.archive-access-modal__graphic-eye {
  align-items: center;
  background: var(--white, #fff);
  border-radius: 50%;
  display: flex;
  height: 32px;
  justify-content: center;
  width: 64px;
}

.archive-access-modal__graphic-pupil {
  background: var(--black, #000);
  border: 7px solid #dbc0ff;
  border-radius: 50%;
  height: 22px;
  width: 22px;
}

.archive-access-modal__graphic-spark {
  color: #ed603e;
  font-family: Geologica;
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  right: calc(50% - 102px);
  top: 43px;
}

.archive-access-modal__graphic-spark::before {
  content: "*";
}

.archive-access-modal__copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  width: 100%;
}

.archive-access-modal__title {
  color: var(--black, #000);
  font-family: Geologica;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.9px;
  line-height: 36px;
  margin: 0;
  width: 100%;
}

.archive-access-modal__text {
  color: var(--body-color, #5a6a86);
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  margin: 0;
  max-width: 528px;
  width: 100%;
}

.archive-access-modal__cta {
  min-height: 50px;
  padding: 10px 30px;
  text-decoration: none;
}

@media (max-width: 700px) {
  .archive-access-modal {
    padding: 16px;
  }

  .archive-access-modal__panel {
    padding: 20px 20px 32px;
  }

  .archive-access-modal__graphic {
    height: 150px;
  }

  .archive-access-modal__title {
    font-size: 24px;
    letter-spacing: -0.72px;
    line-height: 30px;
  }

  .archive-access-modal__cta {
    width: auto;
  }
}

@media (max-width: 900px) {

  .updates-file-summary {
    align-items: flex-start;
    padding: 20px;
  }

  .updates-file-actions {
    gap: 18px;
  }

  .updates-file-avatars {
    min-width: 0;
  }

  .updates--locked .updates-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 60px;
  }

  .updates--locked .updates-title .heading-h3--responsive,
  .updates--locked .updates-title .large-body-regular {
    max-width: 100%;
  }

}

@media (max-width: 1024px) {
  .updates--locked-preview .list-wrapper:has(.updates-archive-list) {
    max-height: var(--locked-preview-mobile-height, 1040px);
    padding-bottom: 58px;
  }

  .updates-file-card--locked,
  .updates-file-card--available {
    border-radius: 16px;
    cursor: pointer;
  }

  .updates-file-card--locked .updates-file-summary,
  .updates-file-card--available .updates-file-summary {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    min-height: 0;
    padding: 10px;
  }

  .updates-file-card--locked .updates-file-intro,
  .updates-file-card--available .updates-file-intro {
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
    width: 100%;
  }

  .updates-file-card--locked .updates-file-thumb,
  .updates-file-card--available .updates-file-thumb {
    aspect-ratio: 16 / 9;
    border-radius: 5.37px;
    flex: 0 0 157px;
    height: 88.552px;
    width: 157px;
  }

  .updates-file-card--locked .updates-file-copy,
  .updates-file-card--available .updates-file-copy {
    flex: 1 1 auto;
    gap: 0;
    height: auto;
    min-width: 0;
    overflow: visible;
  }

  .updates-file-card--locked .updates-file-actions,
  .updates-file-card--available .updates-file-actions {
    gap: 0;
    justify-content: flex-end;
    width: 100%;
  }

  .updates-file-card--locked .updates-file-avatars,
  .updates-file-card--available .updates-file-avatars {
    justify-content: flex-end;
    min-width: 0;
  }

  .updates-file-card--locked .updates-file-avatar,
  .updates-file-card--available .updates-file-avatar {
    height: 42px;
    margin-left: -3.5px;
    width: 42px;
  }

  .updates-file-card--locked .updates-file-avatar:first-child,
  .updates-file-card--available .updates-file-avatar:first-child {
    margin-left: 0;
  }

  .updates-file-watch {
    inset: 0;
    height: auto;
    min-width: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    width: auto;
    z-index: 2;
  }

  .updates-file-watch:focus-visible {
    outline: none;
  }

  .updates-file-card:has(.updates-file-watch:focus-visible) {
    box-shadow: 0 0 0 3px rgba(166, 18, 238, 0.28);
  }

  .updates-file-title {
    font-family: Geologica;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.4px;
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
  }

  .updates-file-subtitle {
    font-family: Geologica;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
  }

  .updates-file-description {
    display: block;
    font-family: Geologica;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    width: 100%;
  }

}

@media (max-width: 700px) {

  .updates-file-summary,
  .updates-file-intro {
    flex-direction: column;
  }

  .updates-file-summary {
    gap: 18px;
  }

  .updates-file-intro {
    align-items: flex-start;
  }

  .updates-file-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .updates-file-thumb {
    aspect-ratio: 16 / 9;
    height: 99px;
    width: 176px;
  }

  .updates-archive-content,
  .updates-archive-content :where(p, li) {
    font-size: 16px;
    line-height: 25px;
  }
}

.update-archive-template {
  background: var(--white, #fff);
  padding: 84px 24px 123px;
  width: 100%;
}

.update-archive-layout {
  align-items: flex-start;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1150px) 369px;
  margin: 0 auto;
  max-width: 1540px;
  width: 100%;
}

.update-archive-main {
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-width: 0;
}

.update-archive-player {
  aspect-ratio: 1285 / 720;
  background: var(--bg-dark, #141152);
  border-radius: var(--padding, 20px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.update-archive-player iframe,
.update-archive-player img {
  border: 0;
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.update-archive-player img {
  z-index: 0;
}

.update-archive-player iframe {
  z-index: 1;
}

.update-archive-play {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--white, #fff);
  cursor: pointer;
  display: flex;
  height: 104px;
  justify-content: center;
  left: 50%;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 104px;
  z-index: 3;
}

.update-archive-play svg {
  display: block;
  height: 100%;
  width: 100%;
}

.update-archive-play.is-hidden {
  display: none;
}

.update-archive-player.is-bunny .update-archive-play,
.update-archive-player.is-bunny .update-archive-fullscreen,
.update-archive-player.is-bunny .update-archive-progress,
.update-archive-player.is-bunny .update-archive-youtube-mask {
  display: none;
}

.update-archive-fullscreen {
  align-items: center;
  background: rgba(0, 0, 0, 0.62);
  border: 0;
  border-radius: 6px;
  bottom: 11px;
  color: var(--white, #fff);
  cursor: pointer;
  display: flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 16px;
  width: 42px;
  z-index: 5;
}

.update-archive-fullscreen svg {
  fill: currentColor;
  height: 24px;
  width: 24px;
}

.update-archive-fullscreen:hover {
  background: rgba(0, 0, 0, 0.78);
}

.update-archive-progress {
  background: transparent;
  border: 0;
  bottom: 20px;
  cursor: pointer;
  display: none;
  height: 24px;
  left: 0;
  padding: 0 0 0 16px;
  position: absolute;
  right: 74px;
  z-index: 4;
}

.update-archive-player.is-playing.is-youtube .update-archive-progress {
  display: block;
}

.update-archive-progress__track {
  background: rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  display: block;
  height: 5px;
  overflow: hidden;
  width: 100%;
}

.update-archive-progress__bar {
  background: var(--primary, #a000ed);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  width: 100%;
}

.update-archive-youtube-mask {
  background: #000;
  display: none;
  pointer-events: auto;
  position: absolute;
  z-index: 2;
}

.update-archive-player.is-playing.is-youtube .update-archive-youtube-mask {
  display: block;
}

.update-archive-youtube-mask--top {
  height: 59px;
  left: 0;
  right: 0;
  top: 0;
}

.update-archive-youtube-mask--bottom {
  bottom: 0;
  height: 60px;
  left: 0;
  right: 0;
}

.update-archive-summary {
  background: var(--bg-light, #f5f6fa);
  border-radius: var(--padding, 20px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
}

.update-archive-eyebrow,
.update-archive-title,
.update-archive-sidebar-title,
.update-archive-detail-heading,
.update-archive-speaker-name {
  font-family: Geologica;
  font-style: normal;
  font-weight: 500;
  margin: 0;
}

.update-archive-eyebrow,
.update-archive-sidebar-title,
.update-archive-detail-heading {
  color: var(--body-color, #5a6a86);
  font-size: 20px;
  letter-spacing: -0.4px;
  line-height: 26px;
}

.update-archive-title {
  color: var(--black, #000);
  font-size: 26px;
  letter-spacing: -0.78px;
  line-height: 32px;
}

.update-archive-richtext,
.update-archive-detail-text {
  color: var(--body-color, #5a6a86);
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 29px;
}

.update-archive-richtext :where(p, li) {
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.update-archive-richtext :where(p, ul, ol, blockquote, h2, h3, h4, h5, h6),
.update-archive-detail-text {
  margin: 0;
}

.update-archive-richtext :where(p, ul, ol, blockquote)+:where(p, ul, ol, blockquote) {
  margin-top: 16px;
}

.update-archive-richtext :where(ul, ol) {
  padding-left: 1.25em;
}

.update-archive-richtext ul {
  list-style: disc outside;
}

.update-archive-richtext ol {
  list-style: decimal outside;
}

.update-archive-richtext li {
  display: list-item;
}

.update-archive-richtext li+li {
  margin-top: 8px;
}

.update-archive-richtext :where(h2, h3, h4, h5, h6) {
  color: var(--black, #000);
  font-family: Geologica;
  font-weight: 500;
  line-height: 1.3;
}

.update-archive-richtext :where(h2, h3, h4, h5, h6)+:where(p, ul, ol, blockquote) {
  margin-top: 8px;
}

.update-archive-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.update-archive-detail-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.update-archive-detail-block[hidden] {
  display: none;
}

.update-archive-detail-heading {
  color: var(--black, #000);
}

.update-archive-detail-block .update-archive-detail-heading:not(:first-child) {
  margin-top: 24px;
}

.update-archive-sidebar {
  align-items: center;
  background: var(--white, #fff);
  border: 1px solid var(--stroke, #e7e7ff);
  border-radius: var(--padding, 20px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 644px;
  padding: 15px 7px;
  position: sticky;
  top: 104px;
}

.update-archive-sidebar-title {
  align-self: stretch;
  padding: 6px 8px;
}

.update-archive-playlist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.update-archive-playlist-item {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: var(--corner-radius-md, 6px);
  color: inherit;
  cursor: pointer;
  display: flex;
  gap: 20px;
  min-width: 0;
  padding: 9px 10px;
  position: relative;
  text-align: left;
  width: 100%;
}

.update-archive-playlist-item.is-active {
  background: var(--bg-light, #f5f6fa);
}

.update-archive-playlist-indicator {
  align-items: center;
  background: var(--primary, #a000ed);
  border-radius: 50%;
  color: var(--white, #fff);
  display: none;
  height: 18px;
  justify-content: center;
  left: 0;
  position: absolute;
  width: 18px;
}

.update-archive-playlist-indicator::before {
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
  border-top: 4px solid transparent;
  content: "";
  margin-left: 2px;
}

.update-archive-playlist-item.is-active .update-archive-playlist-indicator {
  display: flex;
}

.update-archive-speaker-image {
  border-radius: 50%;
  flex: 0 0 auto;
  height: 85px;
  object-fit: cover;
  width: 85px;
}

.update-archive-playlist-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  min-width: 0;
}

.update-archive-speaker-name {
  color: var(--black, #000);
  font-size: 18px;
  line-height: 24px;
}

.update-archive-speaker-topic {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--body-color, #5a6a86);
  display: -webkit-box;
  font-family: Geologica;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  overflow: hidden;
}

@media (max-width: 1180px) {
  .update-archive-layout {
    grid-template-columns: 1fr;
  }

  .update-archive-sidebar {
    min-height: 0;
    position: static;
  }
}

@media (max-width: 768px) {
  .update-archive-template {
    padding: 60px 24px 96px;
  }

  .update-archive-play {
    height: 72px;
    width: 72px;
  }

  .update-archive-player {
    border-radius: var(--corner-radius-xl, 16px);
  }
}

@media (max-width: 520px) {
  .update-archive-template {
    padding: 48px 16px 80px;
  }

  .update-archive-playlist-item {
    align-items: flex-start;
    gap: 14px;
  }

  .update-archive-speaker-image {
    height: 64px;
    width: 64px;
  }
}

.image-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 225px;
  margin: 0 20px;
  flex-shrink: 0;
}

.image-container {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: -5px;
  flex-shrink: 0;
}

.image-container:first-child {
  margin-left: 0;
}

.view-online-btn {
  margin: 0 40px 0 auto;
}

.avatars-and-button {
  display: flex;
  align-items: center;
  width: 40%;
}

@media (max-width: 1200px) {
  .avatars-and-button {
    width: 50%;
  }
}

@media (max-width: 1000px) {
  .view-online-btn {
    margin: 0 0 0 auto;
  }

  .avatars-and-button {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .previous-session-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .previous-session-info {
    width: 100%;
  }

  .avatars-and-button {
    width: 100%;
    justify-content: space-between;
  }

  .view-online-btn {
    margin: 0;
  }

  .image-row {
    margin: 0;
    width: unset;
  }
}

@media (max-width: 480px) {
  .updates-title {
    padding-top: 25px;
  }

  .previous-session-info {
    flex-wrap: wrap;
    gap: 12px;
  }

  .previous-session-info img {
    width: 100px;
    height: 74px;
  }

  .session-title {
    flex: 1;
    min-width: 0;
  }

  .previous-session-info-text {
    display: contents;
  }

  .session-description {
    width: 100%;
    flex-basis: 100%;
    order: 3;
  }

  .image-container {
    width: 34.957px;
    height: 34.957px;
    aspect-ratio: 34.96/34.96;
  }
}

.youtube-container-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.youtube-container {
  max-width: 950px;
  width: 100%;
  height: auto;
  border-radius: var(--corner-radius-mxl, 15px);
  aspect-ratio: 950/532.3;
  box-shadow: 0 14px 23.2px 0 rgba(32, 44, 78, 0.35);
  overflow: hidden;
  margin: 10px 0 39px;
}

.youtube-container iframe {
  width: 100%;
  height: 100%;
}

.youtube-subtext {
  max-width: 950px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: start;
  text-align: start;
  margin-bottom: 50px;
}

.title-and-upload {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 5px;
}

.videos-body-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.videos-description {
  max-width: 950px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: start;
  text-align: start;
  margin: 49px 0 64px;
}

@media (max-width: 480px) {
  .videos-body-container {
    padding: 0 16px;
  }

  .youtube-container-wrapper {
    padding: 0 16px;
  }
}

.weekends-with-stefanos {
  --weekends-content-gutter: max(24px, calc((100vw - 1540px) / 2));
  --weekends-image-reserve: clamp(430px, 34vw, 760px);
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--yellow-dark);
  min-height: 1092px;
  overflow: hidden;
  padding: 147px 0 0;
  position: relative;
}

.weekends-with-stefanos.less-height {
  min-height: 979px;
}

.weekends-container {
  align-items: flex-start;
  max-width: none;
  width: 100%;
  display: flex;
  gap: 0;
  flex-shrink: 0;
  margin: 0;
  padding-left: var(--weekends-content-gutter);
  padding-right: var(--weekends-image-reserve);
}

@media (max-width: 1540px) {
  .weekends-with-stefanos {
    padding-top: 147px;
  }
}

.weekends-with-stefanos img {
  bottom: 0;
  height: 100%;
  max-width: none;
  pointer-events: none;
  position: absolute;
  right: 0;
  width: auto;
  z-index: 0;
}

@media (max-width: 1540px) {
  .weekends-with-stefanos img {
    height: clamp(700px, 59.4vw, 915px);
  }
}

.weekends-with-stefanos.less-height img {
  height: 700px;
  width: auto;
}

@media (max-width: 1874px) {

  .weekends-with-stefanos.less-height img {
    height: 700px;
    width: auto;
  }
}

.weekends-heading {
  margin: 23px 0 40px;
}

.weekends-description {
  margin-bottom: 37px;
}

.weekends-info {
  display: flex;
  flex: 0 1 920px;
  width: min(100%, 920px);
  max-width: 920px;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding-bottom: 147px;
  position: relative;
  z-index: 1;
}

.weekends-date-time {
  margin: 25px 0 40px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 1200px) {
  .weekends-container {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .weekends-with-stefanos {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 80px 24px;
  }

  .weekends-with-stefanos img,
  .weekends-with-stefanos.less-height img {
    align-self: flex-end;
    height: auto;
    margin-top: 0;
    margin-right: -24px;
    margin-bottom: 40px;
    max-width: 600px;
    order: -1;
    position: static;
    width: 100%;
  }

  .weekends-info {
    max-width: 100%;
    padding-bottom: 0;
  }
}

@media (max-width: 820px) {
  .weekends-date-time {
    flex-direction: column;
    align-items: start;
    gap: 8px;
  }

  .dot {
    display: none;
  }
}

@media (max-width: 768px) {
  .weekends-with-stefanos {
    padding: 60px 24px 147px;
  }

  .weekends-with-stefanos img,
  .weekends-with-stefanos.less-height img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-right: -24px;
    margin-bottom: 30px;
  }

  .weekends-heading {
    margin: 16px 0 24px;
  }
}

@media (max-width: 480px) {
  .weekends-with-stefanos {
    padding: 40px 16px 147px;
  }

  .weekends-with-stefanos img,
  .weekends-with-stefanos.less-height img {
    max-width: 100%;
    margin-right: -16px;
    margin-bottom: 24px;
  }
}

.dot {
  color: var(--black, #000);
  font-family: Geologica;
  font-size: 26.074px;
  font-style: normal;
  font-weight: 200;
  line-height: 36.987px;
  /* 141.853% */
  letter-spacing: -0.782px;
  margin: 0 27px;
}

.weekends-question {
  margin: 94px 0 20px;
}

.weekends-answers-container {
  display: flex;
  width: 100%;
  gap: 9px;
  flex-wrap: wrap;
}

.weekends-answer-item {
  display: flex;
  padding: 6px 15px;
  align-items: center;
  border-left: 3px solid var(--black, #000);
}

.header-title-text-section {
  background: var(--white, #fff);
  display: flex;
  justify-content: center;
  padding: 90px 24px;
  width: 100%;
}

.header-title-text-container {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1541px;
  width: 100%;
}

.header-title-text-header {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 759px;
  width: 100%;
}

.header-title-text-eyebrow,
.header-title-text-copy {
  color: var(--body-color-dark, #5a6a86);
}

.header-title-text-title {
  color: var(--black, #000);
}

.header-title-text-copy {
  display: flex;
  flex-direction: column;
  gap: 29px;
  width: 100%;
}

.header-title-text-copy strong {
  font-weight: 700;
}

.program-list-section {
  background: var(--white, #fff);
  display: flex;
  justify-content: center;
  padding: 0 24px 90px;
  width: 100%;
}

.program-list-container {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  max-width: 1540px;
  width: 100%;
}

.program-list-card {
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  gap: clamp(48px, 10vw, 192px);
  justify-content: space-between;
  padding: 40px 0;
  width: 100%;
}

.program-list-card:last-child {
  border-bottom: 0;
}

.program-list-card-main {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  gap: 40px;
  min-width: 0;
}

.program-list-media {
  border-radius: var(--border-radius-card, 20px);
  flex: 0 0 299px;
  height: 330px;
  overflow: hidden;
  width: 299px;
}

.program-list-image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.program-list-content {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.program-list-title {
  color: var(--black, #000);
}

.program-list-description {
  color: var(--body-color-dark, #5a6a86);
  max-width: 900px;
}

.program-list-meta {
  align-items: flex-start;
  display: flex;
  gap: 70px;
  margin-top: 23px;
}

.program-list-meta-item {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 230px;
}

.program-list-meta-label {
  color: var(--black, #000);
}

.program-list-meta-value {
  color: var(--body-color-dark, #5a6a86);
}

.program-list-button {
  flex: 0 0 auto;
  min-width: 168px;
  white-space: nowrap;
}

.image-title-text-section {
  background: var(--white, #fff);
  display: flex;
  justify-content: center;
  padding: 90px 24px;
  width: 100%;
}

.image-title-text-card {
  align-items: flex-start;
  display: flex;
  gap: 40px;
  max-width: 1541px;
  width: 100%;
}

.image-title-text-image {
  border-radius: 16.512px;
  flex: 0 0 287px;
  height: 275px;
  object-fit: cover;
  width: 287px;
}

.image-title-text-content {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.image-title-text-title {
  color: var(--black, #000);
}

.image-title-text-copy {
  color: var(--body-color-dark, #5a6a86);
}

.ticket-section {
  align-items: center;
  background: var(--primary, #a000ed);
  display: flex;
  justify-content: center;
  padding: 90px 24px 104px;
  width: 100%;
}

.ticket-section-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1105px;
  width: 100%;
}

.ticket-section-title {
  color: var(--white, #fff);
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}

.ticket-section-card {
  align-items: flex-start;
  background: var(--white, #fff);
  border-radius: var(--border-radius-card, 20px);
  display: flex;
  flex-direction: column;
  gap: 29px;
  padding: 25px 21px;
  width: 100%;
}

.ticket-section-options {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
}

.ticket-section-option {
  align-items: center;
  background: var(--bg-light, #f5f6fa);
  border-radius: var(--corner-radius-lg, 10px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 38px;
  width: 100%;
}

.ticket-section-option-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 348px;
}

.ticket-section-option-copy h3,
.ticket-section-price {
  color: var(--black, #000);
}

.ticket-section-option-copy p {
  color: var(--body-color-dark, #5a6a86);
}

.ticket-section-price {
  text-align: center;
  white-space: nowrap;
}

.ticket-section-button {
  align-items: center;
  background: var(--tertiary, #82f5de);
  border-radius: var(--corner-radius-xxxl, 50px);
  color: var(--black, #000);
  display: flex;
  justify-content: center;
  min-height: 50px;
  padding: 10px 30px;
  text-align: center;
  width: 100%;
}

.ticket-section-note {
  color: var(--white, #fff);
  max-width: 759px;
  text-align: center;
  width: 100%;
}

@media (max-width: 900px) {
  .image-title-text-card {
    flex-direction: column;
  }

  .image-title-text-image {
    flex-basis: auto;
  }

  .program-list-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .program-list-card-main {
    flex-direction: column;
  }

  .program-list-media {
    flex-basis: auto;
  }
}

@media (max-width: 768px) {
  .header-title-text-section {
    padding: 72px 24px 80px;
  }

  .program-list-section {
    padding: 0 24px 88px;
  }

  .image-title-text-section {
    padding: 72px 24px 88px;
  }

  .ticket-section {
    padding: 72px 24px 88px;
  }
}

@media (max-width: 480px) {
  .header-title-text-section {
    padding: 56px 16px 64px;
  }

  .program-list-section {
    padding: 0 16px 72px;
  }

  .program-list-card {
    padding: 32px 0;
  }

  .program-list-card-main {
    gap: 28px;
  }

  .program-list-media {
    aspect-ratio: 299 / 330;
    height: auto;
    width: 100%;
  }

  .program-list-meta {
    flex-direction: column;
    gap: 22px;
    margin-top: 18px;
  }

  .program-list-meta-item {
    min-width: 0;
  }

  .program-list-button {
    width: 100%;
  }

  .image-title-text-section {
    padding: 56px 16px 72px;
  }

  .image-title-text-card {
    gap: 28px;
  }

  .image-title-text-image {
    height: auto;
    width: 100%;
  }

  .ticket-section {
    padding: 56px 16px 72px;
  }

  .ticket-section-card {
    padding: 20px 16px;
  }

  .ticket-section-option {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 18px 16px;
  }

  .ticket-section-option-copy {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .weekends-answer-item {
    padding: 5px 12px;
    border-left-width: 2px;
  }
}

.next-meeting {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
}

.next-meeting-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 58px;
  align-items: flex-start;
  margin-top: 52px;
  max-width: 1105px;
  padding: 0 24px;
}

.organizer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  text-align: center;
}

.organizer img {
  width: 160px;
  height: 160px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
}

.next-meeting-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.next-meeting-description {
  color: var(--body-color, #5a6a79);
  margin-top: 11px;
}

.next-meeting-reservation-card {
  margin: 30px 0 12px;
  width: 100%;
  display: flex;
  padding: 22px 38px;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  border-radius: var(--corner-radius-lg, 10px);
  background: var(--bg-light, #f5f6fa);
}

.next-meeting-reservation-card.no-margin {
  margin: 0;
}

.next-meeting-reservation-card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.next-meeting-reservation-card-price-quantity {
  display: flex;
  align-items: center;
  gap: 76px;
}

.quantity-input {
  display: flex;
  width: 90px;
  height: 53px;
  padding: 10px 13px 10px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.next-meeting-cancellation {
  max-width: 759px;
  opacity: 0.56;
  color: var(--body-color);
  text-align: center;
  align-self: center;
}

.gray-divider {
  opacity: 0.1;
  background: var(--body-color-dark, #5a6a86);
  width: 100%;
  height: 1px;
  margin: 41px 0;
}

.gray-text-card {
  display: flex;
  min-height: 66px;
  padding: 10px 19px;
  align-items: center;
  gap: 10px;
  border-radius: var(--corner-radius-lg, 10px);
  background: var(--bg-light, #f5f6fa);
  margin-top: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .next-meeting-section {
    flex-direction: column;
  }

  .organizer {
    align-self: center;
  }
}

@media (max-width: 900px) {
  .next-meeting-reservation-card-price-quantity {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .next-meeting-reservation-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 16px;
  }

  .next-meeting-section {
    padding: 0 16px;
  }
}

.workshops {
  width: 100%;
  padding: 195px 0 50px;
}

.workshops-header {
  width: 100%;
  padding: 0 190px 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.workshops-header-title {
  margin-top: 15px;
  margin-bottom: 40px;
}

.workshops-description {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.workshops-description-paragraph {
  max-width: 1076px;
  width: 100%;
}

.all-events {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}

.workshop-card {
  cursor: pointer;
  display: flex;
  max-width: 370px;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  text-align: start;
}

.workshop-card-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(160, 0, 237, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.workshops .workshop-card:hover .workshop-card-image-wrapper::before,
.workshops .workshop-card:focus .workshop-card-image-wrapper::before {
  opacity: 1;
}

.workshop-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: calc(1.4em * 2);
}

.workshops .workshop-card:hover .workshop-card-title,
.workshops .workshop-card:focus .workshop-card-title {
  color: var(--primary, #a000ed);
  transition: all 0.3s ease;
}

.workshops .workshop-card:hover .workshop-card-description,
.workshops .workshop-card:focus .workshop-card-description {
  color: var(--primary, #a000ed);
  transition: all 0.3s ease;
}

.workshop-card-description {
  color: var(--body-color);
  margin-top: 10px;
}

.workshop-card-image-wrapper {
  position: relative;
  max-width: 370px;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--padding, 20px);
  height: 432px;
}

.workshop-card-image-wrapper.less-height {
  height: 240px;
}

.workshop-card-image-wrapper.small-height {
  height: 182px;
  width: 100%;
}

.workshop-card-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.workshop-card-date {
  display: flex;
  width: 85px;
  padding: 13px 11.303px;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border-radius: 8.073px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(4px);
  position: absolute;
  right: 19px;
  bottom: 19px;
  z-index: 10;
}

.workshops .carousel-container {
  padding-left: 190px;
  overflow: visible;
}

.arrowsBottomRightSwiper .swiper-wrapper {
  display: flex;
  height: auto;
}

.arrowsBottomRightSwiper .swiper-slide {
  padding: 0 0 20px;
  max-width: 370px;
  width: 100%;
  height: auto;
}

.arrowsBottomRightSwiper .swiper-buttons {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: 10px;
  padding-right: 190px;
}

.arrowsBottomRightSwiper .swiper-buttons .swiper-button-next,
.arrowsBottomRightSwiper .swiper-buttons .swiper-button-prev {
  position: static;
  display: flex;
  width: 55.2px;
  height: 55.2px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 55px;
  background: #eee;
  margin: 0;
}

.arrowsBottomRightSwiper .swiper-buttons .swiper-button-next::after {
  content: url("../../assets/svg/arrowNext.svg");
  position: relative;
  left: 2px;
  bottom: 6px;
}

.arrowsBottomRightSwiper .swiper-buttons .swiper-button-prev::after {
  content: url("../../assets/svg/arrowPrev.svg");
  position: relative;
  right: 2px;
  bottom: 6px;
}

.arrowsBottomRightSwiper .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  bottom: auto !important;
  margin-top: 20px;
}

.arrowsBottomRightSwiper .swiper-pagination-bullet {
  background: var(--white-gray, #eee) !important;
}

.arrowsBottomRightSwiper .swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

@media (max-width: 1300px) {
  .workshops .carousel-container {
    padding-left: 24px;
  }

  .workshops-header {
    padding: 0 24px 27px;
  }

  .arrowsBottomRightSwiper .swiper-buttons {
    padding-right: 24px;
  }
}

@media (max-width: 1024px) {
  .arrowsBottomRightSwiper .swiper-buttons {
    padding-right: 16px;
  }
}

@media (max-width: 768px) {
  .workshops .carousel-container {
    padding-left: 16px;
  }

  .workshops-header {
    padding: 0 16px 27px;
  }

  .arrowsBottomRightSwiper .swiper-pagination {
    display: none;
  }

  .arrowsBottomRightSwiper .swiper-slide {
    padding-bottom: 10px;
  }

  .arrowsBottomRightSwiper .swiper-buttons {
    margin-top: 10px;
  }

  .workshops {
    padding: 96px 0 50px;
  }
}

@media (max-width: 480px) {
  .workshop-card {
    max-width: 100%;
  }
}

@media (max-width: 390px) {
  .workshop-card-image-wrapper {
    max-width: 324px;
  }
}

@media (max-width: 344px) {
  .workshop-card-image-wrapper {
    max-width: 300px;
  }
}

.bg-white {
  background-color: white !important;
}

.full-width {
  max-width: 100% !important;
  width: 100% !important;
}

.header-dark .event-slider-content,
.header-dark .event-info-item .medium-body-light {
  color: #000;
}

.event-details-content>.header-hero-logo {
  bottom: 90px;
  height: 50px;
  object-fit: contain;
  position: absolute;
  right: 0;
  width: fit-content;
  max-width: min(358px, 100%);
}

@media (min-width: 1200px) {
  header .event-details-content:has(>.header-hero-logo):not(:has(>.days-till-next-event-container)) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 358px);
    grid-template-rows: 1fr auto;
    column-gap: clamp(32px, 5vw, 90px);
    align-items: end;
    min-height: 0;
  }

  header .event-details-content:has(>.header-hero-logo):not(:has(>.days-till-next-event-container))>.event-slider-content {
    grid-column: 1;
    grid-row: 2;
    max-width: 100%;
  }

  header .event-details-content:has(>.header-hero-logo):not(:has(>.days-till-next-event-container))>.header-hero-logo {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    position: static;
  }
}

@media (min-width: 1200px) and (max-height: 687px) {
  header .event-details-content:has(>.header-hero-logo):not(:has(>.days-till-next-event-container)) {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 1fr auto auto;
  }

  header .event-details-content:has(>.header-hero-logo):not(:has(>.days-till-next-event-container))>.header-hero-logo {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    margin-bottom: 40px;
    max-width: 100%;
  }

  header .event-details-content:has(>.header-hero-logo):not(:has(>.days-till-next-event-container))>.event-slider-content {
    grid-row: 3;
  }
}

@media (max-width: 1199px) {
  header:has(.header-hero-logo) .event-details-content>.event-slider-content {
    height: auto;
    order: 2;
  }

  .event-details-content>.header-hero-logo {
    align-self: flex-start;
    margin-bottom: 40px;
    order: 1;
    position: static;
  }

  header .event-details-content:has(>.header-hero-logo)>.event-slider-content {
    max-width: 100%;
  }
}

@media (max-width: 1199px) and (max-height: 687px) {
  .event-details-content>.header-hero-logo {
    margin-bottom: 40px;
  }
}

@media (min-width: 769px) {
  header .event-details-content:has(>.days-till-next-event-container):has(>.header-hero-logo) {
    grid-template-rows: 1fr auto auto;
  }

  header .event-details-content:has(>.days-till-next-event-container)>.header-hero-logo {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    justify-self: start;
    order: initial;
    position: static;
    margin-bottom: 0;
    max-width: 100%;
    transform: translateY(calc(var(--hero-shrink-lift) * -1));
  }

  header .event-details-content:has(>.days-till-next-event-container)>.event-slider-content {
    grid-column: 1;
    grid-row: 3;
  }

  header .event-details-content:has(>.days-till-next-event-container)>.days-till-next-event-container {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: start;
  }
}

@media (min-width: 1200px) {
  header .event-details-content:has(>.days-till-next-event-container):has(>.header-hero-logo) {
    grid-template-rows: 1fr auto;
  }

  header .event-details-content:has(>.days-till-next-event-container)>.header-hero-logo {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    justify-self: end;
    margin-bottom: 0;
    max-width: min(358px, 100%);
    position: static;
  }

  header .event-details-content:has(>.days-till-next-event-container)>.event-slider-content {
    grid-row: 2;
  }

  header .event-details-content:has(>.days-till-next-event-container)>.days-till-next-event-container {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
  }
}

@media (min-width: 1200px) and (max-height: 687px) {
  header .event-details-content:has(>.days-till-next-event-container):has(>.header-hero-logo) {
    grid-template-rows: 1fr auto auto;
  }

  header .event-details-content:has(>.days-till-next-event-container)>.header-hero-logo {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    margin-bottom: 40px;
    max-width: 100%;
  }

  header .event-details-content:has(>.days-till-next-event-container)>.event-slider-content {
    grid-row: 3;
  }

  header .event-details-content:has(>.days-till-next-event-container)>.days-till-next-event-container {
    grid-row: 1 / span 3;
  }
}

@media (max-width: 530px) {
  header .days-till-next-event-container {
    display: none;
  }
}

.event-slider.bg-white .swiper-slide {
  padding-top: 0;
}

.header-title-text-section+.header-title-text-section {
  padding-top: 0;
}

.nav-button--desktop {
  display: none;
}

.decorated-list ul {
  padding-left: 2em;
}

.decorated-list li {
  list-style-type: disc;
}

.tickets-note {
  padding: 0 5rem;
  color: #5A6A86;
}

.header-title-text-section+.team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  opacity: 0.1;
  background: #000;
}

.header-title-text-section+.team {
  position: relative;
  padding-top: 70px;
}

.header-title-text-section:has(+ .team) {
  padding-bottom: 70px;
}

@media (max-width: 1400px) {
  .header-title-text-section+.team {
    position: relative;
    padding-top: 50px;
  }

  .header-title-text-section:has(+ .team) {
    padding-bottom: 50px;
  }
}

@media (max-width: 769px) {
  .header-title-text-section+.team {
    position: relative;
    padding-top: 30px;
  }

  .header-title-text-section:has(+ .team) {
    padding-bottom: 30px;
  }
}


/* Authentication screens (merged from auth.css) */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.auth-page .page__main {
  flex: 1 0 auto;
}

.auth-page {
  background: #fff;
  color: var(--bg-dark, #141152);
}

.auth-page .header-container.light {
  box-shadow: 0 7px 19.6px 0 rgba(75, 62, 87, 0.06);
}

.auth-page__main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.auth-shell {
  width: 100%;
  max-width: 1540px;
  padding: 60px 35px 96px;
}

.auth-shell__content {
  display: flex;
  justify-content: center;
  width: 100%;
}

.auth-card {
  width: 100%;
  max-width: 286px;
  background: #f4f5fb;
  border: 1px solid #eef1f7;
  border-radius: 18px;
  padding: 22px 20px 20px;
}

.auth-card__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 14px;
  color: #9b12ef;
}

.auth-card__icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.auth-card__icon img {
  display: block;
  width: 28px;
  height: 28px;
}

.auth-card__icon--login {
  margin-left: 1px;
}

.auth-card__icon--word {
  position: relative;
  width: fit-content;
  padding-bottom: 7px;
  font-family: Geologica;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  color: #9b12ef;
}

.auth-card__icon--word::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: #9b12ef;
}

.auth-card__title {
  margin: 0;
  color: var(--bg-dark, #141152);
  font-family: Geologica;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 700;
}

.auth-card__description {
  margin-top: 6px;
  color: #67748e;
  font-family: Geologica;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  max-width: 232px;
}

.auth-form {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.auth-field label {
  color: #67748e;
  font-family: Geologica;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 500;
}

.auth-input-wrap {
  position: relative;
}

.auth-field .input {
  width: 100%;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #d8dce6;
  background: #fff;
  color: #141152;
  padding: 7px 11px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
}

.auth-field .input::placeholder {
  color: #a0a6ba;
}

.auth-field .input[readonly] {
  background: #fff;
}

.auth-input-wrap .input {
  padding-right: 35px;
}

.auth-input-status,
.auth-input-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-input-status img {
  width: 16px;
  height: 16px;
}

.auth-input-status svg {
  display: block;
  width: 16px;
  height: 16px;
}

.auth-input-toggle {
  right: 8px;
  padding: 0;
  background: transparent;
  border: none;
  color: #5f6676;
}

.auth-input-toggle svg {
  width: 16px;
  height: 16px;
}

.auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
  font-family: Geologica;
  font-size: 11px;
  line-height: 1.35;
}

.auth-remember {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #67748e;
}

.auth-checkbox {
  width: 14px;
  height: 14px;
  accent-color: #42a8e8;
}

.auth-link {
  color: #67748e;
  text-decoration: none;
}

.auth-link--accent {
  color: #9b12ef;
}

.auth-actions {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-actions .primary-button,
.auth-actions .white-button {
  width: 100%;
  min-height: 34px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
}

.auth-actions .primary-button {
  background: var(--primary, #a000ed);
  color: var(--white, #fff);
}

.auth-actions .white-button.auth-button--back {
  background: #6a748e;
  color: #fff;
}

.auth-card__footnote {
  margin-top: 14px;
  color: #67748e;
  font-family: Geologica;
  font-size: 11px;
  line-height: 1.35;
}

.auth-card__footnote p {
  margin-bottom: 0;
}

.auth-card__footnote .auth-link--accent {
  display: inline-block;
  margin-top: 2px;
}



.auth-page--login .auth-card {
  max-width: 506px;
  background: #f5f6fa;
  border: none;
  border-radius: 30px;
  padding: 35px;
}

.auth-page--login .auth-card__icon {
  margin-bottom: 20px;
}

.auth-page--login .auth-card__icon--login {
  width: 60px;
  height: 60px;
  margin-left: 0;
}

.auth-page--login .auth-card__title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  letter-spacing: -0.9px;
}

.auth-page--login .auth-card__description {
  margin-top: 7px;
  font-size: 16px;
  line-height: 22px;
  max-width: 404px;
}

.auth-page--login .auth-form {
  margin-top: 26px;
  gap: 21px;
}

.auth-page--login .auth-field {
  gap: 6px;
}

.auth-page--login .auth-field label {
  font-size: 14px;
  line-height: 20px;
}

.auth-page--login .auth-field .input {
  height: 50px;
  border-radius: 8px;
  border-color: #c5c5c5;
  padding: 10px 14px;
  font-size: 16px;
}

.auth-page--login .auth-input-wrap .input {
  padding-right: 48px;
}

.auth-page--login .auth-input-status,
.auth-page--login .auth-input-toggle {
  right: 14px;
  width: 24px;
  height: 24px;
}

.auth-page--login .auth-input-status img {
  width: 24px;
  height: 24px;
}

.auth-page--login .auth-input-status svg {
  width: 24px;
  height: 24px;
}

.auth-page--login .auth-input-toggle svg {
  width: 24px;
  height: 24px;
}

.auth-page--login .auth-row {
  margin-top: 0;
  font-size: 16px;
  line-height: 22px;
}

.auth-page--login .auth-remember {
  gap: 11px;
  color: #5a6a86;
}

.auth-page--login .auth-link {
  color: #5a6a86;
  text-decoration: underline;
  text-underline-offset: 1px;
}

.auth-page--login .auth-actions {
  margin-top: 0;
}

.auth-page--login .auth-actions .primary-button {
  min-height: 50px;
  border-radius: 71px;
  font-size: 16px;
  line-height: 22px;
}

.auth-page--login .auth-card__footnote {
  margin-top: 23px;
  font-size: 16px;
  line-height: 22px;
  color: #5a6a86;
}

.auth-page--login .auth-card__footnote p {
  margin-bottom: 2px;
}

.auth-page--login .auth-card__footnote .auth-link--accent {
  margin-top: 0;
  display: inline;
  color: #a000ed;
  text-decoration: none;
}

.auth-remember__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.auth-remember__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Toggle checked / unchecked icons based on hidden checkbox state */
.auth-remember__checkbox:checked~.auth-remember__icon--checked {
  display: inline-flex;
}

.auth-remember__checkbox:checked~.auth-remember__icon--unchecked {
  display: none;
}

.auth-remember__checkbox:not(:checked)~.auth-remember__icon--checked {
  display: none;
}

.auth-remember__checkbox:not(:checked)~.auth-remember__icon--unchecked {
  display: inline-flex;
}

.auth-remember {
  cursor: pointer;
}

.auth-remember__icon svg {
  width: 24px;
  height: 24px;
}

.auth-page--login .auth-card__icon--login svg {
  width: 60px;
  height: 60px;
}

.auth-page--login .auth-card__icon--login img {
  width: 60px;
  height: 60px;
}



.auth-page--reset .auth-shell {
  max-width: 520px;
}

.auth-page--reset .auth-card {
  width: 100%;
  max-width: 520px;
  background: #f5f6fa;
  border: none;
  border-radius: 30px;
  padding: 35px;
}

.auth-page--reset .auth-card__icon {
  margin-bottom: 22px;
}

.auth-page--reset .auth-card__icon--word {
  font-size: 32px;
  line-height: 1;
  letter-spacing: 4px;
  padding-bottom: 10px;
}

.auth-page--reset .auth-card__icon--word::after {
  width: 47px;
}

.auth-page--reset .auth-card__icon--password img {
  width: 60px;
  height: 60px;
}

.auth-page--reset .auth-card__title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  letter-spacing: -0.9px;
}

.auth-page--reset .auth-card__description {
  margin-top: 7px;
  font-size: 16px;
  line-height: 22px;
  max-width: 394px;
}

.auth-page--reset .auth-form {
  margin-top: 50px;
  gap: 50px;
}

.auth-page--reset .auth-field {
  gap: 6px;
}

.auth-page--reset .auth-field label {
  font-size: 14px;
  line-height: 20px;
}

.auth-page--reset .auth-field .input {
  height: 50px;
  border-radius: 8px;
  border-color: #c5c5c5;
  padding: 10px 14px;
  font-size: 16px;
}

.auth-page--reset .auth-actions {
  margin-top: 0;
}

.auth-page--reset .auth-actions .primary-button {
  min-height: 50px;
  border-radius: 71px;
  font-size: 16px;
  line-height: 22px;
}

@media (max-width: 640px) {
  .auth-page--reset .auth-card {
    padding: 28px 22px;
    border-radius: 20px;
  }
}

.page-activation .auth-page__main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #fff;
}

body.page-activation {
  background: #fff;
}

body.page-activation .header-container.light {
  box-shadow: 0 7px 19.6px 0 rgba(75, 62, 87, 0.06);
}

.page-activation .auth-shell {
  max-width: 1540px;
  padding: 60px 35px 96px;
}

.page-activation .auth-shell__content {
  display: flex;
  justify-content: center;
  width: 100%;
}

.page-activation .auth-card {
  width: 520px;
  max-width: 520px;
  background: #f5f6fa;
  border: none;
  border-radius: 20px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.page-activation .auth-card__header {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.page-activation .auth-card__icon {
  margin-bottom: 0;
}

.page-activation .auth-card__icon--activation {
  width: 60px;
  height: 60px;
}

.page-activation .auth-card__icon--activation img {
  display: block;
  width: 60px;
  height: 60px;
}

.page-activation .auth-card__heading {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.page-activation .auth-card__title {
  margin: 0;
  color: #111111;
  font-family: Geologica;
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  letter-spacing: -0.9px;
}

.page-activation .auth-card__description {
  margin: 0;
  color: #5a6a86;
  font-family: Geologica;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  max-width: 410px;
}

.page-activation .auth-form {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.page-activation .auth-field {
  gap: 6px;
}

.page-activation .auth-field label {
  font-size: 14px;
  line-height: 20px;
}

.page-activation .auth-field .input {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  border-color: #c5c5c5;
  padding: 10px 14px;
  font-size: 16px;
}

.page-activation .auth-input-wrap .input {
  padding-right: 48px;
}

.page-activation .auth-input-status,
.page-activation .auth-input-toggle {
  right: 14px;
  width: 24px;
  height: 24px;
}

.page-activation .auth-input-status img,
.page-activation .auth-input-status svg {
  width: 24px;
  height: 24px;
}

.page-activation .auth-field--error .input {
  border-color: #fca5a5 !important;
  box-shadow: none !important;
}

.page-activation .auth-field--error label {
  color: #67748e !important;
}

.page-activation .auth-field--error .auth-field-error-text {
  margin-top: 8px;
  color: #ef4444;
  font-size: 14px;
  line-height: 20px;
}

.page-activation .auth-input-status--error img {
  width: 24px;
  height: 24px;
}

.page-activation .auth-actions {
  margin-top: 0;
}

.page-activation .auth-actions .primary-button {
  width: 100%;
  min-height: 50px;
  border-radius: 71px;
  font-size: 16px;
  line-height: 22px;
}

.auth-page--otp .auth-page__main {
  min-height: 100vh;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}

.auth-page--otp .auth-shell {
  max-width: 520px;
}

.auth-page--otp .auth-card {
  width: 520px;
  max-width: 520px;
  background: #f5f6fa;
  border: none;
  border-radius: 20px;
  padding: 35px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.auth-page--otp .auth-card__header {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.auth-page--otp .auth-card__icon {
  margin-bottom: 0;
}

.auth-page--otp .auth-card__icon img {
  width: 60px;
  height: 60px;
}

.auth-page--otp .auth-description-inline {
  margin: 0;
  color: #5a6a86;
  font-size: 16px;
  line-height: 22px;
  max-width: 410px;
}

.auth-page--otp .auth-description-inline strong {
  color: #111111;
  font-weight: 500;
  text-transform: none;
}

.auth-page--otp .auth-form {
  margin-top: 0;
  gap: 0;
}

.auth-page--otp .auth-field {
  gap: 8px;
}

.auth-page--otp .auth-field label {
  font-size: 14px;
  line-height: 20px;
}

.auth-page--otp .auth-code-group {
  gap: 20px;
  justify-items: center;
}

.auth-page--otp .auth-code-box {
  width: 56px;
  height: 60px;
  border-radius: 8px;
  border: 1px solid #c5c5c5;
  text-align: center;
  font-family: Geologica, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
  color: #111111;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.auth-page--otp .auth-code-box--success {
  border-color: #0a9d57;
  background: #ffffff;
  color: #111111;
  box-shadow: none;
}

.auth-page--otp .auth-code-box--error {
  border-color: #f04438;
  background: #fff;
  color: #111111;
  box-shadow: 0 0 0 1px rgba(240, 68, 56, 0.08);
}

.auth-page--otp .auth-actions--split {
  margin-top: 20px;
}

.auth-page--otp .auth-back-row {
  gap: 12px;
}

.auth-page--otp .auth-secondary-link,
.auth-page--otp .auth-secondary-link:visited {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #67748e;
  font-family: Geologica;
  font-size: 16px;
  line-height: 22px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.auth-page--otp .auth-secondary-link:hover {
  color: #5a6a86;
}

.auth-page--otp .auth-resend-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.auth-page--otp .auth-inline-message {
  margin: 8px 0 0;
  font-family: Geologica;
  font-size: 14px;
  line-height: 20px;
}

.auth-page--otp .auth-inline-message--success {
  color: #0a9d57;
}

.auth-page--otp .auth-inline-message--warning {
  color: #a35a00;
}

.auth-field-error-text--center {
  text-align: center;
}

.auth-page--otp .auth-field-error-text.auth-field-error-text--success {
  color: #0a9d57;
}

.auth-page--otp .auth-field-error-text.auth-field-error-text--warning {
  color: #a35a00;
}

.auth-page--otp .auth-back-icon {
  width: 27px;
  height: 34px;
}

.auth-page--otp .auth-button--back {
  width: 231px !important;
  min-height: 50px;
  background: #5a6a86;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  border: none;
}

.auth-page--otp .auth-button--back:hover {
  background: #4e5a70;
}

.auth-page--password .auth-page__main {
  align-items: flex-start;
}

.auth-page--password .auth-shell {
  max-width: 520px;
}

.auth-page--password .auth-card {
  max-width: 520px;
  background: #f5f6fa;
  border: none;
  border-radius: 20px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  /* gap: 50px; */
}

.auth-page--password .auth-card__icon {
  margin-bottom: 0;
}

.auth-page--password .auth-card__icon img {
  width: 60px;
  height: 60px;
}

.auth-page--password .auth-card__icon--word {
  font-size: 32px;
  line-height: 1;
  letter-spacing: 4px;
  padding-bottom: 10px;
}

.auth-page--password .auth-card__icon--word::after {
  width: 47px;
}

.auth-page--password .auth-card__title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  letter-spacing: -0.9px;
}

.auth-page--password .auth-card__description {
  margin-top: 7px;
  font-size: 16px;
  line-height: 22px;
  max-width: 396px;
}

.auth-page--password .auth-form {
  margin-top: 30px;
  gap: 20px;
}

.auth-page--password .auth-field {
  gap: 6px;
}

.auth-page--password .auth-field label {
  font-size: 14px;
  line-height: 20px;
}

.auth-page--password .auth-field .input {
  height: 50px;
  border-radius: 8px;
  border-color: #c5c5c5;
  padding: 10px 14px;
  font-size: 16px;
}

.auth-page--password .auth-input-wrap .input {
  padding-right: 48px;
}

.auth-page--password .auth-input-status,
.auth-page--password .auth-input-toggle {
  right: 14px;
  width: 24px;
  height: 24px;
}

.auth-page--password .auth-input-toggle svg {
  width: 24px;
  height: 24px;
}

.auth-page--password .auth-actions {
  margin-top: 0;
}

.auth-page--password .auth-actions .primary-button {
  min-height: 50px;
  border-radius: 71px;
  font-size: 16px;
  line-height: 22px;
}

.auth-page--success .auth-page__main {
  align-items: flex-start;
}

.auth-page--success .auth-shell {
  max-width: 520px;
  padding: 60px 35px 96px;
}

.auth-page--success .auth-card {
  max-width: 520px;
  background: #f5f6fa;
  border: none;
  border-radius: 20px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.auth-page--success .auth-card__icon {
  margin-bottom: 0;
}

.auth-page--success .auth-card__header {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.auth-page--success .auth-card__header--success {
  gap: 20px;
}

.auth-page--success .auth-card__title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  letter-spacing: -0.9px;
  max-width: 360px;
  color: #111111;
}

.auth-page--success .auth-card__heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-page--success .auth-card__description {
  margin-top: 0;
  font-size: 16px;
  line-height: 22px;
  color: #5a6a86;
  max-width: 396px;
}

.auth-page--success .auth-card__icon--success {
  width: 60px;
  height: 60px;
}

.auth-page--success .auth-card__icon--success img {
  display: block;
  width: 60px;
  height: 60px;
}

.auth-page--success .auth-actions {
  margin-top: 0;
  gap: 0;
}

.auth-page--success .auth-actions .primary-button {
  width: 100%;
  min-height: 50px;
  border-radius: 71px;
  font-size: 16px;
  line-height: 22px;
}

.auth-page--success .auth-actions--center {
  align-items: stretch;
}

@media (max-width: 640px) {
  .auth-page--success .auth-card {
    padding: 28px 22px;
    gap: 36px;
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  .auth-page--password .auth-card {
    padding: 28px 22px;
    gap: 36px;
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  .page-activation .auth-card {
    padding: 28px 22px;
    gap: 36px;
  }

  .page-activation .auth-card__icon--activation,
  .page-activation .auth-card__icon--activation img {
    width: 60px;
    height: 60px;
  }

  .auth-page--otp .auth-card {
    width: 100%;
    padding: 28px 22px;
    gap: 36px;
    border-radius: 20px;
  }

  .auth-page--otp .auth-card__header {
    gap: 18px;
  }

  .auth-page--otp .auth-code-group {
    gap: 8px;
  }

  .auth-page--otp .auth-code-box {
    width: 100%;
    height: 52px;
    font-size: 22px;
  }

  .auth-page--otp .auth-button--back {
    width: 100% !important;
  }
}

.auth-description-inline {
  margin: 0;
  color: #67748e;
  font-family: Geologica;
  font-size: 12px;
  line-height: 1.35;
}

.auth-message {
  width: min(100%, 498px);
  margin: 0 auto 18px;
  padding: 12px 18px;
  border-radius: 16px;
  font-family: Geologica;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1px;
  box-shadow: 0 10px 26px rgba(26, 21, 82, 0.08);
}

.auth-message--success {
  background: #eef8f2;
  color: #0a9d57;
  border: 1px solid rgba(10, 157, 87, 0.16);
}

.auth-message--warning {
  background: #fff8e8;
  color: #a35a00;
  border: 1px solid rgba(163, 90, 0, 0.16);
}

.auth-message--error {
  background: #fdeff0;
  color: #c83e52;
  border: 1px solid rgba(200, 62, 82, 0.16);
}

.auth-code-group {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.auth-code-box {
  width: 100%;
  height: 34px;
  border-radius: 4px;
  border: 1px solid #d8dce6;
  background: #fff;
  color: #141152;
  padding: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.auth-secondary-link {
  margin-top: 8px;
  color: #67748e;
  font-family: Geologica;
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
}

.auth-back-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-back-icon {
  width: 12px;
  height: 19px;
  display: block;
}

.auth-actions--split {
  margin-top: 8px;
  align-items: flex-start;
}

.auth-actions--center {
  align-items: center;
}

.auth-actions--center .primary-button {
  width: 100%;
}

.auth-page--success .auth-actions--success {
  gap: 18px;
}

.auth-page--success .auth-link--success-home {
  display: block;
  margin-top: 0;
  color: #a000ed;
  font-family: Geologica;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  text-decoration: none;
}

.auth-page--success .auth-link--success-home:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .auth-shell {
    padding: 36px 16px 64px;
  }

  .auth-card {
    max-width: 100%;
  }
}



/* Custom Input Error State */
.auth-field--error .input,
.auth-field--error .auth-code-box {
  border-color: #fda29b !important;
  box-shadow: 0 0 0 4px #fee4e2 !important;
}

.auth-field--error label {
  color: #f04438 !important;
}

.auth-field-error-text {
  color: #f04438;
  font-family: Geologica;
  font-size: 14px;
  line-height: 20px;
  margin-top: 6px;
  display: block;
}

/* Eye Slash Toggle style */
.auth-input-toggle--visible .eye-slash-line {
  display: none !important;
}

/* Shared rich text */
.site-richtext {
  color: var(--body-color-dark, #5a6a86);
  font-family: Geologica, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
}

.site-richtext>*:first-child {
  margin-top: 0;
}

.site-richtext>*:last-child {
  margin-bottom: 0;
}

.site-richtext :is(h1, h2, h3, h4, h5, h6) {
  color: var(--bg-dark, #141152);
  font-family: Geologica, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

.site-richtext :is(h1, h2) {
  margin: 0 0 30px;
  font-size: 32px;
  line-height: 48px;
}

.site-richtext h3 {
  margin: 46px 0 20px;
  font-size: 32px;
  line-height: 40px;
}

.site-richtext :is(h4, h5, h6) {
  margin: 34px 0 14px;
  font-size: 22px;
  line-height: 30px;
}

.site-richtext :is(p, ul, ol, blockquote, table) {
  margin: 0 0 22px;
}

.site-richtext a {
  color: var(--primary, #a000ed);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-richtext :is(strong, b) {
  color: var(--bg-dark, #141152);
  font-weight: 600;
}

.site-richtext :is(ul, ol) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 1.35em;
}

.site-richtext li {
  padding-left: 4px;
}

.site-richtext li::marker {
  color: var(--primary, #a000ed);
  font-weight: 600;
}

.site-richtext blockquote {
  border-left: 4px solid var(--primary, #a000ed);
  border-radius: 0 10px 10px 0;
  background: #faf7ff;
  padding: 20px 24px;
  color: var(--bg-dark, #141152);
}

.site-richtext table {
  width: 100%;
  border-collapse: collapse;
  overflow-wrap: anywhere;
}

.site-richtext :is(th, td) {
  border-bottom: 1px solid #e4e3ec;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.site-richtext th {
  color: var(--bg-dark, #141152);
  font-weight: 600;
}

@media (max-width: 768px) {
  .site-richtext {
    font-size: 16px;
    line-height: 25px;
  }

  .site-richtext :is(h1, h2) {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 42px;
  }

  .site-richtext h3 {
    margin-top: 36px;
    font-size: 26px;
    line-height: 34px;
  }

  .site-richtext :is(h4, h5, h6) {
    font-size: 20px;
    line-height: 28px;
  }
}

/* Legal page */
.legal {
  display: flex;
  width: 100%;
  justify-content: center;
  background: var(--white, #fff);
  padding: 80px 24px 120px;
}

.legal__text {
  width: min(100%, 1098px);
}

@media (max-width: 768px) {
  .legal {
    padding: 54px 16px 82px;
  }
}

/* User profile page */
.user-profile-page {
  width: min(100%, 623px);
  margin: 60px auto 96px;
  padding: 0;
  color: var(--black, #000);
  font-family: Geologica, sans-serif;
}

.user-profile-page button {
  font-family: inherit;
}

.user-profile-page__title {
  margin: 0 0 25px;
  color: var(--black, #000);
  font-size: 26px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.78px;
}

.user-profile-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.user-profile-card {
  width: 100%;
  border-radius: 20px;
  background: var(--bg-light, #f5f6fa);
  padding: 35px;
}

.user-profile-card--identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.user-profile-avatar {
  display: flex;
  width: 75px;
  height: 75px;
  align-items: center;
  justify-content: center;
  border-radius: 300px;
  background: linear-gradient(270deg, #a90ced 0%, #4d0f97 100%);
  color: var(--white, #fff);
  font-size: 26px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.78px;
}

.user-profile-identity,
.user-profile-card__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.user-profile-card__title,
.user-profile-subscription h4 {
  margin: 0;
  color: var(--black, #000);
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.4px;
}

.user-profile-identity p,
.user-profile-card__content p {
  margin: 0;
  color: var(--body-color-dark, #5a6a86);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.user-profile-card--password {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-profile-card--password .user-profile-card__content {
  flex: 1 1 auto;
  min-width: 0;
}

.user-profile-button {
  display: flex;
  min-width: 163px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 71px;
  background: var(--primary, #a000ed);
  color: var(--white, #fff);
  padding: 8.8px 26.4px;
  font-size: 14.08px;
  font-weight: 500;
  line-height: 19.36px;
  white-space: nowrap;
}

.user-profile-card--subscriptions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.user-profile-alert {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #dc5b00;
  border-radius: 10px;
  background: #fff9da;
  padding: 11px 17px;
}

.user-profile-alert svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.user-profile-alert p {
  margin: 0;
  color: var(--black, #000);
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.user-profile-alert span {
  font-weight: 300;
  line-height: 18px;
}

.user-profile-alert strong {
  font-weight: 500;
}

.user-profile-subscriptions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.user-profile-subscription {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  background: var(--white, #fff);
  padding: 16px;
}

.user-profile-subscription__header {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-bottom: 1px dashed #cfd2d8;
  padding-bottom: 10px;
}

.user-profile-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #008e0a;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.user-profile-status svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.user-profile-subscription p {
  margin: 0;
  color: var(--body-color-dark, #5a6a86);
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
}

.user-profile-logout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  border: 0;
  background: transparent;
  color: var(--black, #000);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.user-profile-logout svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: #fd193f;
}

@media (max-width: 768px) {
  .user-profile-page {
    width: 100%;
    margin: 42px auto 72px;
    padding: 0 16px;
  }

  .user-profile-card {
    padding: 28px 22px;
  }

  .user-profile-card--password {
    flex-direction: column;
    align-items: stretch;
  }

  .user-profile-button {
    width: 100%;
  }

  .user-profile-alert {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .user-profile-alert p {
    text-align: left;
  }
}

.contact-info-card img {
  height: 60px;
  width: 60px;
}


header .xxl-body-light {
  max-width: 502px;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {

  html,
  body {
    overflow-x: clip;
  }
}

body.page-updateyourself>.header-container,
body.page-contact>.header-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
}

body.page-updateyourself>.header-container,
body.page-updateyourself>header.header-container,
body.page-contact>.header-container,
body.page-contact>header.header-container {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body.page-updateyourself>.header-container .header.margin-bottom,
body.page-updateyourself>header.header-container .header.margin-bottom {
  margin-bottom: 0;
}

body.page-updates>.header-container .header.margin-bottom,
body.page-updates>header.header-container .header.margin-bottom {
  margin-bottom: 0;
}

body.page-seminarupdate>.header-container .header.margin-bottom,
body.page-seminarupdate>header.header-container .header.margin-bottom {
  margin-bottom: 0;
}

body.page-schools>.header-container .header.margin-bottom,
body.page-schools>header.header-container .header.margin-bottom {
  margin-bottom: 0;
}

body.page-contact>.header-container .header.margin-bottom,
body.page-contact>header.header-container .header.margin-bottom {
  margin-bottom: 0;
}

body.page-home .page__main,
body.page-updateyourself .page__main,
body.page-updatepass .page__main,
body.page-updates .page__main,
body.page-seminarupdate .page__main,
body.page-schools .page__main,
body.page-contact .page__main,
body.page-weekends .page__main,
body.page-seminarslistupdates .page__main {
  position: relative;
}

body.page-updateyourself .header-container-2 {
  padding-inline: 24px;
  padding-top: 82px;
}

.main-intro-icon-cards-container {
  flex-wrap: wrap;
  gap: clamp(20px, 2.5vw, 38px);
}

.main-intro-icon-cards-container>.icon-card {
  gap: clamp(18px, 2vw, 30px);
  flex: 1 1 clamp(280px, 30vw, 488px);
  padding: clamp(22px, 2.4vw, 30px) clamp(22px, 2.8vw, 35px);
}

@media (max-width: 1260px) {
  .main-intro-icon-cards-container {
    align-items: stretch;
    flex-direction: row;
  }
}

@media (max-width: 1100px) {
  .main-intro-icon-cards-container {
    flex-direction: column;
  }

  .main-intro-icon-cards-container>.icon-card {
    justify-content: flex-start;
    flex-basis: auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .main-intro-icon-cards-container>.icon-card {
    padding: clamp(20px, 4vw, 24px);
  }
}

@media (max-width: 480px) {
  .main-intro-icon-cards-container>.icon-card {
    gap: clamp(16px, 5vw, 20px);
    padding: clamp(20px, 5vw, 24px);
  }
}

@media (max-width: 1200px) {
  header.header-container:not(:has(.header-hero-logo)):has(.days-till-next-event-container) .event-details-content {
    height: auto;
  }

  header.header-container:not(:has(.header-hero-logo)):has(.days-till-next-event-container) .event-slider-content {
    height: auto;
  }

  header:has(.header-hero-logo) .event-details-content {
    height: auto;
  }

  header:has(.header-hero-logo) .event-details-content>.event-slider-content {
    height: auto;
    order: 2;
  }

  header .event-details-content:has(>.header-hero-logo)>.event-slider-content {
    max-width: 100%;
  }
}

@media (max-width: 844px) {
  header.header-container:has(.event-details) {
    background-image: var(--hero-background-image-mobile, var(--hero-background-image-desktop)) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  header.header-container:has(.event-details):not(:has(.days-till-next-event-container)) {
    --hero-mobile-min-height: clamp(1140px, calc(1580px - 52vw), 1400px);
  }

  header.header-container:has(.event-details):not(:has(.days-till-next-event-container)) .event-details {
    min-height: var(--hero-mobile-min-height);
  }

  body.page-updatepass header.header-container:has(.event-details):not(:has(.days-till-next-event-container)) .event-details {
    min-height: min(970px, calc(100dvh - 82px));
  }

  .page-updatepass .event-details-content {
    justify-content: end;
  }

  .event-details-content {
    justify-content: start;
  }

}

@media (max-width: 530px) {
  body.page-updatepass header.header-container:has(.event-details):not(:has(.days-till-next-event-container)) .event-details {
    padding-top: 250px;
  }
}

@media (min-width: 845px) {
  header.header-container:has(.event-details):not(:has(.days-till-next-event-container)) {
    background-position: right center !important;
  }
}

@media (max-width: 480px) {
  header.header-container:has(.event-details):not(:has(.days-till-next-event-container)) .event-slider-content {
    gap: 16px;
  }

  header.header-container:has(.event-details):not(:has(.days-till-next-event-container)) .event-slider-title {
    gap: 10px;
  }
}

body.page-home .nav-menu-item a,
body.page-updateyourself .nav-menu-item a,
body.page-updatepass .nav-menu-item a,
body.page-updates .nav-menu-item a,
body.page-seminarupdate .nav-menu-item a,
body.page-schools .nav-menu-item a,
body.page-contact .nav-menu-item a,
body.page-weekends .nav-menu-item a,
body.page-seminarslistupdates .nav-menu-item a {
  font-family: Geologica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

body.page-updateyourself .nav-menu-item,
body.page-updateyourself .nav-menu-item a,
body.page-updateyourself .nav-button--desktop,
body.page-updateyourself .nav-button--drawer,
body.page-updatepass .nav-menu-item,
body.page-updatepass .nav-menu-item a,
body.page-updatepass .nav-button--desktop,
body.page-updatepass .nav-button--drawer {
  font-family: Geologica, sans-serif !important;
}

body.page-updates .nav-menu-item,
body.page-updates .nav-menu-item a,
body.page-updates .nav-button--desktop,
body.page-updates .nav-button--drawer {
  font-family: Geologica, sans-serif !important;
}

body.page-seminarupdate .nav-menu-item,
body.page-seminarupdate .nav-menu-item a,
body.page-seminarupdate .nav-button--desktop,
body.page-seminarupdate .nav-button--drawer {
  font-family: Geologica, sans-serif !important;
}

body.page-schools .nav-menu-item,
body.page-schools .nav-menu-item a,
body.page-schools .nav-button--desktop,
body.page-schools .nav-button--drawer {
  font-family: Geologica, sans-serif !important;
}

body.page-contact .nav-menu-item,
body.page-contact .nav-menu-item a,
body.page-contact .nav-button--desktop,
body.page-contact .nav-button--drawer {
  font-family: Geologica, sans-serif !important;
}

body.page-updateyourself .nav-menu-item a,
body.page-updatepass .nav-menu-item a {
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 22px !important;
}

body.page-updates .nav-menu-item a {
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 22px !important;
}

body.page-seminarupdate .nav-menu-item a {
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 22px !important;
}

body.page-schools .nav-menu-item a {
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 22px !important;
}

body.page-contact .nav-menu-item a {
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 22px !important;
}

.nav-menu-item--has-dropdown {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 14px 32px rgba(20, 17, 82, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 50;
}

.nav-menu-item--has-dropdown:hover .nav-submenu,
.nav-menu-item--has-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-submenu-item {
  display: block;
}

.nav-submenu-item a {
  display: block;
  padding: 12px 18px;
  color: #141152;
  font-family: Geologica, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 20px !important;
  white-space: nowrap;
}

.nav-submenu-item a:hover,
.nav-submenu-item--active a {
  background: rgba(20, 17, 82, 0.08);
}

.school-info-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 64px 24px;
  background: #fff;
}

.school-info-grid {
  width: 100%;
  max-width: 1540px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.school-info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid rgba(20, 17, 82, 0.1);
  border-radius: 8px;
  background: #fff;
}

.school-info-card-media {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
}

.school-info-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.school-info-card-title {
  margin: 0;
}

.school-info-card-text {
  white-space: pre-line;
}

.class-description-text-list {
  max-width: 725px;
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 94px;
}

.numbered-list-richtext {
  width: 100%;
  color: #5A6A86;
}

.numbered-list-richtext ol {
  column-count: 3;
  margin: 0;
  padding-left: 22px;
  list-style: decimal outside !important;
}

.numbered-list-richtext li {
  display: list-item;
  list-style: decimal outside !important;
  break-inside: avoid;
  margin-bottom: 2px;
  padding-left: 4px;
}

.numbered-list-richtext li::marker {
  color: currentColor;
}

@media (max-width: 1500px) {
  .nav-submenu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    padding: 0 0 10px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .nav-menu-item--has-dropdown {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu-item--has-dropdown:hover .nav-submenu,
  .nav-menu-item--has-dropdown:focus-within .nav-submenu {
    transform: none;
  }

  .nav-submenu-item a {
    padding: 12px 44px;
    color: #fff;
    white-space: normal;
  }

  .nav-submenu-item a:hover,
  .nav-submenu-item--active a {
    background: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 767px) {
  .school-info-section {
    padding: 40px 16px;
  }

  .school-info-card {
    padding: 22px;
  }

  .numbered-list-richtext ol {
    column-count: 1;
  }
}

body.page-contact .contact-static-hero {
  padding-top: 36px;
}

@media (max-width: 1024px) {
  body.page-contact .contact-static-hero {
    padding-top: 24px;
  }
}

/* Homepage hero (Update hero): allow the title to break onto multiple lines.
   Insert a newline inside the Umbraco "heroBannerTitle" field (e.g. "UPDATE 21\nΜαθήματα Ζωής")
   and `white-space: pre-line` will render it as a line break. */
body.page-home .event-slider-title h1 {
  white-space: pre-line;
}

/* Force Geologica across the Stefanos profile (image-title-text-section) and its descendants.
   Mirrors the font the static HTML expects (styles.css declares font-family: Geologica for
   .heading-h3 and .xl-body-light; this is a defensive override in case any inherited rule wins). */
.image-title-text-section,
.image-title-text-section *,
.image-title-text-section .image-title-text-title,
.image-title-text-section .image-title-text-copy,
.image-title-text-section .heading-h3,
.image-title-text-section .xl-body-light {
  font-family: "Geologica", "Geologica Alt", sans-serif !important;
}

/* When same-background content sections touch, keep one section rhythm instead of doubling vertical whitespace. */
:is(.event-description-section,
  .class-description,
  .header-title-text-section,
  .image-title-text-section,
  .numbered-list-section,
  .program-list-section,
  .school-info-section,
  .why-come-section)+:is(.event-description-section,
  .class-description,
  .header-title-text-section,
  .image-title-text-section,
  .numbered-list-section,
  .program-list-section,
  .school-info-section,
  .why-come-section) {
  padding-top: 20px;
}

:is(.quote-section,
  .ticket-section,
  .update-now:not(.gray))+:is(.quote-section,
  .ticket-section,
  .update-now:not(.gray)) {
  padding-top: 0;
}

:is(.update-now.gray,
  .why-come-section.gray)+:is(.update-now.gray,
  .why-come-section.gray) {
  padding-top: 0;
}

.updates-archive-content>*:first-child,
.updates-archive-content>p:has(> strong:only-child) {
  color: #000;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.9px;
}

.updates-archive-content p:last-child {
  margin-bottom: 0;
}

.updates-archive-content strong {
  font-weight: 600;
  color: #141152;
}

@media (max-width: 767px) {
  .updates-archive-content {
    padding: 24px 16px 32px;
  }

  .updates-archive-content>*:first-child,
  .updates-archive-content>p:has(> strong:only-child) {
    font-size: 20px;
    line-height: 28px;
  }
}

/* Light content header (e.g. legals): renders the full site nav inside .header-container.light.
   The regular header.cshtml ships a white "default" logo for dark heroes — swap to the dark
   "sticky" logo so it's visible on the white background, and match the sticky-state purple
   styling for the account button so it remains readable. */
.header-container.light .site-nav .nav-logo__image--default {
  opacity: 0;
}

.header-container.light .site-nav .nav-logo__image--sticky {
  opacity: 1;
}

.header-container.light .site-nav .white-button.nav-button--drawer {
  background: var(--primary-button, #a612ee);
  color: var(--white, #fff);
}

/* Hero info-row items can be long; wrap whole items instead of splitting values like "13:14". */
.event-info {
  flex-wrap: wrap;
}

.event-info-item .heading-h6 {
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

@media (max-width: 768px) {
  .podcast-player-float {
    max-width: calc(100vw - 32px);
    right: 16px;
  }

  .event-info,
  .event-info-item {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .event-info-item {
    min-width: 0;
  }

  .event-info-item .heading-h6 {
    overflow-wrap: break-word;
    white-space: normal;
    word-break: normal;
  }
}

.new-highschool .peekSwiper .swiper-pagination {
  flex-wrap: nowrap;
  justify-content: safe center;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.new-highschool .swiper-pagination-bullet.peek-swiper-pagination-button.xl-body-medium {
  flex: 0 0 auto;
  max-width: none;
  white-space: nowrap;
  text-wrap: nowrap;
}

.new-highschool .peekSwiper .new-highschool-slide-title-logo {
  display: flex;
  width: 280px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.how-it-started .timelineCarousel .swiper-wrapper {
  gap: 0;
}

.how-it-started .timelineCarousel .swiper-slide {
  align-items: center;
}

.how-it-started .timeline-item {
  margin-inline: auto;
}

@media (max-width: 800px) {
  .new-highschool .peekSwiper .swiper-wrapper {
    align-items: stretch;
  }

  .new-highschool .peekSwiper .swiper-slide {
    display: flex;
    height: auto;
    padding: 24px 16px 80px;
  }

  .new-highschool .peekSwiper .swiper-slide>.new-highschool-slide {
    height: 100%;
    min-height: 560px;
  }

  .new-highschool .peekSwiper .new-highschool-slide-image-container {
    flex: 0 0 auto;
  }

  .new-highschool .peekSwiper .new-highschool-slide-image {
    align-items: center;
  }

  .new-highschool .peekSwiper .new-highschool-slide-image-inner {
    align-items: center;
    justify-content: center;
    margin-top: 0;
    max-height: 311.922px;
    max-width: 205.083px;
  }

  .new-highschool .peekSwiper .new-highschool-slide-image-inner>img:not(.new-highschool-slide-logo) {
    height: auto;
    max-height: 311.922px;
    max-width: 205.083px;
    object-fit: contain;
    width: auto;
  }

  .new-highschool .peekSwiper .new-highschool-slide-info {
    flex: 1 1 auto;
    min-height: 0;
  }

  .new-highschool .peekSwiper .new-highschool-slide-info-body-description {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 960px) {
  .new-highschool .peekSwiper .swiper-slide>.new-highschool-slide {
    --new-highschool-bg-image-padding-inline: clamp(24px, 10vw, 112px);
    isolation: isolate;
    min-height: 560px;
    overflow: hidden;
    position: relative;
  }

  .new-highschool .peekSwiper .swiper-slide>.new-highschool-slide::before {
    background: inherit;
    content: "";
    inset: 0;
    mask-image: linear-gradient(to top, #000 0%, transparent 33.333%);
    pointer-events: none;
    position: absolute;
    -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 33.333%);
    z-index: 1;
  }

  .new-highschool .peekSwiper .new-highschool-slide-image-container {
    height: 100%;
    inset: 0;
    max-width: none;
    position: absolute;
    width: 100%;
  }

  .new-highschool .peekSwiper .new-highschool-slide-image,
  .new-highschool .peekSwiper .new-highschool-slide-image-inner {
    height: 100%;
    max-height: none;
    max-width: none;
    width: 100%;
  }

  .new-highschool .peekSwiper .new-highschool-slide-image-inner {
    margin-top: 0;
    z-index: auto;
  }

  .new-highschool .peekSwiper .new-highschool-slide-image-inner>img:not(.new-highschool-slide-logo) {
    height: auto;
    left: 50%;
    max-height: 100%;
    max-width: calc(100% - (var(--new-highschool-bg-image-padding-inline) * 2));
    object-fit: contain;
    object-position: center center;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: auto;
  }

  .new-highschool .peekSwiper .new-highschool-slide-logo {
    bottom: 24px;
    height: auto;
    max-width: min(160px, 36vw);
    object-fit: contain;
    position: absolute;
    right: 24px;
    width: auto;
    z-index: 3;
  }
}

.new-highschool-slide-info-header .new-highschool-slide-info-duration {
  white-space: nowrap;
}

@media (max-width: 556px) {
  .new-highschool .peekSwiper .swiper-slide>.new-highschool-slide {
    min-height: 520px;
  }

  .new-highschool .peekSwiper .new-highschool-slide-info {
    padding: 30px 16px 20px;
  }
}

@media (max-width: 360px) {
  .heading-h6.info-date {
    max-width: min-content;
  }
}

@media (max-width: 638px) {
  .new-highschool .peekSwiper .swiper-slide>.new-highschool-slide {
    --new-highschool-bg-image-padding-inline: 0px;
  }

  .new-highschool .peekSwiper .new-highschool-slide-image-inner>img:not(.new-highschool-slide-logo) {
    object-position: center bottom;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
  }
}


.updates-title .large-body-regular {
  max-width: 302px;
}
