/* Shared frame for the September releases; the original screenshots stay intact. */
.release-visual {
  box-sizing: border-box;
  padding: 4%;
  background: #161719;
  background-image: repeating-linear-gradient(125deg, transparent 0 3px, rgb(255 255 255 / 0.012) 3px 4px);
  border: 1px solid #292b2e;
  border-radius: 8px;
}

.release-visual-heading {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  text-align: left;
}

.release-visual-heading span {
  color: #a6a7ab;
  font-size: 12px;
  line-height: 1.4;
}

.release-visual-heading strong {
  color: #f5f5f3;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.3;
}

.release-visual-screen {
  overflow: hidden;
  border: 1px solid #737579;
  border-radius: 6px;
  background: #fff;
}

.release-visual .release-visual-screen img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.release-visual--preview {
  display: flex;
  flex-direction: column;
  aspect-ratio: 16 / 9;
  gap: 10px;
}

.release-visual--preview .release-visual-heading {
  flex: 0 0 auto;
  gap: 4px;
  margin: 0;
}

.release-visual--preview .release-visual-heading strong {
  font-size: clamp(16px, 2vw, 24px);
}

.release-visual--preview .release-visual-screen {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  border: 0;
  background: transparent;
}

.release-visual--preview .release-visual-screen img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center 65%;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .release-visual-heading {
    gap: 5px;
    margin-bottom: 12px;
  }

  .release-visual-heading span {
    font-size: 10px;
  }

  .release-visual--preview {
    gap: 8px;
  }
}
