.reading-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 3px;
  background: transparent;
}
.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  transition: width .08s linear;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, .82fr);
  gap: 22px;
  padding-block: 22px 40px;
  align-items: start;
}
.article-card,
.article-sidebar .sidebar-module,
.related-section,
.article-commercial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.article-card { overflow: hidden; }
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 28px 0;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
}
.breadcrumbs a:hover { color: var(--red); }
.article-header { padding: 22px 28px 18px; }
.article-header h1 {
  max-width: 930px;
  margin: 13px 0 12px;
  color: var(--navy);
  font-family: "Libre Franklin", Inter, sans-serif;
  font-size: clamp(2.15rem, 4.1vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.article-spot {
  max-width: 900px;
  margin: 0 0 22px;
  color: #344054;
  font-size: clamp(1.03rem, 1.55vw, 1.28rem);
  line-height: 1.55;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.author-photo { width: 42px; height: 42px; font-size: .8rem; }
.article-byline strong { color: var(--navy); font-size: .9rem; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  color: var(--muted);
  font-size: .76rem;
  margin-top: 2px;
}
.article-meta span { position: relative; }
.article-meta span::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #98a2b3;
  left: -10px;
  top: .55em;
}
.article-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.share-tools { display: flex; align-items: center; gap: 8px; }
.share-tools > span { color: var(--muted); font-size: .78rem; font-weight: 700; margin-right: 2px; }
.tool-button,
.save-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.tool-button:hover,
.save-button:hover { border-color: var(--navy); background: var(--soft); }
.save-button { gap: 7px; padding-inline: 13px; border-radius: 8px; }
.save-button[aria-pressed="true"] { color: var(--red); border-color: rgba(215,25,32,.35); background: rgba(215,25,32,.05); }
.action-status { min-height: 18px; margin: 7px 0 0; color: var(--muted); font-size: .76rem; }
.article-hero { margin: 0; padding: 0 28px; }
.article-hero-image { aspect-ratio: 16 / 8.5; border-radius: 11px; }
.article-hero figcaption { padding: 8px 0 0; color: var(--muted); font-size: .72rem; }
.article-body {
  padding: 22px 28px 14px;
  color: #202938;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.25vw, 1.22rem);
  line-height: 1.78;
}
.article-body p { margin: 0 0 1.15em; }
.article-body .article-lead { color: #111827; font-size: 1.13em; line-height: 1.68; }
.article-body h2 {
  margin: 1.45em 0 .42em;
  color: var(--navy);
  font-family: Inter, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -.02em;
}
.key-points {
  float: right;
  width: min(42%, 360px);
  margin: .25em 0 1.1em 1.4em;
  padding: 18px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: 10px;
  background: var(--soft);
  font-family: Inter, sans-serif;
}
.key-points h2 { margin: 0 0 10px; font-size: 1rem; }
.key-points ul { list-style: none; padding: 0; margin: 0; }
.key-points li { position: relative; padding: 8px 0 8px 22px; border-top: 1px solid #e3e8ef; font-size: .82rem; line-height: 1.45; }
.key-points li:first-child { border-top: 0; }
.key-points li::before { content: "✓"; position: absolute; left: 0; color: var(--navy-3); font-weight: 800; }
.article-body blockquote {
  clear: both;
  margin: 1.8em 0;
  padding: 25px 28px 24px 68px;
  position: relative;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #f4f7fb, #eef2f7);
  color: var(--navy);
  font-family: Inter, sans-serif;
}
.article-body blockquote::before {
  content: "“";
  position: absolute;
  left: 22px;
  top: 3px;
  color: var(--navy-3);
  font-family: Georgia, serif;
  font-size: 4.6rem;
  line-height: 1;
}
.article-body blockquote p { margin: 0; font-size: 1.15rem; font-weight: 700; line-height: 1.5; }
.article-body blockquote cite { display: block; margin-top: 10px; color: var(--muted); font-size: .78rem; font-style: normal; }
.article-footer { padding: 16px 28px 28px; }
.article-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.article-tags > span { color: var(--muted); font-size: .8rem; font-weight: 700; }
.article-tags a { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; font-size: .74rem; font-weight: 700; }
.article-correction { display: flex; justify-content: space-between; gap: 10px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.article-correction a { color: var(--blue-link); font-weight: 700; }
.article-sidebar { display: grid; gap: 18px; position: sticky; top: 92px; }
.sidebar-module { padding: 17px; overflow: hidden; }
.compact-live-list li { grid-template-columns: 45px 1fr; padding: 10px 0; }
.popular-list { list-style: none; margin: 0; padding: 0; }
.popular-list li { display: grid; grid-template-columns: 28px 1fr; gap: 8px; align-items: center; padding: 10px 0; border-top: 1px solid var(--line); }
.popular-list li > span { color: var(--navy); font-size: 1.3rem; font-weight: 800; }
.popular-list a { display: grid; grid-template-columns: 72px 1fr; gap: 9px; align-items: center; }
.popular-list strong { font-size: .8rem; line-height: 1.3; }
.mini-media-placeholder { aspect-ratio: 16 / 10; border-radius: 6px; background: linear-gradient(135deg, #203c6d, #8997aa); }
.sidebar-media-card { position: relative; display: grid; gap: 8px; }
.sidebar-media-card strong { color: var(--navy); font-size: .94rem; }
.sidebar-media-card .meta { position: absolute; right: 7px; top: 42%; background: #000; color: #fff; padding: 3px 5px; border-radius: 4px; }
.sidebar-play { position: absolute; left: 50%; top: 32%; transform: translate(-50%, -50%); width: 46px; height: 46px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; background: rgba(7,26,61,.76); color: #fff; }
.podcast-mini-card { padding: 16px; border-radius: 10px; color: #fff; background: linear-gradient(145deg, var(--navy), var(--navy-3)); }
.podcast-mini-card > strong { display: block; margin: 8px 0 16px; font-size: .92rem; }
.related-section { grid-column: 1; padding: 18px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.related-card h3 { margin: 5px 0; color: var(--navy); font-size: .9rem; line-height: 1.28; }
.article-commercial { grid-column: 2; padding: 18px; border-style: dashed; background: #fcfcfd; }
.article-commercial-card { display: grid; gap: 12px; }
.article-commercial-card h3 { margin: 8px 0 5px; color: var(--navy); font-size: 1rem; }
.article-commercial-card p { margin: 0; color: var(--muted); font-size: .82rem; }
.article-newsletter { grid-column: 1 / -1; }

@media (max-width: 1080px) {
  .article-layout { grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .article-layout { grid-template-columns: 1fr; padding-top: 14px; }
  .article-card,
  .article-sidebar,
  .related-section,
  .article-commercial,
  .article-newsletter { grid-column: 1; }
  .article-sidebar { position: static; grid-row: auto; }
  .article-header h1 { font-size: clamp(2rem, 9.4vw, 3.35rem); }
  .breadcrumbs { padding: 14px 20px 0; }
  .article-header,
  .article-body,
  .article-footer { padding-left: 20px; padding-right: 20px; }
  .article-hero { padding: 0 20px; }
  .article-hero-image { aspect-ratio: 16 / 10; }
  .article-tools { align-items: flex-start; }
  .share-tools > span { display: none; }
  .key-points { float: none; width: 100%; margin: 1.2em 0; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .article-card { border-radius: 10px; }
  .breadcrumbs { font-size: .7rem; }
  .article-header { padding-top: 18px; }
  .article-header h1 { font-size: 2.12rem; line-height: 1.05; }
  .article-spot { font-size: .98rem; }
  .article-byline { align-items: flex-start; }
  .article-meta { display: grid; gap: 2px; }
  .article-meta span::before { display: none; }
  .article-tools { gap: 8px; }
  .tool-button { min-width: 34px; height: 34px; }
  .save-button { width: 34px; min-width: 34px; height: 34px; padding: 0; }
  .save-button span { display: none; }
  .article-body { font-size: 1.04rem; line-height: 1.72; }
  .article-body blockquote { padding: 22px 20px 20px 52px; }
  .article-body blockquote::before { left: 14px; font-size: 3.8rem; }
  .article-body blockquote p { font-size: 1rem; }
  .article-correction { display: grid; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card a { display: grid; grid-template-columns: 118px 1fr; gap: 10px; align-items: start; padding-top: 10px; border-top: 1px solid var(--line); }
  .related-card .media-placeholder { grid-row: 1 / span 3; }
  .related-card .eyebrow { margin-top: 0; }
  .related-card h3 { margin: 1px 0; }
}
