:root {
  --bg: #04070b;
  --bg-2: #08101a;
  --panel: rgba(9, 15, 24, 0.72);
  --panel-2: rgba(10, 17, 28, 0.6);
  --border: rgba(238, 244, 255, 0.08);
  --border-strong: rgba(238, 244, 255, 0.14);
  --text: #eef2f6;
  --muted: rgba(238, 242, 246, 0.72);
  --muted-2: rgba(238, 242, 246, 0.56);
  --blue: #28a4ff;
  --blue-2: #0b67d6;
  --cyan: #77ddff;
  --violet: #9f7cff;
  --pink: #ff7fc7;
  --gold: #ffcf59;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(40, 164, 255, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(159, 124, 255, 0.1), transparent 26%),
    radial-gradient(circle at 60% 88%, rgba(0, 116, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #04070b 0%, #0a121c 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-shell {
  width: 100%;
  margin: 0;
  padding: 22px clamp(18px, 2.5vw, 40px) 36px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: max-content;
}

.brand__wordmark {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--text);
}

.brand__tag {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: rgba(238, 242, 246, 0.58);
  margin-left: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav__link {
  position: relative;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(238, 242, 246, 0.86);
  padding: 6px 0;
  opacity: 0.82;
  transition: opacity 160ms ease, color 160ms ease;
}

.main-nav__link:hover,
.main-nav__link.is-active {
  opacity: 1;
  color: #38b5ff;
}

.main-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #2aa8ff 10%, #2aa8ff 90%, transparent 100%);
  box-shadow: 0 0 12px rgba(42, 168, 255, 0.65);
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: rgba(245, 248, 251, 0.92);
  padding: 0;
  cursor: pointer;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-layout {
  display: block;
  margin-top: 18px;
}

.hero-card,
.trending-panel,
.topic-card,
.latest-panel,
.signup-panel,
.social-panel {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(11, 18, 30, 0.95), rgba(6, 12, 20, 0.96));
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 66vh, 760px);
  border-radius: 18px;
  border: 1px solid rgba(238, 244, 255, 0.08);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 38%, rgba(255, 206, 124, 0.22), transparent 12%),
    radial-gradient(circle at 68% 38%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(90deg, rgba(2, 6, 12, 0.9) 0%, rgba(2, 6, 12, 0.5) 28%, rgba(2, 6, 12, 0.1) 56%, rgba(2, 6, 12, 0.24) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-card__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(8, 18, 34, 0.16), transparent 30%),
    radial-gradient(circle at 70% 34%, rgba(255, 184, 94, 0.12), transparent 20%);
  z-index: 2;
}

.hero-copy {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 3vw, 48px);
  top: clamp(108px, 15vh, 180px);
  width: min(460px, calc(100% - 72px));
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 1200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.section-kicker,
.eyebrow {
  margin: 0;
  color: #2aa8ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker {
  margin-bottom: 10px;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.7rem, 3.9vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.hero-text {
  margin: 12px 0 0;
  max-width: 30ch;
  font-size: 0.94rem;
  line-height: 1.72;
  color: rgba(238, 242, 246, 0.88);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 18px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid #2aa8ff;
  color: #2aa8ff;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(8, 23, 38, 0.28);
}

.cta span {
  font-size: 1.35em;
  line-height: 1;
}

.hero-visual {
  pointer-events: none;
}

.hero-card__overlay {
  z-index: 2;
}

.hero-copy {
  z-index: 3;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(238, 244, 255, 0.1);
  background: rgba(4, 8, 14, 0.24);
  color: rgba(238, 242, 246, 0.88);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-control:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: rgba(42, 168, 255, 0.4);
  background: rgba(4, 8, 14, 0.46);
}

.hero-control--prev {
  left: 14px;
}

.hero-control--next {
  right: 14px;
}

.hero-pagination {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-pagination button {
  display: block;
  appearance: none;
  border: 0;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: rgba(238, 242, 246, 0.24);
  padding: 0;
  cursor: pointer;
}

.hero-pagination .is-current {
  background: rgba(238, 242, 246, 0.96);
  width: 24px;
}

.trending-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 14px 2px 14px;
  border-top: 1px solid rgba(238, 244, 255, 0.07);
  border-bottom: 1px solid rgba(238, 244, 255, 0.07);
}

.trending-strip__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: #2aa8ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trending-strip__bolt {
  font-size: 1rem;
  line-height: 1;
  color: #2aa8ff;
}

.trending-strip__track {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1 1 auto;
  padding-bottom: 2px;
}

.trending-strip__track::-webkit-scrollbar {
  display: none;
}

.trending-strip__item {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  min-width: max-content;
  color: rgba(245, 248, 251, 0.92);
}

