/* V8.4 post-launch art-direction concepts only. Canonical V8.4 pages do not load this file. */
.vr-photo-card {
  overflow: hidden;
  border: 1px solid rgba(26, 43, 60, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 18px rgba(26, 43, 60, .06);
}

.vr-photo-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.vr-photo-card__body {
  padding: 24px;
}

.vr-photo-card__body > :last-child {
  margin-bottom: 0;
}

.vr-icon {
  width: 26px;
  height: 26px;
  color: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 auto;
}

.vr-icon-disc {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale, #edf2eb);
  margin-bottom: 16px;
}

.vr-editorial-strip {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
  margin: 36px 0;
}

.vr-editorial-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
}

.vr-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vr-step {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(26, 43, 60, .1);
  background: #fff;
}

.vr-step img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vr-step__body {
  padding: 20px;
}

.vr-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.vr-ray-story {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 20px;
  align-items: stretch;
}

.vr-ray-story img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .vr-editorial-strip,
  .vr-ray-story {
    grid-template-columns: 1fr;
  }

  .vr-step-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vr-editorial-strip img {
    height: 230px;
  }

  .vr-ray-story img {
    min-height: 300px;
    max-height: 460px;
  }
}

@media (max-width: 600px) {
  .vr-step-grid {
    grid-template-columns: 1fr;
  }

  .vr-photo-card__body,
  .vr-step__body {
    padding: 20px;
  }

  .vr-editorial-strip img {
    height: 210px;
  }
}
