.about-firm-videos {
  overflow: hidden;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.about-firm-videos__top {
  position: relative;
  background-color: var(--color-bg-dark);
}

.about-firm-videos__top-inner {
  position: relative;
  display: grid;
  width: min(1290px, calc(100% - var(--space-3xl)));
  min-height: 80vh;
  margin: 0 auto;
  padding: 96px 0 56px;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  align-items: center;
  gap: 68px;
}

.about-firm-videos__ring {
  position: absolute;
  left: -112px;
  top: 0;
  z-index: 0;
  width: 588px;
  height: 618px;
  color: #571211;
  pointer-events: none;
}

.about-firm-videos__ring svg {
  display: block;
  width: 100%;
  height: 100%;
}

.about-firm-videos__heading {
  position: relative;
  z-index: 1;
}

.about-firm-videos__title {
  display: flex;
  flex-direction: column;
  color: var(--color-text-light);
  font-family: var(--font-display);
  font-size: var(--fs-hero-title);
  font-weight: var(--fw-bold);
  line-height: 0.9;
  letter-spacing: 0;
}

.about-firm-videos__intro {
  position: relative;
  z-index: 1;
  width: min(740px, 100%);
  padding-left: var(--space-lg);
  border-left: 1px solid var(--color-primary);
  color: var(--color-bg-medium);
  font-family: var(--font-body);
  font-size: var(--fs-card-text);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  letter-spacing: 0;
}

.about-firm-videos__intro p {
  margin: 0;
}

.about-firm-videos__intro p + p {
  margin-top: var(--space-md);
  color: var(--color-text-light);
  font-size: var(--fs-section-text);
}

.about-firm-videos__video-band {
  background-color: var(--color-bg-dark);
}

.about-firm-videos__videos {
  display: grid;
  width: min(1290px, calc(100% - var(--space-3xl)));
  margin: 0 auto;
  padding: 0 0 96px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
}

.about-firm-videos__video-card {
  position: relative;
  min-height: 695px;
  overflow: hidden;
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  background-color: var(--color-bg-card);
}

.about-firm-videos__video,
.about-firm-videos__poster,
.about-firm-videos__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 695px;
  object-fit: cover;
}

.about-firm-videos__placeholder {
  background:
    radial-gradient(circle at 50% 35%, rgba(245, 242, 234, 0.16), rgba(245, 242, 234, 0) 38%),
    linear-gradient(135deg, rgba(220, 54, 16, 0.22), rgba(13, 13, 13, 0.2)),
    var(--color-bg-card);
}

.about-firm-videos__play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--color-text-light);
  border-radius: 4px;
  background: rgba(13, 13, 13, 0.18);
  color: var(--color-text-light);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    opacity var(--duration-fast) ease,
    transform var(--duration-fast) ease;
}

.about-firm-videos__play span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 17px solid currentColor;
}

.about-firm-videos__video-card.is-playing .about-firm-videos__play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.94);
}

@media (max-width: 1100px) {
  .about-firm-videos__top-inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: var(--space-3xl);
  }

  .about-firm-videos__title {
    font-size: var(--fs-hero-title);
  }

  .about-firm-videos__video-card,
  .about-firm-videos__video,
  .about-firm-videos__poster,
  .about-firm-videos__placeholder {
    min-height: 560px;
  }
}

@media (max-width: 768px) {
  .about-firm-videos__top-inner,
  .about-firm-videos__videos {
    width: calc(100% - var(--space-xl));
  }

  .about-firm-videos__top-inner {
    min-height: 0;
    padding: var(--space-4xl) 0 var(--space-2xl);
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .about-firm-videos__ring {
    left: -180px;
    top: 24px;
    width: 460px;
    height: auto;
  }

  .about-firm-videos__title {
    font-size: var(--fs-display-medium);
  }

  .about-firm-videos__intro {
    padding-left: var(--space-md);
  }

  .about-firm-videos__videos {
    padding-bottom: var(--space-4xl);
    grid-template-columns: 1fr;
  }

  .about-firm-videos__video-card,
  .about-firm-videos__video,
  .about-firm-videos__poster,
  .about-firm-videos__placeholder {
    min-height: 420px;
  }
}

@media (max-width: 360px) {
  .about-firm-videos__top-inner,
  .about-firm-videos__videos {
    width: calc(100% - var(--space-lg));
  }
}
