:root {
  --bg: #0b0e12;
  --bg-elevated: #12171f;
  --bg-soft: #161c26;
  --ink: #f3f0ea;
  --muted: #9aa3b2;
  --line: rgba(243, 240, 234, 0.1);
  --accent: #ff3b2f;
  --accent-soft: #ff6a4d;
  --steel: #6f8fad;
  --ok: #3dd68c;
  --radius: 0;
  --wrap: min(1180px, calc(100% - 2.5rem));
  --header-h: 4.25rem;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(111, 143, 173, 0.18), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(255, 59, 47, 0.12), transparent 50%),
    linear-gradient(180deg, #0d1118 0%, var(--bg) 40%, #090b0f 100%);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.wrap.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(11, 14, 18, 0.78);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: var(--wrap);
  margin-inline: auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 2;
}

.brand-mark {
  width: 0.85rem;
  height: 0.85rem;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 59, 47, 0.55);
  animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 59, 47, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(255, 59, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 47, 0); }
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 1.6vw, 1.5rem);
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  overflow: hidden;
}

.lang-btn {
  min-width: 2.4rem;
  min-height: 2.25rem;
  padding: 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}

.lang-btn + .lang-btn {
  border-left: 1px solid var(--line);
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.is-active {
  background: var(--accent);
  color: #fff;
}

.live-clock {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--steel);
  font-variant-numeric: tabular-nums;
}

.refresh-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: transform 0.4s var(--ease), border-color 0.2s;
}

.refresh-btn:hover {
  border-color: var(--accent);
}

.refresh-btn.is-spinning {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Ticker */
.ticker {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: rgba(18, 23, 31, 0.92);
  overflow: hidden;
}

.ticker-label {
  flex: 0 0 auto;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  padding: 0.65rem 0.9rem;
  display: grid;
  place-items: center;
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  padding-inline: 1rem;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-track a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.9;
}

.ticker-track a:hover {
  color: var(--accent-soft);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero — full bleed, brand first */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media-scale {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-media-scale {
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: kenburns 18s var(--ease) infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.16) translate3d(-1.5%, -1%, 0); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.35) 0%, rgba(8, 10, 14, 0.15) 35%, rgba(8, 10, 14, 0.82) 72%, rgba(8, 10, 14, 0.96) 100%),
    linear-gradient(90deg, rgba(8, 10, 14, 0.55) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4.5rem) 0 clamp(2.5rem, 7vw, 5rem);
  max-width: 52rem;
  justify-self: start;
  margin-inline: max(calc((100% - min(1180px, calc(100% - 2.5rem))) / 2), 1.25rem);
}

.hero-brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.1s forwards;
}

.hero-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.25s forwards;
}

.hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.4vw, 2.55rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 18ch;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.4s forwards;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: rgba(243, 240, 234, 0.86);
  max-width: 38rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.55s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.7s forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #ff5248;
}

.btn-analisi {
  min-height: 3.6rem;
  padding: 1rem 1.85rem;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 28px rgba(255, 59, 47, 0.35);
}

#fs-wait-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-items: center;
  background: #0b0e12;
  color: #f3f0ea;
  text-align: center;
  padding: 2rem;
}

html.is-fs-lock,
body.is-fs-lock {
  overflow: hidden !important;
  touch-action: none;
  overscroll-behavior: none;
}

html.is-fs-lock,
html.is-fs-lock body {
  width: 100%;
  height: 100%;
}

#fs-wait-overlay.is-next {
  padding: 0;
  display: block;
  background: #000;
}

#fs-wait-overlay iframe#next-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.fs-wait-brand {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1.35rem;
}

.fs-wait-count {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
}

.fs-wait-inner h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
}

.fs-wait-inner p:last-of-type {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.fs-wait-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.fs-wait-bar > span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  animation: fs-fill 3s linear forwards;
}

@keyframes fs-fill {
  to { width: 100%; }
}

.btn-ghost {
  border-color: rgba(243, 240, 234, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  border-color: #fff;
}

/* Hero article */
.hero-article {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(22, 28, 38, 0.65), transparent);
}

.kicker {
  margin: 0 0 0.75rem;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-article h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.25;
}

.byline {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.prose p {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  color: rgba(243, 240, 234, 0.92);
}

.source-note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

/* Sections */
.section {
  padding: clamp(2.75rem, 6vw, 4.75rem) 0;
}

.section-alt {
  background: rgba(18, 23, 31, 0.55);
  border-block: 1px solid var(--line);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.75rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-head.light h2,
.section-head.light p {
  color: #fff;
}

/* Featured */
.featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
}

.story-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.25s;
  min-height: 100%;
}

.story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 59, 47, 0.45);
}

