.big-text-heading {
  background-color: #000;
  padding-top: 6vh;
  padding-bottom: 6vh;
}

.big-text-heading .film-strip-track {
  justify-content: flex-start;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
}

.big-text-heading .film-strip {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.big-text-heading .film-strip__frame {
  display: block;
  height: clamp(220px, 28vw, 340px);
  width: auto;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

@media screen and (max-width: 767px) {
  .big-text-heading {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .big-text-heading .film-strip__frame {
    height: clamp(160px, 42vw, 220px);
  }
}
