/* Taking DAWNZERA Page Styles */
/* Only unique styles that don't exist in the component system */

.page__bg--bricks {
  background: url(../../images/backgrounds/form-lab-background.png) lightgray center / contain repeat;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
/* Enhanced card styling for feature cards with special borders */
.card--featured {
  border: 2px solid var(--color-primary);
  border-radius: 24px;
  box-shadow: var(--shadow-glow-primary);
  position: relative;
}

.card--featured::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 2px solid var(--color-primary-light);
  border-radius: 22px;
  pointer-events: none;
}

.card--featured::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid #fde5e0;
  border-radius: 20px;
  pointer-events: none;
}

.card--featured .card__body {
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 8px 0px inset var(--color-primary-dark),
    0px 0px 8px 0px inset var(--color-primary-light);
}

/* Video topics styling */
.video-topics {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-3xl);
  align-items: start;
  margin-top: 2.25rem;
  margin-bottom: 1.25rem;
}

/* Chapter fade-in animation */
.video-topics__list {
  transition: opacity 0.3s ease-in-out;
}

.video-topics__list.loading {
  opacity: 0;
}

.video-topics__list {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: auto 0;
}

.video-topic {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  color: var(--color-white);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.video-topic:hover {
  background-color: rgba(var(--color-primary-rgb), 0.1);
}

.video-topic.active {
  background-color: rgba(var(--color-primary-rgb), 0.15);
}

.video-topic.active .video-topic__marker {
  background-color: var(--color-primary);
}

h1.chapter-section-heading {
  color: white;
  margin: 0;
  font-size: 26px;
  line-height: normal;
  font-family: var(--font-agenda);
}

.autoinjector-video video {
  margin: 0 auto 6rem;
}

.video-topic__marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid white;
  flex-shrink: 0;
}

.video-topic--active .video-topic__marker {
  background-color: var(--color-white);
}

.video-topic__title {
  font-family: var(--font-agenda);
  font-size: 26px;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: underline;
  margin: 0;
  color: #fff;
}

.video-topics__player {
  position: relative;
}

.video-player {
  border-radius: 5px;
  height: 476px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-player {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
}

.video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}

.video-cover__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-cover__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease;
}

.video-cover:hover .video-cover__play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-player__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-player__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Card placeholder styling for FPO content */
.card__placeholder {
  background-color: var(--color-gray-400);
  height: 183px;
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 0, 183, 0.5);
  font-family: var(--font-agenda);
  font-size: 50px;
  font-weight: bold;
}

