* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: -0.01em;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: Santral;
  color: white;
}

body {
  background: #783055;
  display: flex;
  flex-direction: column;
}

.dim-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 2;
  opacity: 1;
  display: none;
  /* transition doesn't work because there is hidden, fix in the future */
}

.head, .notes, .shownotes {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  flex-grow: 0;
  justify-content: center;
  align-items: center;
}

.head .container,
.shownotes .container {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1280px;
  margin: 0 auto;
}

.head .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url("../../assets/img/bgt.jpg") no-repeat center center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.37;
}

.container .nav {
  height: 48px;
  width: 100%;
  display: flex;
}
.container .nav .back {
  width: 48px;
  height: inherit;
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container .nav .title {
  width: auto;
  height: inherit;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Santral';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  text-align: center;
  letter-spacing: -0.02em;
}
.container .nav .blank {
  width: 48px;
  height: inherit;
  flex-grow: 0;
}

.main-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 40px;
  align-items: center;
}
.main-container .figure-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 0;
  flex-shrink: 0;
  line-height: 0;
}
.main-container .figure-wrapper figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.2));
}
.main-container .figure-wrapper figure img.cover {
  width: 400px;
}
.main-container .episode-data {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  width: 100%;
  padding: 0px;
  gap: 40px;
}
.main-container .episode-data .details {
  display: flex;
  flex-direction: column;
  padding: 0px;
  gap: 12px;
}
.main-container .episode-data .details .main-data {
  display: flex;
  flex-direction: column;
  padding: 0px;
  gap: 8px;
}
.main-container .episode-data .details .main-data .date {
  font-weight: 600;
  font-size: 18px;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.7);
}
.main-container .episode-data .details .main-data .eptitle {
  font-weight: 700;
  font-size: 28px;
  line-height: 23px;
}
.main-container .episode-data .details .main-data .platform {
  font-weight: 700;
  font-size: 18px;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.6);
}
.main-container .episode-data .details .main-data .shownotes-button.mobile-only {
  display: flex;
  position: relative;
  display: none;
  width: 150px;
  height: 28px;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 13px;
  margin-top: 0;
  margin-bottom: 0px;
  border: 2px solid white;
  text-decoration: none;
  border-radius: 10px;
  opacity: 0.8;
  line-height: initial;
  font-family: "Inter";
  cursor: pointer;
}
.main-container .episode-data .details .description {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: initial;
  letter-spacing: initial;
}

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

@media screen and (max-width: 1290px) {
  .main-container .figure-wrapper figure img.cover {
    width: 320px;
  }

  .main-container {
    padding-left: 40px;
    padding-right: 40px;
    gap: 35px;
  }
}
@media screen and (max-width: 990px) {
  .main-container .figure-wrapper figure img.cover {
    width: 290px;
  }

  .main-container {
    padding-left: 35px;
    padding-right: 35px;
    gap: 40px;
  }
  .main-container .episode-data {
    gap: 25px;
  }
  .main-container .episode-data .details .main-data {
    gap: 6px;
  }
  .main-container .episode-data .details .main-data .date, .main-container .episode-data .details .main-data .platform {
    font-size: 16px;
  }
  .main-container .episode-data .details .main-data .eptitle {
    font-size: 24px;
  }
  .main-container .episode-data .details .description {
    font-size: 15px;
  }
  .main-container .episode-data .shownotes-button.mobile-only {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .main-container {
    padding-left: 30px;
    padding-right: 30px;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding-top: 40px;
  }
  .main-container .figure-wrapper {
    width: 60%;
  }
  .main-container .figure-wrapper figure {
    width: 100%;
  }
  .main-container .figure-wrapper figure img.cover {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .dim-overlay.active {
    display: block;
  }

  body {
    overflow: hidden;
  }

  .container .mobile-only {
    display: flex;
  }

  .desktop-only {
    display: none !important;
  }

  .head {
    height: 100%;
  }

  .main-container {
    padding: 20px;
    padding-top: 0;
    gap: 20px;
  }
  .main-container .figure-wrapper {
    width: 100%;
  }
  .main-container .episode-data {
    gap: 30px;
  }
  .main-container .episode-data .player {
    gap: 20px;
    padding-bottom: 20px;
  }
  .main-container .episode-data .details .main-data {
    justify-content: center;
    align-items: center;
    gap: 6px;
  }
  .main-container .episode-data .details .main-data .date, .main-container .episode-data .details .main-data .platform {
    font-size: 14px;
    text-align: center;
  }
  .main-container .episode-data .details .main-data .eptitle {
    font-size: 20px;
    text-align: center;
  }
  .main-container .episode-data .details .main-data .shownotes-button.mobile-only {
    display: flex;
  }
  .main-container .episode-data .details .description {
    font-size: 14px;
  }
}

/*# sourceMappingURL=player_layout.css.map */
