.article-hero,
.article-shell {
  display: grid;
  gap: 18px;
}

.article-hero {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(232, 93, 4, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,251,244,0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.article-hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 78, 105, 0.12), transparent 68%);
}

.article-hero__media {
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.12), rgba(26, 26, 46, 0.06));
  border-radius: var(--radius-sm);
  padding: 18px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.article-hero__cover {
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  overflow: hidden;
  opacity: 0.42;
}

.article-hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

.article-hero__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(34, 24, 18, 0.12));
  position: relative;
  z-index: 1;
}

.article-hero__copy,
.article-hero__media {
  min-width: 0;
}

/* Keep detail-page titles compact and avoid oversized headings from global rules. */
.article-hero h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.12;
}

.article-main h2 {
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  line-height: 1.3;
  margin-bottom: 8px;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  color: var(--secondary);
}

.article-play-btn {
  margin-top: 12px;
}

.article-shell {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  margin-top: 20px;
}

.article-main,
.sidebar-panel,
.playable-block,
.rating-panel,
.verdict-panel,
.community-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-main {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,252,247,0.96));
}

.article-section + .article-section {
  margin-top: 20px;
  padding-top: 6px;
}

.faq-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.85;
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pros-box,
.cons-box {
  border-radius: var(--radius-sm);
  padding: 18px;
}

.pros-box {
  background: rgba(36, 92, 58, 0.08);
  border: 1px solid rgba(36, 92, 58, 0.2);
}

.cons-box {
  background: rgba(143, 51, 43, 0.08);
  border: 1px solid rgba(143, 51, 43, 0.18);
}

.pros-box ul,
.cons-box ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.playable-block,
.rating-panel,
.verdict-panel,
.community-panel,
.sidebar-panel {
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.playable-block::before,
.rating-panel::before,
.verdict-panel::before,
.community-panel::before,
.sidebar-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(240, 180, 93, 0.24), transparent);
}

.embed-shell {
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(26, 26, 46, 0.12), rgba(232, 93, 4, 0.08)),
    radial-gradient(circle at center, rgba(255,255,255,0.25), transparent 60%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
}

.embed-shell iframe {
  min-height: 360px;
}

.rating-row,
.key-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(220, 207, 190, 0.75);
}

.rating-row span:first-child,
.key-list strong {
  color: var(--primary);
}

.rating-row:last-child,
.key-list li:last-child {
  border-bottom: 0;
}

.key-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.key-list span {
  color: var(--muted);
}

.related-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.related-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(220, 207, 190, 0.75);
  background: rgba(255, 255, 255, 0.72);
  min-height: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.related-card:hover {
  background: rgba(247, 239, 229, 0.78);
  border-color: rgba(232, 93, 4, 0.24);
  transform: translateX(2px);
}

.related-card__media {
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1;
  background: var(--surface-strong);
  border-radius: 12px;
  overflow: hidden;
}

.related-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card__body {
  min-width: 0;
}

.related-card__body h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
  line-height: 1.3;
}

.related-card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

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

.stat-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.stat-grid strong {
  display: block;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .article-hero,
  .article-shell,
  .split-panel,
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .article-hero {
    padding: 14px;
    border-radius: 16px;
  }

  .article-main {
    padding: 14px;
  }

  .article-hero h1,
  .article-lead,
  .review-meta span,
  .review-meta strong {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .article-hero h1 {
    font-size: clamp(1.55rem, 7.2vw, 2rem);
    line-height: 1.16;
    margin-bottom: 10px;
  }

  .review-meta {
    gap: 8px;
  }

  .article-play-btn {
    width: 100%;
    margin-top: 10px;
  }
}
