.htm-journal-prose {
  width: 100%;
  color: #454a5c;
  font-family: var(--bde-body-font-family, "Hanken Grotesk", sans-serif);
  font-size: 17px;
  line-height: 1.75;
}

.htm-journal-prose > :not(figure):not(.yt),
.htm-journal-prose > ul,
.htm-journal-prose > ol {
  width: min(720px, 100%);
  margin-inline: auto;
}

.htm-journal-prose p {
  margin-block: 0 1.25em;
  text-wrap: pretty;
}

.htm-journal-prose > .lead {
  color: #1c1f2e;
  font-size: clamp(17.9px, 1.35vw, 19.5px);
  font-weight: 500;
  line-height: 1.65;
}

.htm-journal-prose h2,
.htm-journal-prose h3,
.htm-journal-prose h4 {
  color: #1c1f2e;
  font-family: var(--bde-heading-font-family, "Gabarito", sans-serif);
  letter-spacing: -.01em;
  text-wrap: balance;
}

.htm-journal-prose h2 {
  margin-block: 1.9em .65em;
  font-size: clamp(22.4px, 2.1vw, 27.2px);
  font-weight: 700;
  line-height: 1.22;
}

.htm-journal-prose h3,
.htm-journal-prose h4 {
  margin-block: 1.7em .55em;
  font-size: clamp(18.2px, 1.6vw, 20.5px);
  font-weight: 600;
  line-height: 1.3;
}

.htm-journal-prose strong,
.htm-journal-prose b {
  color: #1c1f2e;
  font-weight: 700;
}

.htm-journal-prose ul,
.htm-journal-prose ol {
  margin-block: .35em 1.45em;
  padding-inline-start: 1.35em;
}

.htm-journal-prose li {
  margin-block: .5em;
  padding-inline-start: .2em;
}

.htm-journal-prose li::marker {
  color: #e08700;
}

.htm-journal-prose a {
  color: #24409a;
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.htm-journal-prose figure {
  width: min(1026px, 100%);
  margin: clamp(32px, 5vw, 52px) auto;
}

.htm-journal-prose figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  object-fit: cover;
}

.htm-journal-prose figcaption {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  color: #6b7186;
  font-size: 13.8px;
  line-height: 1.5;
}

.htm-journal-prose figcaption::before {
  width: 18px;
  height: 2px;
  flex: none;
  background: #f5a623;
  content: "";
}

.htm-journal-prose .yt {
  position: relative;
  width: min(1026px, 100%);
  margin: clamp(34px, 5vw, 56px) auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #16295f;
  color: #fff;
}

.htm-journal-prose .yt::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 41, 95, .18), rgba(13, 23, 58, .72));
  content: "";
  pointer-events: none;
}

.htm-journal-prose .yt > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .85;
  object-fit: cover;
}

.htm-journal-prose .yt__btn {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: 700 14px/1.3 var(--bde-body-font-family, "Hanken Grotesk", sans-serif);
}

.htm-journal-prose .yt__btn .play {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: #f5a623;
  color: #1c1f2e;
  transition: background-color .2s cubic-bezier(.22, 1, .36, 1), transform .2s cubic-bezier(.22, 1, .36, 1);
}

.htm-journal-prose .yt__btn:hover .play {
  transform: scale(1.06);
  background: #e08700;
}

.htm-journal-prose .yt__btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.htm-journal-prose .yt__note {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 14px;
  left: 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 11.8px;
  line-height: 1.45;
  text-align: center;
  pointer-events: none;
}

.htm-journal-prose .yt iframe {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.htm-journal-prose :focus-visible {
  outline: 3px solid #f5a623;
  outline-offset: 2px;
}

@media (max-width: 680px) {
  .htm-journal-prose {
    font-size: 16px;
    line-height: 1.72;
  }

  .htm-journal-prose figure,
  .htm-journal-prose .yt {
    margin-block: 30px;
  }

  .htm-journal-prose .yt__btn .play {
    width: 58px;
    height: 58px;
  }

  .htm-journal-prose .yt__note {
    bottom: 9px;
    font-size: 10.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .htm-journal-prose .yt__btn .play {
    transition-duration: .001ms;
  }
}

