.video {
  padding: var(--pa-space-3xl) var(--pa-gutter);
}
.video__container {
  max-width: var(--pa-container-max);
  margin-inline: auto;
}
.video__intro {
  margin-bottom: var(--pa-space-lg);
  color: var(--pa-color-navy);
}
.video__heading {
  font-family: "Ancizar Serif", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .video__heading {
    font-size: 2.125rem;
  }
}
.video__heading {
  margin: 0 0 var(--pa-space-md);
}
.video__body {
  font-family: "Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.35;
}
.video__body > :last-child {
  margin-bottom: 0;
}
.video__panel {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 10px 160px 10px 10px;
  background: var(--pa-color-navy);
}
@media (min-width: 1024px) {
  .video__panel {
    aspect-ratio: 1280/612;
  }
}
.video__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.video__overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(14, 47, 78, 0.05), rgba(14, 47, 78, 0.18));
  pointer-events: none;
}
.video__panel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1.5rem;
  width: 38%;
  max-width: 420px;
  aspect-ratio: 829/461;
  background: url("../../images/video-swoop.svg") no-repeat center/contain;
  pointer-events: none;
}
.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.video__play a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: var(--pa-radius-pill);
  background: var(--pa-color-white);
  box-shadow: 0 8px 24px rgba(14, 47, 78, 0.25);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.video__play a:hover, .video__play a:focus-visible {
  transform: scale(1.06);
  background: var(--pa-color-light-bg);
}
@media (min-width: 1024px) {
  .video__play a {
    width: 7rem;
    height: 7rem;
  }
}
.video .video-play {
  display: block;
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  border-style: solid;
  border-width: 0.85rem 0 0.85rem 1.4rem;
  border-color: transparent transparent transparent var(--pa-color-navy);
}