.story-card.is-lead {
  min-height: 420px;
}

.story-card.is-lead .card-media {
  flex: 1;
  min-height: 260px;
}

.card-media {
  aspect-ratio: 16 / 10;
  background: #1a2230 center/cover no-repeat;
  position: relative;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.35));
  opacity: 0;
  transition: opacity 0.3s;
}

.story-card:hover .card-media::after {
  opacity: 1;
}

.card-body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.story-card.is-lead .card-title {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.featured-side {
  display: grid;
  gap: 1.25rem;
}

.featured-side .story-card {
  flex-direction: row;
  min-height: 0;
}

.featured-side .card-media {
  width: 42%;
  aspect-ratio: auto;
  min-height: 100%;
  flex-shrink: 0;
}

.featured-side .card-body {
  padding: 1rem 1.05rem;
}

.featured-side .card-title {
  font-size: 0.95rem;
}

.featured-side .card-desc {
  -webkit-line-clamp: 2;
}

/* Story grids */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.story-grid .story-card.no-image .card-media {
  display: none;
}

.story-grid .story-card.no-image {
  background:
    linear-gradient(145deg, rgba(255, 59, 47, 0.08), transparent 40%),
    var(--bg-elevated);
}

/* Photo rail */
.photo-section {
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.2), rgba(8, 10, 14, 0.7)),
    #0a0c10;
}

.photo-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 28vw);
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.photo-rail::-webkit-scrollbar {
  height: 6px;
}

.photo-rail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}

.photo-item {
  position: relative;
  scroll-snap-align: start;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
}

.photo-item .card-media {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  transition: transform 0.6s var(--ease);
}

.photo-item:hover .card-media {
  transform: scale(1.06);
}

.photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 0.9rem 0.9rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

/* Latest list */
.latest-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  border-top: 1px solid var(--line);
}

.latest-list li {
  border-bottom: 1px solid var(--line);
}

.latest-list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  transition: color 0.2s;
}

.latest-list a:hover {
  color: var(--accent-soft);
}

.latest-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  min-width: 5.5rem;
}

.latest-title {
  font-weight: 600;
  font-size: 0.98rem;
}

.latest-time {
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.load-more {
  display: block;
  margin: 0 auto;
  min-width: 12rem;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
  background: #07090c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.footer-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 36ch;
}

.footer-label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a,
.footer-source {
  color: var(--muted);
}

.footer-links a:hover,
.footer-source:hover {
  color: var(--ink);
}

.copyright {
  width: var(--wrap);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.skeleton {
  background: linear-gradient(90deg, #151a22 25%, #1d2430 50%, #151a22 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s linear infinite;
  min-height: 8rem;
}

@keyframes shimmer {
  to { background-position: -200% 0; }
}

/* Tablet */
@media (max-width: 980px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-side {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    justify-self: center;
  }

  .site-nav.is-open {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 14, 18, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0 1rem;
  }

  .site-nav.is-open a {
    padding: 0.85rem 1.25rem;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: min(88vh, 780px);
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --wrap: calc(100% - 1.5rem);
    --header-h: 3.75rem;
  }

  .hero-content {
    margin-inline: 0.75rem;
    max-width: none;
  }

  .hero-title {
    max-width: none;
  }

  .featured-side {
    grid-template-columns: 1fr;
  }

  .featured-side .story-card {
    flex-direction: column;
  }

  .featured-side .card-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .latest-list a {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .latest-time {
    order: -1;
  }

  .photo-rail {
    grid-auto-columns: minmax(78vw, 1fr);
  }

  .ticker-track {
    animation-duration: 55s;
  }

  .live-clock {
    display: none;
  }

  .header-meta {
    gap: 0.45rem;
  }

  .lang-btn {
    min-width: 2.15rem;
    min-height: 2.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media-scale {
    transform: none;
  }
}

/* Article page */
.btn-back {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  padding: 0.45rem 0.2rem;
  white-space: nowrap;
  transition: color 0.2s;
}

.btn-back:hover {
  color: var(--ink);
}

.article-page {
  padding-top: 1.5rem;
}

.article-shell {
  padding-block: clamp(1.5rem, 4vw, 3rem) 2rem;
}

.article-status {
  color: var(--muted);
  font-size: 1rem;
}

.article-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.article-figure {
  margin: 1.5rem 0 1.25rem;
  border: 1px solid var(--line);
  overflow: hidden;
}

.article-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.article-lead {
  margin: 0 0 1.5rem;
  font-size: 1.12rem;
  color: rgba(243, 240, 234, 0.88);
  font-weight: 500;
  line-height: 1.55;
}

.page-article .prose p {
  font-size: 1.08rem;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .btn-back {
    font-size: 0.75rem;
  }
}
