/*!******************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./blocks/course-hero/style.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/*
 * Anything that pops: a drop-down, a popover, a panel that is there before it is
 * wanted. One pair of mixins for the whole theme, so a country list and a menu
 * arrive and leave the same way.
 *
 *   .panel          { @include popover; }
 *   .is-open .panel { @include popover-open; }
 *
 * Three decisions worth knowing before overriding any of it:
 *
 * `visibility` carries the exit. It is what keeps a closed panel out of the tab
 * order, and transitioning it means the panel stays on screen until the fade has
 * finished instead of vanishing on the first frame. `display: none` cannot do
 * that without `transition-behavior: allow-discrete`, which the W3C validator
 * still reports as an error.
 *
 * Leaving is quicker than arriving. The exit duration lives on the closed state
 * and the open state overrides it — a transition is read from the state being
 * moved *to*, so this is what makes the two directions differ without a second
 * selector.
 *
 * Only opacity and transform move, so neither direction costs layout.
 */
.course-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 5vw + 2rem, 6rem);
}

.course-hero__field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  pointer-events: none;
}

.course-hero__drift-glow {
  animation: course-hero-glow 10s ease-in-out infinite alternate;
}

.course-hero__mote {
  fill: var(--color-accent);
  opacity: 0.35;
}

.course-hero__mote--a {
  animation: course-hero-float-a 13s ease-in-out infinite;
}

.course-hero__mote--b {
  animation: course-hero-float-b 17s ease-in-out infinite;
}

.course-hero__mote--c {
  animation: course-hero-float-c 15s ease-in-out infinite;
}

.course-hero__inner {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 3vw + 1.6rem, 4rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .course-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.course-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.25rem;
  color: var(--color-accent);
  font-family: "IBM Plex Mono", "SFMono-Regular", consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.course-hero__eyebrow::before {
  content: "";
  width: 1.375rem;
  height: 1px;
  background: var(--color-accent-dark);
}

.course-hero__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 3.2vw + 1.54rem, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.course-hero__title em {
  color: var(--color-accent);
  font-style: italic;
}

.course-hero__lead {
  max-width: 37.5rem;
  margin: 0 0 2.25rem;
  color: var(--color-muted);
  font-size: clamp(1.0625rem, 0.25vw + 0.9875rem, 1.1875rem);
  line-height: 1.7;
}

.course-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.course-hero__button-wrap {
  position: relative;
  display: inline-flex;
}

.course-hero__cta {
  text-decoration: none;
}

.course-hero__sign {
  position: absolute;
  inset: auto 0.75rem 0.375rem;
  height: 0.625rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.course-hero__sign path {
  fill: none;
  stroke: var(--color-on-accent);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.course-hero__button-wrap:hover .course-hero__sign,
.course-hero__button-wrap:focus-within .course-hero__sign {
  opacity: 0.55;
}
.course-hero__button-wrap:hover .course-hero__sign path,
.course-hero__button-wrap:focus-within .course-hero__sign path {
  stroke-dashoffset: 0;
}

.course-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.course-hero__stat {
  font-family: "IBM Plex Mono", "SFMono-Regular", consolas, "Liberation Mono", monospace;
}
.course-hero__stat b {
  display: block;
  font-size: 1.5rem;
  color: var(--color-text);
  font-weight: 600;
}
.course-hero__stat span {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.course-hero__exhibit {
  position: relative;
  padding: 2.25rem 2rem;
  border-radius: var(--radius-sm);
  background: var(--color-paper);
  color: var(--color-paper-text);
  box-shadow: var(--shadow-lg);
}

.course-hero__orbit {
  position: absolute;
  top: -1.875rem;
  right: -1.875rem;
  width: 9.375rem;
  height: 9.375rem;
  pointer-events: none;
}

.course-hero__orbit-dash {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1;
  stroke-dasharray: 2 10;
  stroke-linecap: round;
  animation: course-hero-march 5s linear infinite;
}

.course-hero__orbit-dot-wrap {
  transform-origin: 75px 75px;
  animation: course-hero-spin 22s linear infinite;
}

.course-hero__orbit-dot {
  fill: var(--color-accent);
}

.course-hero__exhibit-label {
  margin: 0 0 1.25rem;
  color: var(--color-paper-muted);
  font-family: "IBM Plex Mono", "SFMono-Regular", consolas, "Liberation Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-hero__line {
  margin: 0;
  font-family: fraunces, georgia, "Times New Roman", serif;
  line-height: 1.5;
}

.course-hero__line-label {
  font-family: "IBM Plex Mono", "SFMono-Regular", consolas, "Liberation Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 0.5rem;
}

.course-hero__line--weak {
  margin-bottom: 1.75rem;
  color: var(--color-paper-muted);
  font-size: 1.125rem;
  text-decoration: line-through;
  text-decoration-color: var(--color-correction);
  text-decoration-thickness: 2px;
}
.course-hero__line--weak .course-hero__line-label {
  color: var(--color-correction);
}

.course-hero__line-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.course-hero__check {
  flex: none;
  width: 1.625rem;
  height: 1.625rem;
  margin-top: 0.25rem;
}
.course-hero__check circle {
  fill: none;
  stroke: var(--color-confirm);
  stroke-width: 1.4;
}
.course-hero__check path {
  fill: none;
  stroke: var(--color-confirm);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.course-hero__line--strong {
  color: var(--color-paper-text);
  font-size: 1.3125rem;
  font-weight: 500;
}
.course-hero__line--strong .course-hero__line-label {
  display: block;
  margin: 0 0 0.375rem;
  color: var(--color-confirm);
}

.course-hero__exhibit-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--color-paper-border);
  color: var(--color-paper-muted);
  font-family: "IBM Plex Mono", "SFMono-Regular", consolas, "Liberation Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
}

@keyframes course-hero-glow {
  0% {
    cx: 82%;
    cy: 8%;
  }
  100% {
    cx: 62%;
    cy: 26%;
  }
}
@keyframes course-hero-float-a {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(14px, -22px);
  }
}
@keyframes course-hero-float-b {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-18px, 16px);
  }
}
@keyframes course-hero-float-c {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, 20px);
  }
}
@keyframes course-hero-march {
  to {
    stroke-dashoffset: -24;
  }
}
@keyframes course-hero-spin {
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=block-course-hero.css.map*/