.gradient-border {
  background: linear-gradient(90deg, #DEE1E3 0%, #FFFBE6 25.48%, #D4CBBF 59.62%, #EDECEC 79.81%, #D6D4BA 100%);
  padding: 8px;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  width: max-content;
  margin: 0 auto;
}

/* CTA Banner with Icon */
.cta-banner {
  background-color: var(--color-white);
  border: 8px solid var(--color-gray-300);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: var(--space-2xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.cta-banner__icon {
  flex-shrink: 0;
}

.cta-banner__icon img {
  width: 100px;
  height: 100px;
}

.cta-banner__content {
  flex: 1;
}

.cta-banner__text {
  font-family: var(--font-agenda);
  font-size: 20px;
  color: var(--color-text-primary);
  margin: 0;
}

/* Decorative background circles */
.section--lg:last-of-type {
  position: relative;
  overflow: hidden;
}

.section--lg:last-of-type::before {
  content: "";
  position: absolute;
  top: -130px;
  left: 563px;
  width: 1189px;
  height: 1189px;
  background-image: url("../../images/backgrounds/doni-circles-reference.png");
  background-size: cover;
  background-position: center;
  transform: rotate(319deg);
  pointer-events: none;
  z-index: -1;
}

/* ISI Content Styling */
.section--isi {
  background-color: var(--color-white);
  box-shadow: var(--shadow-section);
}

.isi-content {
  padding: var(--space-2xl) 0;
}

.isi-content__title {
  font-family: var(--font-agenda);
  font-size: 26px;
  font-weight: bold;
  color: var(--color-primary);
  margin: 0 0 var(--space-sm) 0;
}

.isi-content__subtitle {
  font-family: var(--font-agenda);
  font-size: 26px;
  font-weight: bold;
  color: var(--color-primary);
  margin: var(--space-lg) 0 var(--space-sm) 0;
}

.isi-content__heading {
  font-family: var(--font-agenda);
  font-size: 20px;
  font-weight: bold;
  color: var(--color-text-secondary);
  margin: var(--space-md) 0 var(--space-xs) 0;
}

.isi-content__text {
  font-family: var(--font-agenda);
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
}

.isi-content__footer {
  font-family: var(--font-agenda);
  font-size: 20px;
  font-weight: bold;
  color: var(--color-text-secondary);
  margin-top: var(--space-lg);
}
/* Responsive Design */
@media (max-width: 991px) {
  .video-topics {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);

    .video-topics__player {
      order: 1
    }
    .video-topics__list {
      order: 2
    }
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .video-player__awaiting {
    font-size: 24px;
    max-width: 200px;
  }
}

.hero {
  background-color: transparent;
}
.hero__title {
  font-family: "Tilt Neon";
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  width: 100%;
  max-width: 780px;
  color: var(--color-charcol, #1d2d3a);
  text-shadow: none;
}

.hero__container .tdh_title {
  max-width: 720px;
}

.hero {
  min-height: 560px;
}

.hero__subtitle {
  font-family: Agenda;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  align-self: stretch;
  max-width: 840px;
  width: 100%;
  color: var(--color-charcol, #1d2d3a) !important;
  text-shadow: none;
}

.section__header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0px 0px;
  text-align: left;
}

.section__note {
  color: #1d2d3a;
  font-family: Agenda;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-left: 30px;
}

.section__storage__note{
  color: #1d2d3a;
  font-family: Agenda;
  font-size: 20px;
  font-style: normal;
  line-height: normal;
  margin-left: 30px;
}

.storage_note {
  line-height: normal;
}

.foot_note {
  color: #515861;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 24px;
  margin-bottom: 40px;
}

.section__storage__note {

  .foot_note.foot_note-first {
    margin-bottom: 0;
  }
  .foot_note.foot_note-second {
    margin-top: 0;
  }
}

.hang-note {
    margin-left: -6px;
}

.section__badge {
  margin-bottom: 10px;
  background-color: #f16b50 !important;
}

.section-badge--light {
  padding-left: 0px;
}

.badge--primary {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: Agenda;
  padding: 4px 10px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section__title {
  color: #c94808;
  font-family: "Tilt Neon";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  align-items: stretch;
}

.section__subtitle {
  font-size: 26px;
  font-weight: 400;
  width: 100%;
  color: #1d2d3a;
  max-width: 100%;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 0;
}

.card {
  border-radius: 18px;
  box-shadow: 8 8 18px 0 #c94808 inset, 8 8 18px 0 #e08a67 inset;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
}

.card--featured .card__body {
  box-shadow: none;
}

.card__icon {
  width: 100px;
  height: 100px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.card--compact .card__body {
  padding: 24px;
}

#dosing {

 .card__icon {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    margin-top: 24px;

    img {
      max-width: 100px;
    }
  }

  .card--compact .card__body {
    padding: 24px;
  }

  .card__text {
    padding: 0;
    text-align: center;
  }

  .section__subtitle {
    font-weight: 700;
  }

  .dosing-section-outer-1 {
    border-radius: 24px;
    box-shadow: 0 0 8px 0 #C94808, 0 0 8px 0 #E08A67;
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, rgba(226, 66, 45, 1) 0%, rgba(255, 198, 187, 1) 50%, rgba(226, 66, 45, 1) 100%);
    padding: 3px;
    height: 100%;
  }

  .dosing-section-outer-2 {
    border-radius: 22px;
    border: 2px solid #F59785;
    background: var(--White, #FFF);
    height: 100%;
  }

  .dosing-section-outer-3 {
    border-radius: 20px;
    border: 2px solid #FDE5E0;
    background: var(--White, #FFF);
    height: 100%;
  }

  .card {
    border: none;
    box-shadow: 0 0 8px 0 #C94808 inset, 0 0 8px 0 #E08A67 inset;

    &::after , &::before {
      content: none;
    }

    &:hover {
      transform: none;
    }
  }
}

.card__icon img {
  max-width: 100%;
  object-fit: cover;
  display: block;
}

#dosing {
  .card-grid--3 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    padding: 24px 10px;
  }
  .horizontal-line {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    top: 50%;
    left: 10px;
    width: 90%;
    height: 6px;
    background: linear-gradient(180deg, #F37A61 0%, #FDE5E0 50%, #F37A61 100%);
    border-top: 2px solid #FCDDD7;
  }
  .horizontal-line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(180deg, #E03521 0%, #FFC6BB 50%, #E03521 100%);
  }
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Mobile + Tablet: 0–991px */
  @media (max-width: 991px) {
    .card-grid--3 {
      grid-template-columns: 1fr;
    }
    .horizontal-line {
      top: 25px;
      left: 50%;
      transform: translateX(-50%);
      width: 6px;
      height: 90%;
      background: linear-gradient(90deg, #F37A61 0%, #FDE5E0 50%, #F37A61 100%);
      border-top: none;
      border-left: 2px solid #FCDDD7;
    }
    .horizontal-line::after {
      content: '';
      position: absolute;
      top: 0;
      right: -2px;
      width: 2px;
      height: 100%;
      background: linear-gradient(90deg, #E03521 0%, #FFC6BB 50%, #E03521 100%);
    }
  }
  .card--compact {
    position: relative;
    z-index: 1;
  }
}

.card--featured .card__title {
  color: #f16b50;
  text-align: center;
  font-family: Agenda;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.card__text {
  color: #1d2d3a;
  text-align: center;
  font-family: Agenda;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section--lg {

  &.section-lg-container {
    padding-top: 60px;
    padding-bottom: 60px;

    @media (max-width: 768px) {
      padding-top: 40px;
      padding-bottom: 80px;
    }
  }
}

.badge--light {
  background-color: white;
  color: #f16b50;
  font-family: Agenda;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 4px 10px;
  border-radius: 5px;
  text-transform: none;
}

.card__placeholder {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  border-radius: 24px 24px 0 0;
  background: #d9d9d9;
}

.administrator_card .card__media {
  width: 100%;
}

.administrator_card .card__placeholder div {
  width: 100%;
  display: block;
}

.card__placeholder p {
  color: rgba(255, 0, 183, 0.5);
  text-align: center;
  font-family: Agenda;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.card--compact .card__text {
  color: #1d2d3a;
  font-family: Agenda;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}

.cta-banner {
  background: white;
  text-align: left;
  width: max-content;
  margin: 0 auto;
  border-radius: 24px;
  border: 8px solid #dee1e3;
  box-shadow: 0 8px 24px -4px rgba(81, 88, 97, 0.16);
}

.cta-banner .cta-banner__text {
  color: #1d2d3a;
  font-family: Agenda;
  font-size: 20px;
  font-style: normal;
  line-height: normal;
}

.cta-banner .cta-banner__text a {
  color: #f16b50;
  font-family: Agenda;
  font-size: 20px;
  font-style: normal;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.tdh-banner {
  border: none;
  box-shadow: none;
}

.section__split {
  display: flex;
  flex-direction: column;
}
#administration-video .section__split-media {
  width: 100%;
}
#administration-video .section__split-content {
  padding: 0 0 8px 0;
}
#administration-video .section__text {
  color: var(--White, #fff);
  font-family: var(--Font-H4, Agenda);
  font-size: var(--Size-H4, 26px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#administration-video .section__title {
  color: var(--White, #fff);
  font-family: var(--Font-H2, "Tilt Neon");
  font-size: var(--Size-H2, 40px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero--overlay {
  padding-top: 40px;

  .hero__background img {
    height: 100%;
  }
}

/* Responsive media query for mobile devices */
@media only screen and (max-width: 767px) {
  .hero--overlay {
    padding: 0;

    .hero__background img {
      width: 100%;
      height: 100%;
      flex-shrink: 0;
      object-fit: cover;
      object-position: center;
    }
  }
  .hero__title {
    font-size: 36px;
    line-height: 38px;
    width: 100%;
  }
  .hero__subtitle {
    font-size: 22px;
    line-height: normal;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .section .section--lg {
    padding: 40px 5px 10px;
  }
  .section__header {
    text-align: left;
  }
  .section__title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 24px;
  }
  .section__subtitle {
    font-size: 22px;
    line-height: 1.5;
  }
  .card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0px;
  }
  .card {
    min-height: auto;
    align-self: stretch;
  }
  .card__icon {
    width: 120px;
    height: 120px;
  }
  .card--featured .card__title {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .card--featured .card__text {
    font-size: 20px;
    text-align: center;
    padding: 0px 20px 10px;
  }
  .section__note {
    font-size: 14px;
    margin: 0 16px;
  }
  .foot_note {
    margin-bottom: 20px;
  }
  .badge--primary,
  .badge--light {
    font-size: 12px;
    padding: 4px 8px;
  }
}
@media only screen and (max-width: 767px) {
  #administration-video {
    padding: 0;
  }
  #administration-video .section__split {
    flex-direction: column;
    gap: 24px;
  }
  #administration-video .section__split-content {
    padding: 0 16px;
    text-align: left;
  }
  #administration-video .section__title {
    font-size: 28px;
    line-height: 36px;
  }
  #administration-video .section__text {
    font-size: 18px;
    line-height: 1.5;
  }
  #administration-video .section__split-media {
    width: 100%;
    padding: 0 16px;
    text-align: center;
    background: none;
    min-height: auto;
  }
  #administration-video .section__split-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .video-topics {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .video-topic__title {
    font-size: 18px;
  }
  .video-player {
    height: 240px;
  }
  .video-player__fpo,
  .video-player__awaiting {
    font-size: 24px;
    max-width: 90%;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .cta-banner {
    width: fit-content;
    padding: 16px;
    border-width: 4px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(81, 88, 97, 0.12);
  }
  .gradient-border {
    width: fit-content;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(81, 88, 97, 0.12);
    padding: 4px;
  }
  .cta-banner__icon {
    text-align: left;
  }
  .cta-banner__icon img {
    width: 100px;
    height: 100px;
    justify-content: start;
  }
  .cta-banner__content {
    text-align: left;
    padding: 0px 26px;
  }
  .cta-banner .cta-banner__text,
  .cta-banner .cta-banner__text a {
    font-size: 20px;
    line-height: 1.4;
  }

  .section-badge--light {
    padding-left: 16px;
  }
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.bold-card-text {
  font-weight: 700;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

.tdh-text {
  color: #FF00B7;
}

.tdh-subtitle {
  line-height: 100%;
  margin-bottom: 16px;
}

.section__badge {
  border-radius: 5px;
  padding: 5px 12px 3px 12px;
  margin-bottom: 1.5rem;

  .badge {
    padding: 0px;
    text-transform: capitalize;
    font-size: 20px;
  }
}

.hero__container .page_heading_mobile {
  display: none;

  @media (max-width: 768px) {
    display: block;
    color: var(--color-charcol, #1d2d3a);
    font-size: 16px;
    font-family: Agenda;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
  }
}

/* Video Transcript Section */
:root {
      --line-color: #ffffff;
      --background-color: #f0f0f0;
      --scrollbg-color: #000000;
      --scrollthumb-color: #333333;
}

.transcript-container {
    width: 100%;
    margin: 1.25rem 0 1.25rem auto;
    padding: 1rem 0;
}

.transcript-horizontal-line {
   width: 100%;
   height: 0.05rem;
   color: var(--line-color);
   border: 0.05rem solid var(--line-color);
}

.transcript-button-alignment {
    display: block;
    margin-left: auto;
    margin-right: 0;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background-color: var(--line-color);
    cursor: pointer;
    border: none;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 2rem;
    text-align: center;
    color: #000000;
    outline: none;
}

.transcript-button-alignment:after {
  content: "";
  position: absolute;
  inset: 0;
}

.transcript-button-alignment:focus-visible {
    outline: 2px solid #000;
    outline-offset: 3px;
}

.transcript-button-alignment.minus {
   font-size: 3.8rem;
   font-weight: 50;
   text-shadow: none;
   padding-bottom: 2.19rem;
}

.transcript-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.625rem;
    flex: 0 0 auto;
    color: var(--line-color);
    text-align: left;
    position: relative;
}

.transcript-text {
    display: none;
    margin-top: 1rem;
    text-align: left;
    color: var(--line-color);
    height: 300px;
    overflow-y: scroll;

    .isi-content {
      background-color: unset;

      h4 {
        color: var(--line-color);
      }
      a:not([class]) {
        color: var(--line-color);
        text-decoration: underline;
      }
    }
}

.transcript-text.active {
    display: block;
}

.transcript-text.active {
   display: block;
}

.transcript-text {
   display: none;
   margin-top: 0.5rem;
   margin-left: 0;
   overflow-y: auto;
   max-height: calc(100% - 1rem);
   flex: 1 1 auto;
   padding-right: 0.5rem;
   color: var(--line-color);
   scrollbar-width: auto;
   scrollbar-color: #000000 #f0f0f0;
   scrollbar-gutter: stable both-edges;
}

.transcript-text::-webkit-scrollbar {
   width: 1.2rem;
}

.transcript-text::-webkit-scrollbar-track {
   background: var(--background-color);
   border-radius: 1rem;
}

.transcript-text::-webkit-scrollbar-thumb {
   background-color: var(--scrollbg-color);
   border-radius: 1rem;
   border: 0.2rem solid #f0f0f0;
}

.transcript-text::-webkit-scrollbar-thumb:hover {
   background-color: var(--scrollthumb-color);
}

.transcript-text::-webkit-scrollbar-button {
   display: none;
   height: 0;
}

.transcript-title {
   font-weight: bold;
   color: #ffffff;
   text-align: left;
   font-size: 1.25rem;

}

.transcript-text p strong {
   color: #ffffff;
   font-weight: bold;
}

.transcript-text p {
   margin: 1rem 0;
   line-height: 1.5;
   display: block;
   color: #ffffff;
}

.video-and-transcript-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

@media (max-width: 768px) {
  .transcript-container {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding: 1rem;
    height: auto;
    max-height: 70vh;
    overflow-y: auto;
  }

  .transcript-text {
    margin-left: 0;
    max-height: 60vh;
    padding-right: 0.5rem;
  }

  .transcript-horizontal-line {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .transcript-title {
    font-size: 1.25rem;
  }
}

/* End of Video Transcript Section */

.section--primary .section__badge {
  background-color: var(--color-white) !important;
}