.trending-strip__section {
  color: #7fdcff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trending-strip__title {
  color: rgba(238, 242, 246, 0.84);
  font-size: 0.84rem;
}

.trending-strip__sep {
  color: rgba(238, 242, 246, 0.28);
  flex: 0 0 auto;
}

.panel-head h2,
.section-head h2,
.signup-panel h2,
.social-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.eyebrow--small {
  font-size: 0.72rem;
  margin-bottom: 4px;
}

.topic-row {
  counter-reset: topic;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid rgba(238, 244, 255, 0.07);
  border-bottom: 1px solid rgba(238, 244, 255, 0.07);
}

.topic-card {
  position: relative;
  min-height: 130px;
  padding: 20px 16px 16px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(238, 244, 255, 0.07);
  box-shadow: none;
  transition: background 180ms ease, transform 180ms ease;
}

.topic-card:first-child {
  border-left: 0;
}

.topic-card::before {
  counter-increment: topic;
  content: counter(topic, decimal-leading-zero);
  position: absolute;
  top: 12px;
  right: 12px;
  color: rgba(238, 242, 246, 0.34);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.topic-card:hover {
  background: rgba(10, 18, 30, 0.26);
  transform: translateY(-2px);
}

.topic-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.1rem, 1.45vw, 1.7rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 10ch;
}

.topic-card p {
  margin: auto 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(238, 242, 246, 0.6);
  max-width: 22ch;
}

.topic-card__icon {
  display: none;
}

.topic-card__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topic-card__arrow {
  display: none;
}

.topic-card--blue {
  color: #2aa8ff;
}

.topic-card--cyan {
  color: #79ddff;
}

.topic-card--violet {
  color: #b496ff;
}

.topic-card--pink {
  color: #ff86ca;
}

.topic-card--gold {
  color: #ffd55d;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 34px;
}

.latest-panel {
  grid-column: 1 / -1;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(238, 244, 255, 0.07);
}

.section-nav {
  display: flex;
  gap: 8px;
}

.section-nav button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(238, 244, 255, 0.08);
  background: transparent;
  color: rgba(238, 242, 246, 0.82);
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.article-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  min-height: 220px;
  background: rgba(8, 14, 22, 0.36);
  border: 1px solid rgba(238, 244, 255, 0.07);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.article-card:hover {
  border-color: rgba(83, 220, 212, 0.28);
  transform: translateY(-2px);
}

.article-card__media {
  position: absolute;
  inset: 0;
}

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

.article-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 4, 8, 0.02) 0%, rgba(1, 4, 8, 0.12) 35%, rgba(1, 4, 8, 0.72) 100%),
    linear-gradient(135deg, rgba(17, 41, 67, 0.08), transparent 42%);
  z-index: 1;
}

.article-card__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 18px 16px;
}

.article-card__copy h3 {
  margin: 6px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.article-card__meta {
  margin: 0;
  color: rgba(238, 242, 246, 0.54);
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.article-card:nth-child(1) {
  grid-column: 1 / span 6;
  grid-row: 1 / span 2;
  min-height: 430px;
}

.article-card:nth-child(2) {
  grid-column: 7 / span 3;
  grid-row: 1;
  min-height: 205px;
}

.article-card:nth-child(3) {
  grid-column: 10 / span 3;
  grid-row: 1;
  min-height: 205px;
}

.article-card:nth-child(4) {
  grid-column: 7 / span 6;
  grid-row: 2;
  min-height: 205px;
}

.footer-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.55fr);
  gap: 20px;
  margin-top: 26px;
  padding: 18px 0 4px;
  border-top: 1px solid rgba(238, 244, 255, 0.07);
}

.footer-band__newsletter,
.footer-band__social {
  min-width: 0;
}

.footer-band__newsletter {
  max-width: 480px;
}

.footer-band__label {
  margin: 0 0 8px;
  color: #2aa8ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-band__text {
  margin: 0;
  color: rgba(238, 242, 246, 0.74);
  line-height: 1.6;
  max-width: 30ch;
}

.footer-band__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  max-width: 520px;
}

