/* 黄豆短剧AI剧 · 电影杂志版
   01 基础 / 02 导航 / 03 轮播 / 04 片单 / 05 文章 / 06 页脚 / 07 响应式 */
:root {
  --ink: #14213c;
  --muted: #536078;
  --paper: #f4f6fa;
  --white: #ffffff;
  --line: #d6dde8;
  --blue: #234dcc;
  --night: #10203c;
  --yellow: #ffdb52;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font:
    16px/1.8 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Microsoft YaHei",
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--blue);
}
button,
input {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid #c18800;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
img {
  max-width: 100%;
}
.wrap {
  width: min(1440px, 100%);
  margin: auto;
  padding-inline: 40px;
}
h1,
h2,
h3 {
  line-height: 1.35;
  margin: 0 0 18px;
  overflow-wrap: anywhere;
}
h1 {
  font-size: clamp(30px, 3.3vw, 48px);
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(24px, 2.2vw, 32px);
}
h3 {
  font-size: 22px;
}
p {
  margin: 0 0 18px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--blue);
  margin-bottom: 14px;
}
.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--yellow);
  padding: 10px 20px;
}
.skip:focus {
  top: 8px;
}
/* 站点标识与主导航 */
header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-height: 108px;
}
.brand {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.3;
}
.brand b {
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  font-size: 30px;
  border-radius: 50%;
}
.brand b span {
  display: none;
}
.brand small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 7px;
  font-weight: 500;
}
#nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 25px;
  align-items: center;
}
#nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 3px solid transparent;
}
#nav a[aria-current="page"] {
  border-color: var(--blue);
  color: var(--blue);
}
.menu {
  display: none;
  min-width: 48px;
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
}
/* 独立三图轮播 */
.carousel {
  margin-top: 28px;
  background: var(--night);
  color: white;
  position: relative;
}
.carousel-stage,
.carousel-slide {
  min-height: 460px;
  position: relative;
}
.carousel-slide > img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}
.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 19, 39, 0.88), rgba(8, 19, 39, 0.15));
}
.slide-copy {
  position: relative;
  z-index: 1;
  padding: 60px 64px;
  max-width: 750px;
}
.slide-copy .eyebrow {
  color: var(--yellow);
}
.slide-copy .slide-title {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.25;
  font-weight: 800;
  margin: 12px 0 20px;
}
.slide-copy > p {
  color: #f2f4f8;
}
.button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--yellow);
  color: var(--ink);
  margin-top: 15px;
  font-weight: 700;
}
.button:hover {
  color: var(--ink);
  background: #ffe784;
}
.carousel-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 24px;
}
.carousel-controls button {
  color: white;
  background: transparent;
  border: 1px solid #66738b;
  min-width: 44px;
  min-height: 44px;
}
.carousel-controls button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-pause {
  padding: 0 16px;
}
.carousel-count {
  color: #dbe2ed;
  margin-left: 10px;
}
.carousel-note {
  color: #dbe2ed;
  font-size: 12px;
  padding: 0 24px 12px;
  margin: 0;
}
/* 正文 70% 与侧栏 30%，栏目与文章使用不同的留白 */
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  gap: 36px;
  align-items: start;
}
.primary-content {
  min-width: 0;
}
.sidebar {
  min-width: 0;
  padding-top: 44px;
}
.sidebox {
  background: var(--white);
  padding: 26px;
  margin-bottom: 24px;
  border-top: 3px solid var(--ink);
}
.sidebox h2 {
  font-size: 21px;
}
.sidebox p {
  color: var(--muted);
  font-size: 15px;
}
.sidebox a {
  display: block;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.article-toc {
  border-top-color: var(--blue);
}
.article-toc nav {
  display: block;
}
.edition-line {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.intro {
  padding: 30px 0;
}
.intro h1 {
  font-size: clamp(28px, 3vw, 43px);
}
.intro-content {
  display: flow-root;
}
.intro-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}
.intro-image {
  float: right;
  width: 160px;
  height: 120px;
  object-fit: cover;
  margin: 6px 0 14px 24px;
}
.genre-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: white;
  margin: 0 0 42px;
}
.genre-paths a {
  padding: 21px 16px;
  border-right: 1px solid var(--line);
}
.genre-paths a:last-child {
  border: 0;
}
.genre-paths span {
  font-size: 13px;
  color: var(--blue);
  display: block;
}
.genre-paths strong {
  display: block;
  font-size: 20px;
  margin: 5px 0;
}
.genre-paths small {
  display: block;
  font-size: 13px;
  color: var(--muted);
}
.home-section {
  margin: 46px 0;
}
.sectiontitle {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin: 0 0 22px;
}
.sectiontitle h2 {
  margin: 0;
}
.sectiontitle > a {
  font-size: 14px;
  color: var(--blue);
  white-space: nowrap;
}
.sectiontitle .eyebrow {
  margin-bottom: 8px;
}
.film-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.film-card {
  min-width: 0;
  background: white;
  border: 1px solid var(--line);
}
.film-cover {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  position: relative;
  padding: 24px 20px;
  color: white;
  overflow: hidden;
}
.film-cover:hover {
  color: white;
}
.cover-drama {
  background: #263762;
}
.cover-animation {
  background: #223b36;
}
.cover-poetry {
  background: #244bc1;
}
.cover-kind {
  font-size: 12px;
  letter-spacing: 0.12em;
  border-bottom: 1px solid #ffffff66;
  padding-bottom: 12px;
}
.film-cover strong {
  font-family: "Songti SC", "SimSun", "Noto Sans SC", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin: 24px 0 14px;
}
.cover-credit {
  font-size: 12px;
  margin-top: auto;
  padding-right: 28px;
}
.cover-index {
  position: absolute;
  right: 15px;
  bottom: 18px;
  color: #ffdb52;
  font:
    italic 25px Georgia,
    serif;
}
.film-info {
  padding: 20px;
}
.film-info h3 {
  font-size: 21px;
  margin: 9px 0 12px;
}
.film-info > p {
  font-size: 15px;
  color: var(--muted);
}
.film-info .film-tags {
  font-size: 12px;
  color: var(--blue);
}
.film-bottom {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 13px;
}
.film-bottom a {
  color: var(--blue);
}
.story-pair {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.story-pair .film-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pull-note {
  background: var(--yellow);
  padding: 25px;
}
.pull-note span {
  font-size: 13px;
}
.pull-note p {
  font-family: "Songti SC", "SimSun", "Noto Sans SC", serif;
  font-size: 27px;
  line-height: 1.6;
  margin: 25px 0;
}
.pull-note a {
  text-decoration: underline;
  font-size: 14px;
}
.editorial-feature {
  margin: 50px 0;
  background: var(--night);
  color: white;
}
.editorial-image img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.editorial-copy {
  padding: 32px;
}
.editorial-copy .eyebrow {
  color: var(--yellow);
}
.editorial-copy h2 {
  font-size: 36px;
}
.editorial-copy p {
  color: #d7e0ee;
}
.editorial-copy a {
  display: inline-block;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 6px;
  color: var(--yellow);
}
.poetry-panel {
  background: var(--blue);
  color: white;
  padding: 36px;
  margin: 50px 0;
}
.poetry-panel .eyebrow {
  color: var(--yellow);
}
.poetry-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  border-top: 1px solid #8caaef;
}
.poetry-links a {
  padding: 22px 15px 0 0;
  color: white;
}
.poetry-links span,
.poetry-links small {
  display: block;
  font-size: 13px;
  color: #e5edff;
}
.poetry-links strong {
  display: block;
  font-size: 23px;
  margin: 14px 0;
}
.reading-list > a {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.reading-list > a > span {
  color: var(--blue);
  font:
    italic 32px Georgia,
    serif;
}
.reading-list h3 {
  font-size: 22px;
  margin: 0 0 8px;
}
.reading-list p {
  color: var(--muted);
  margin: 0;
}
.reading-list b {
  font-size: 14px;
  white-space: nowrap;
  margin-left: auto;
}
/* 片库：静态内容优先，JS只增强筛选 */
.catalog-tools {
  padding: 26px;
  border: 1px solid var(--line);
  background: white;
  margin: 24px 0;
}
.catalog-tools label {
  display: block;
  font-weight: 600;
}
.catalog-tools input {
  display: block;
  width: 100%;
  padding: 12px 14px;
  margin-top: 12px;
  border: 1px solid #9eacc2;
  border-radius: 0;
}
.filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 12px;
}
.filter-buttons button {
  padding: 9px 14px;
  border: 1px solid var(--line);
  background: white;
  min-height: 44px;
}
.filter-buttons button[aria-pressed="true"] {
  background: var(--blue);
  color: white;
}
#filter-status {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.empty-state {
  padding: 40px 0;
}
.page-catalog .prose {
  max-width: none;
}
.collection-band {
  display: flex;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 35px 0;
}
.collection-band > span {
  font:
    64px/1 Georgia,
    serif;
  color: var(--blue);
}
.collection-band small {
  display: block;
  font: 13px/1.5 sans-serif;
}
.collection-band p {
  font-size: 20px;
  margin: 0;
}
.collection-band a {
  margin-left: auto;
  font-size: 14px;
  color: var(--blue);
}
.page-duanju .film-grid,
.page-animation .film-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
/* 文章与帮助 */
.breadcrumbs {
  padding: 24px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
}
.pagehead {
  padding: 35px 0;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 28px;
}
.pagehead > p:last-child {
  color: var(--muted);
  max-width: 760px;
}
.content-updated {
  color: var(--muted);
  font-size: 13px;
}
.prose {
  max-width: 850px;
  margin: 0 0 70px;
  font-size: 17px;
  line-height: 1.95;
}
.prose section {
  margin: 30px 0;
}
.prose h2 {
  margin: 32px 0 18px;
  scroll-margin-top: 30px;
}
.prose a:not(.film-cover) {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.prose .film-cover {
  text-decoration: none;
}
.prose p {
  overflow-wrap: break-word;
}
.table-scroll {
  width: 100%;
  overflow-x: auto;
  margin: 26px 0;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: white;
  font-size: 15px;
}
caption {
  text-align: left;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}
th,
td {
  border: 1px solid var(--line);
  padding: 15px;
  text-align: left;
  vertical-align: top;
}
thead {
  background: #e8eef9;
}
.source-note {
  border-top: 1px solid var(--line);
  padding-top: 15px;
  font-size: 14px;
}
.source-note h2 {
  font-size: 20px;
}
.related-reading {
  background: #e9eef8;
  padding: 25px;
}
.related-reading h2 {
  font-size: 23px;
  margin-top: 0;
}
.pair-links a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.identity-grid > div {
  background: white;
  border-top: 3px solid var(--blue);
  padding: 22px;
}
.identity-grid h3 {
  margin: 0 0 15px;
}
.identity-grid p {
  font-size: 15px;
}
.journal > a {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.journal > a > span {
  font-size: 13px;
  color: var(--blue);
}
.journal h3 {
  margin: 12px 0;
  font-size: 26px;
}
.journal p {
  color: var(--muted);
}
.note {
  margin: 28px 0;
  padding: 24px;
  background: white;
  border-left: 3px solid var(--blue);
}
.help-index {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.help-index a {
  min-height: 44px;
  padding: 10px 0;
}
/* 页脚 */
footer {
  margin-top: 45px;
  padding: 40px 0;
  background: var(--night);
  color: #d7dfec;
  font-size: 14px;
}
footer .brand {
  color: white;
}
footer a:hover {
  color: var(--yellow);
}
.footrow {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 23px;
  max-width: 850px;
}
.footer-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}
footer p {
  margin: 18px 0;
}
.muted {
  border-top: 1px solid #45526a;
  margin-top: 24px;
  padding-top: 20px;
}
.copyright-refresh {
  display: block;
  font-size: 12px;
}
.accent {
  color: var(--yellow);
}
/* 平板与移动端 */
@media (max-width: 1150px) {
  .wrap {
    padding-inline: 25px;
  }
  .top {
    flex-wrap: wrap;
    padding-block: 20px;
    gap: 18px;
  }
  #nav {
    gap: 7px 20px;
  }
  .content-layout {
    gap: 24px;
  }
  .film-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .story-pair {
    display: block;
  }
  .pull-note {
    margin-top: 18px;
  }
  .pull-note p {
    font-size: 24px;
    margin: 15px 0;
  }
}
@media (max-width: 850px) {
  .content-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding-top: 0;
  }
  .sidebox {
    margin: 0;
  }
  .article-toc {
    grid-column: 1 / -1;
  }
  .footrow {
    flex-direction: column;
    gap: 18px;
  }
  .slide-copy {
    padding: 45px 32px;
  }
  .film-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .film-info {
    padding: 16px;
  }
}
@media (max-width: 650px) {
  .wrap {
    padding-inline: 18px;
  }
  .top {
    min-height: 88px;
  }
  .brand {
    font-size: 19px;
  }
  .brand b {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }
  .brand small {
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .menu {
    display: block;
    margin-left: auto;
  }
  #nav {
    width: 100%;
    gap: 4px 19px;
  }
  body.js #nav {
    display: none;
  }
  body.js #nav.open {
    display: flex;
  }
  .carousel {
    margin-top: 18px;
  }
  .carousel-stage,
  .carousel-slide {
    min-height: 370px;
  }
  .slide-copy {
    padding: 32px 23px;
  }
  .slide-copy .slide-title {
    font-size: 38px;
  }
  .carousel-slide > img {
    object-position: 60% center;
  }
  .carousel-controls {
    padding: 12px;
    gap: 7px;
  }
  .carousel-count {
    display: none;
  }
  .genre-paths {
    grid-template-columns: 1fr;
  }
  .genre-paths a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px;
  }
  .genre-paths span {
    float: right;
  }
  .genre-paths strong {
    font-size: 20px;
  }
  .intro-image {
    width: 125px;
    height: 100px;
    margin-left: 15px;
  }
  .film-grid,
  .page-duanju .film-grid,
  .page-animation .film-grid,
  .story-pair .film-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .film-cover {
    padding: 18px 14px;
    min-height: 215px;
  }
  .film-cover strong {
    font-size: 27px;
  }
  .film-info {
    padding: 14px;
  }
  .film-info h3 {
    font-size: 20px;
  }
  .film-info > p {
    font-size: 14px;
  }
  .film-bottom {
    flex-wrap: wrap;
  }
  .sectiontitle {
    align-items: start;
    flex-wrap: wrap;
  }
  .sectiontitle h2 {
    font-size: 25px;
  }
  .editorial-copy {
    padding: 25px;
  }
  .editorial-copy h2 {
    font-size: 30px;
  }
  .poetry-panel {
    padding: 26px 22px;
  }
  .poetry-links {
    grid-template-columns: 1fr;
  }
  .poetry-links a {
    border-bottom: 1px solid #8caaef;
    padding: 20px 0;
  }
  .poetry-links strong {
    font-size: 24px;
    margin: 6px 0;
  }
  .reading-list > a {
    gap: 15px;
  }
  .reading-list h3 {
    font-size: 21px;
  }
  .reading-list b {
    display: none;
  }
  .sidebar,
  .identity-grid {
    grid-template-columns: 1fr;
  }
  .collection-band {
    flex-wrap: wrap;
    gap: 16px;
  }
  .collection-band a {
    margin-left: 0;
  }
  .prose {
    font-size: 16px;
  }
  th,
  td {
    padding: 10px;
    min-width: 95px;
  }
  .pagehead {
    padding: 25px 0;
  }
}
@media (max-width: 370px) {
  .film-grid,
  .page-duanju .film-grid,
  .page-animation .film-grid,
  .story-pair .film-grid {
    grid-template-columns: 1fr;
  }
  .intro-image {
    float: none;
    width: 100%;
    height: 150px;
    margin: 0 0 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* 原诗与正文播放来源 */
.poem-text {
  padding: 1.4rem 1.6rem;
  margin: 1.2rem 0;
  background: #f3f5f9;
  border-left: 3px solid #e4bc4f;
  font-family: "Songti SC", "SimSun", serif;
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
  line-height: 2;
}
.poem-text p {
  margin: 0;
}
.watch-entry {
  margin: 0 0 1.5rem;
}
.watch-entry a {
  display: inline-block;
  padding: 0.7rem 1rem;
  background: #142c50;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}
.watch-entry a:hover {
  background: #264b7c;
}

/* 作品资料、人物关系、诗词注释各用适合内容的排版。 */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  margin: 0 0 2rem;
  background: #dce2eb;
}
.fact-grid > div {
  padding: 1rem;
  background: #fff;
}
.fact-grid dt {
  color: #64748b;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.fact-grid dd {
  margin: 0;
  font-weight: 600;
  line-height: 1.7;
}
.character-list {
  margin: 1rem 0;
}
.character-list > div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid #dce2eb;
}
.character-list dt {
  font-weight: 700;
  color: #173759;
}
.character-list dd {
  margin: 0;
  line-height: 1.9;
}
.glossary > div {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #dce2eb;
}
.glossary dt {
  font-weight: 700;
}
.glossary dd {
  margin: 0;
  line-height: 1.8;
}
.spoiler {
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid #dce2eb;
}
.spoiler summary {
  cursor: pointer;
  font-weight: 600;
  line-height: 1.7;
}
.spoiler[open] summary {
  margin-bottom: 1rem;
}
.topic-list {
  margin: 2.5rem 0;
}
.topic-list article {
  padding: 1.3rem 0;
  border-bottom: 1px solid #dce2eb;
}
.topic-list h3 {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0.25rem 0 0.55rem;
}
.topic-list p {
  color: #5d6d82;
  line-height: 1.9;
}
.series-note {
  border-top: 2px solid #173759;
  padding: 1.8rem 0;
  margin-top: 2rem;
}
.series-note p {
  line-height: 1.9;
  margin: 1rem 0;
}
.sidebar small {
  display: block;
  color: #65758b;
  margin-top: 0.5rem;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .fact-grid {
    grid-template-columns: 1fr;
  }
  .fact-grid > div {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 1rem;
  }
  .fact-grid dt {
    margin-bottom: 0;
  }
  .character-list > div {
    grid-template-columns: 4.5rem 1fr;
    gap: 0.8rem;
  }
  .poetry-links small {
    white-space: normal;
    line-height: 1.8;
  }
}
.work-credit {
  padding: 1.15rem 1.2rem 0;
  margin: 0;
  color: #65758b;
  font-size: .8rem;
  line-height: 1.8;
}
.film-card { border-top: 3px solid #243c68; }
.film-card h3 { font-size: 1.5rem; line-height: 1.45; }
.film-info { padding-top: .8rem; }
