/* Videos page layout and components. Every section uses editable core blocks. */

.lsh-videos-body .content-area {
  margin-bottom: 0;
  margin-top: 0;
}

.lsh-videos-body .entry-header,
.lsh-videos-body .entry-footer {
  display: none;
}

.lsh-videos-body .content-wrap,
.lsh-videos-body .site-main,
.lsh-videos-body .entry-content-wrap,
.lsh-videos-body article.page {
  padding: 0;
}

.lsh-videos-body .site-container,
.lsh-videos-body .content-container {
  max-width: none;
  padding: 0;
}

.lsh-videos-page {
  --lsh-videos-purple: #55206f;
  --lsh-videos-purple-deep: #351044;
  --lsh-videos-red: #b33138;
  --lsh-videos-cream: #f7f4ed;
  --lsh-videos-ink: #17212b;
  --lsh-videos-muted: #5f6872;
  --lsh-videos-white: #fff;
  color: var(--lsh-videos-ink);
  overflow: hidden;
}

.lsh-videos-page * {
  box-sizing: border-box;
}

.lsh-videos-page > * {
  margin-block: 0 !important;
}

.lsh-videos-page .wp-block-group {
  margin-block-start: 0;
}

.lsh-videos-shell {
  margin-inline: auto;
  max-width: 1220px;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  width: 100%;
}

.lsh-videos-hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.1) 0 9rem, transparent 9.1rem),
    radial-gradient(circle at 12% 90%, rgba(179, 49, 56, 0.34) 0 12rem, transparent 12.1rem),
    linear-gradient(135deg, var(--lsh-videos-purple-deep), var(--lsh-videos-purple));
  color: var(--lsh-videos-white);
  position: relative;
}

.lsh-videos-hero__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 465px;
  padding-block: clamp(5rem, 9vw, 7rem);
  position: relative;
  text-align: center;
  z-index: 1;
}

.lsh-videos-hero h1 {
  color: var(--lsh-videos-white);
  font-size: clamp(3rem, 7vw, 5.4rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
  max-width: 12ch;
  text-wrap: balance;
}

.lsh-videos-hero__copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
  margin: 1.5rem auto 0;
  max-width: 690px;
}

.lsh-videos-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.lsh-videos-button-row--center {
  justify-content: center;
}

.lsh-videos-button-row .wp-block-button__link {
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  min-width: 190px;
  padding: 0.92rem 1.45rem;
  text-align: center;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lsh-videos-button-row .wp-block-button__link:hover {
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.22);
  transform: translateY(-2px);
}

.lsh-videos-button--primary .wp-block-button__link {
  background: var(--lsh-videos-red);
  color: var(--lsh-videos-white);
}

.lsh-videos-button--light .wp-block-button__link {
  background: var(--lsh-videos-white);
  color: var(--lsh-videos-purple-deep);
}

.lsh-videos-button--outline .wp-block-button__link {
  background: transparent;
  border-color: currentColor;
  color: var(--lsh-videos-white);
}

.lsh-videos-section {
  background: var(--lsh-videos-cream);
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.lsh-videos-heading {
  color: var(--lsh-videos-purple-deep);
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 auto;
  text-wrap: balance;
}

.lsh-videos-lead {
  color: var(--lsh-videos-muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  margin: 1.25rem auto 0;
  max-width: 670px;
}

.lsh-videos-grid {
  align-items: stretch;
  display: grid;
  gap: 1.5rem;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(2.75rem, 5vw, 4.25rem);
}

.lsh-videos-card {
  background: var(--lsh-videos-white);
  border: 1px solid rgba(53, 16, 68, 0.1);
  border-radius: 24px;
  box-shadow: 0 20px 54px rgba(23, 33, 43, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow: hidden;
}

.lsh-videos-grid > .lsh-videos-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc((100% - 1.5rem) / 2);
}

.lsh-videos-card__embed,
.lsh-videos-card__preview,
.lsh-videos-card__embed iframe {
  aspect-ratio: 16 / 9;
  background: #110318;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.lsh-videos-card__preview {
  cursor: pointer;
  display: block;
}

.lsh-videos-card__preview img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: filter 180ms ease, transform 240ms ease;
  width: 100%;
}

.lsh-videos-card__preview:hover img,
.lsh-videos-card__preview:focus-visible img {
  filter: brightness(0.78);
  transform: scale(1.025);
}

.lsh-videos-card__play {
  background: var(--lsh-videos-red);
  border: 3px solid var(--lsh-videos-white);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  height: 4.4rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 180ms ease, transform 180ms ease;
  width: 4.4rem;
}

.lsh-videos-card__play::after {
  border-bottom: 0.72rem solid transparent;
  border-left: 1.05rem solid var(--lsh-videos-white);
  border-top: 0.72rem solid transparent;
  content: "";
  left: 53%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.lsh-videos-card__preview:hover .lsh-videos-card__play,
.lsh-videos-card__preview:focus-visible .lsh-videos-card__play {
  background: #c83840;
  transform: translate(-50%, -50%) scale(1.06);
}

.lsh-videos-card__embed iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.lsh-videos-card__body {
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.lsh-videos-card__number {
  align-items: center;
  background: var(--lsh-videos-red);
  border-radius: 50%;
  color: var(--lsh-videos-white);
  display: flex;
  font-size: 0.76rem;
  font-weight: 850;
  grid-column: 1;
  grid-row: 1;
  height: 2.35rem;
  justify-content: center;
  margin: 0.1rem 0 0 !important;
  width: 2.35rem;
}

.lsh-videos-card h3 {
  color: var(--lsh-videos-purple-deep);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  grid-column: 2;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
  padding-left: 0.85rem;
}

.lsh-videos-card__body > p:last-child {
  color: var(--lsh-videos-muted);
  grid-column: 1 / -1;
  line-height: 1.7;
  margin: 1rem 0 0;
}

.lsh-videos-final-cta {
  align-items: center;
  color: var(--lsh-videos-white);
  min-height: 0;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  padding-inline: 0;
}

.lsh-videos-final-cta > .wp-block-cover__background {
  background: linear-gradient(90deg, rgba(179, 49, 56, 0.96) 0%, rgba(179, 49, 56, 0.88) 48%, rgba(53, 16, 68, 0.82) 100%) !important;
  opacity: 1 !important;
}

.lsh-videos-final-cta > .wp-block-cover__image-background {
  object-position: center 38%;
}

.lsh-videos-final-cta > .wp-block-cover__inner-container {
  padding: 0;
  width: 100%;
}

.lsh-videos-final-cta__inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.lsh-videos-final-cta .lsh-videos-button-row {
  flex: 0 0 auto;
  margin-top: 0;
}

.lsh-videos-final-cta h2 {
  color: var(--lsh-videos-white);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  max-width: 17ch;
  text-wrap: balance;
}

@media (max-width: 760px) {
  .lsh-videos-hero__inner {
    min-height: 430px;
  }

  .lsh-videos-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .lsh-videos-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lsh-videos-grid > .lsh-videos-card:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .lsh-videos-card__body {
    padding: 1.35rem;
  }

  .lsh-videos-button-row {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 330px);
  }

  .lsh-videos-button-row .wp-block-button,
  .lsh-videos-button-row .wp-block-button__link {
    width: 100%;
  }

  .lsh-videos-final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .lsh-videos-final-cta .lsh-videos-button-row {
    flex-basis: auto;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lsh-videos-button-row .wp-block-button__link,
  .lsh-videos-card__preview img,
  .lsh-videos-card__play {
    transition: none;
  }
}