.footer-band__form input {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(238, 244, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 0 14px;
}

.footer-band__form input::placeholder {
  color: rgba(238, 242, 246, 0.44);
}

.footer-band__form button {
  height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(42, 168, 255, 0.48);
  border-radius: 10px;
  background: transparent;
  color: #2aa8ff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-band__links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.footer-band__social {
  justify-self: end;
  text-align: right;
}

.footer-band__links {
  justify-content: flex-end;
}

.footer-band__links a {
  color: rgba(238, 242, 246, 0.82);
}

@media (max-width: 1280px) {
  .topic-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .latest-grid {
    grid-template-columns: 1fr;
  }

  .article-card:nth-child(1),
  .article-card:nth-child(2),
  .article-card:nth-child(3),
  .article-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .footer-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero-card {
    min-height: 560px;
  }

  .topic-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .latest-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-card {
    min-height: 240px;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: 100%;
    padding: 16px 14px 24px;
  }

  .main-nav {
    gap: 12px;
  }

  .main-nav__link {
    font-size: 0.84rem;
  }

  .hero-card {
    min-height: 560px;
  }

  .hero-copy {
    left: 18px;
    top: 96px;
    width: calc(100% - 36px);
  }

  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .hero-control {
    width: 32px;
    height: 32px;
    font-size: 1.4rem;
  }

  .hero-control--prev {
    left: 12px;
  }

  .hero-control--next {
    right: 12px;
  }

  .trending-item {
    grid-template-columns: 22px 98px 1fr;
  }

  .topic-row,
  .latest-grid {
    grid-template-columns: 1fr;
  }

  .topic-row {
    border-left: 1px solid rgba(134, 191, 255, 0.12);
    border-right: 1px solid rgba(134, 191, 255, 0.12);
  }

  .trending-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .trending-strip__track {
    width: 100%;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

.article-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 22px clamp(16px, 2.4vw, 28px) 48px;
}

.article-layout {
  margin-top: 28px;
}

.reading-column {
  width: min(100%, 680px);
  margin: 0 auto;
}

.reading-hero {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(238, 244, 255, 0.08);
}

.reading-hero h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--text);
}

.reading-meta {
  margin: 0.85rem 0 0;
  color: rgba(238, 242, 246, 0.56);
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.reading-media {
  margin: 0 0 2rem;
}

.reading-media img {
  width: 100%;
  display: block;
  border-radius: 0;
}

.reading-deck {
  margin: 0 0 3rem;
  color: rgba(238, 242, 246, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.reading-summary,
.reading-source,
.reading-related {
  margin-bottom: 3rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(238, 244, 255, 0.08);
}

.reading-summary h2,
.reading-source h2,
.reading-related h2 {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
  color: rgba(238, 242, 246, 0.92);
}

.reading-summary__list {
  display: grid;
  gap: 1.25rem;
}

.reading-summary__item {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(238, 244, 255, 0.06);
}

.reading-summary__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.reading-summary__item h3 {
  margin: 0 0 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  color: rgba(238, 242, 246, 0.94);
}

.reading-summary__item p,
.reading-section p,
.reading-source p {
  margin: 0;
  color: rgba(238, 242, 246, 0.76);
  line-height: 1.6;
  font-size: 0.98rem;
}

.reading-body {
  display: grid;
  gap: 0;
}

.reading-section {
  padding: 0 0 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(238, 244, 255, 0.08);
  scroll-margin-top: 24px;
}

.reading-section h2 {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.12;
  color: rgba(238, 242, 246, 0.95);
}

.reading-section p + p {
  margin-top: 1rem;
}

.reading-quote {
  margin: 2rem 0 0;
  padding-left: 1.5rem;
  border-left: 2px solid #333;
}

.reading-quote p {
  margin: 0;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(238, 242, 246, 0.84);
}

.reading-source p + p {
  margin-top: 0.6rem;
}

.reading-source a {
  color: #6fdede;
}

.reading-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.reading-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(238, 244, 255, 0.08);
  color: rgba(238, 242, 246, 0.64);
  font-size: 0.82rem;
}

.reading-related__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reading-related__item {
  display: block;
}

.reading-related__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  margin-bottom: 0.8rem;
}

.reading-related__item h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  line-height: 1.35;
  color: rgba(238, 242, 246, 0.92);
}

@media (max-width: 1280px) {
  .article-shell {
    width: min(100%, 860px);
  }

  .reading-column {
    width: min(100%, 680px);
  }

  .reading-related__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .article-shell {
    width: min(100% - 18px, 980px);
    padding-top: 14px;
  }

  .reading-column {
    width: min(100%, 680px);
  }

  .reading-related__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .article-shell {
    width: min(100% - 16px, 980px);
  }

  .reading-hero h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .reading-meta {
    font-size: 0.72rem;
  }

  .reading-summary,
  .reading-source,
  .reading-related,
  .reading-section {
    margin-bottom: 2.25rem;
    padding-bottom: 1rem;
  }

  .reading-deck,
  .reading-summary__item p,
  .reading-section p,
  .reading-source p {
    font-size: 0.96rem;
  }

  .reading-related__list {
    gap: 0.85rem;
  }

  .reading-related__item img {
    margin-bottom: 0.6rem;
  }
}
