:root {
  color-scheme: dark;
  --bar: #071321;
  --ink: #f4faff;
  --muted: #a8b8c8;
  --cyan: #74e4f5;
  --warn: #ffcb66;
  --danger: #ff8095;
}

* { box-sizing: border-box; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html,
body { width: 100%; height: 100%; margin: 0; overflow: hidden; }

body {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  color: var(--ink);
  background: var(--bar);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
}

.review-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 62px;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(7, 19, 33, .98);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
}

.review-shell__back {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.review-shell__copy {
  min-width: 0;
  text-align: center;
}

.review-shell__copy strong {
  display: block;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-shell__copy span {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-shell__status {
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--danger);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .07em;
  white-space: nowrap;
}

.review-shell__status--warn { color: var(--warn); }

iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

@media (max-width: 700px) {
  .review-shell {
    grid-template-columns: auto 1fr;
    gap: 6px 12px;
    min-height: 76px;
    padding: 9px 12px;
  }

  .review-shell__copy { grid-column: 1 / -1; grid-row: 2; text-align: left; }
  .review-shell__copy strong { font-size: 11px; }
  .review-shell__copy span { font-size: 9px; }
  .review-shell__status { justify-self: end; font-size: 9px; }
}
