.film-article-detail {
  width: 100%;
  min-height: 100vh;
  background-color: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  padding: var(--space-6) 0 var(--space-7);
  box-sizing: border-box;
}

.film-article-detail .article-container {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-4);
  box-sizing: border-box;
}

.film-article-detail .back-nav {
  margin-bottom: var(--space-5);
}

.film-article-detail .back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: var(--text-label);
  transition: color 0.2s ease;
}

.film-article-detail .back-link:hover {
  color: var(--color-primary-strong);
}

.film-article-detail .article-entry {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.film-article-detail .article-header {
  margin-bottom: var(--space-6);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: var(--space-5);
}

.film-article-detail .article-meta-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-label);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.film-article-detail .article-category-tag {
  color: var(--color-primary-strong);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.film-article-detail .article-headline {
  font-family: var(--font-heading);
  font-size: var(--text-display);
  line-height: var(--leading-display, 1.2);
  margin: 0 0 var(--space-3);
  overflow-wrap: break-word;
}

.film-article-detail .article-perex-lead {
  font-size: var(--text-subtitle);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.film-article-detail .article-cover {
  width: 100%;
  max-height: 480px;
  margin-bottom: var(--space-6);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--surface-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.film-article-detail .article-cover img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.film-article-detail .article-cover-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: var(--space-6);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-subtle);
  background: var(--surface-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: var(--text-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-article-detail .article-body-content {
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--text);
  overflow-wrap: break-word;
}

.film-article-detail .article-body-content p {
  margin-bottom: var(--space-4);
}

.film-article-detail .article-body-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-title);
  margin: var(--space-5) 0 var(--space-2);
  color: var(--text);
}

.film-article-detail .article-body-content figure {
  margin: var(--space-5) 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.film-article-detail .article-body-content img {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  display: block;
  margin: var(--space-4) auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  box-sizing: border-box;
}

.film-article-detail .article-body-content figcaption {
  font-size: var(--text-label);
  color: var(--text-muted);
  margin-top: var(--space-2);
  text-align: center;
  font-family: var(--font-body);
  line-height: 1.4;
}

.film-article-detail .film-placeholder-box {
  border: 1px dashed var(--border-subtle);
  padding: var(--space-4);
  margin: var(--space-5) 0;
  background: var(--surface-card);
  text-align: center;
  color: var(--text-muted);
  font-size: var(--text-label);
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
}