.scenario-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 250px 250px;
  gap: 18px;
  width: var(--content-w);
  margin: 112px auto 92px;
}

.scenario {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  color: #fff;
  background: #ddd;
  text-align: left;
}

.scenario img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.scenario:hover img {
  transform: scale(1.035);
}

.scenario::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 32, 41, 0.05) 34%, rgba(20, 32, 41, 0.62) 100%);
}

.scenario span {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 30px;
  color: #fff;
  font-size: clamp(25px, 2.9vw, 40px);
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.34);
}

.scenario.modern {
  grid-row: 1 / span 2;
  grid-column: 2;
}
