:root {
  --paper: #f6f2ee;
  --paper-shadow: rgba(40, 29, 23, 0.18);
  --ink: #424040;
  --ink-soft: #6b6460;
  --accent: #d64543;
  --line: #7b7571;
  --muted-line: #d0cbc6;
  --banner-bg: #ebe7e3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 248, 238, 0.85) 0%, rgba(240, 231, 221, 0.22) 26%, transparent 52%),
    linear-gradient(180deg, rgba(109, 91, 74, 0.1), rgba(109, 91, 74, 0.02)),
    repeating-linear-gradient(0deg, rgba(118, 99, 80, 0.045) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(118, 99, 80, 0.03) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, #e8dfd3 0%, #ddd3c7 48%, #d1c7bc 100%);
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
}

.page-shell {
  padding: 28px 18px;
}

.newspaper-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 20px 22px 22px;
  border: 1px solid rgba(133, 116, 100, 0.2);
  background:
    radial-gradient(circle at 0 0, rgba(142, 120, 101, 0.12), transparent 16%),
    radial-gradient(circle at 100% 0, rgba(142, 120, 101, 0.08), transparent 18%),
    radial-gradient(circle at 0 100%, rgba(142, 120, 101, 0.07), transparent 16%),
    radial-gradient(circle at 100% 100%, rgba(142, 120, 101, 0.12), transparent 18%),
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.7), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(194, 173, 152, 0.16), transparent 22%),
    linear-gradient(180deg, #f7f3ef 0%, #f1ebe4 58%, #eee7df 100%);
  box-shadow:
    0 24px 56px rgba(40, 29, 23, 0.2),
    0 3px 0 rgba(119, 98, 84, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -14px 24px rgba(137, 114, 95, 0.08),
    inset 12px 0 18px rgba(146, 125, 106, 0.05),
    inset -12px 0 18px rgba(146, 125, 106, 0.05);
}

.newspaper-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.75;
  background:
    radial-gradient(circle at 12% 18%, rgba(116, 97, 80, 0.08) 0 1px, transparent 1.5px 100%),
    radial-gradient(circle at 74% 24%, rgba(116, 97, 80, 0.06) 0 1px, transparent 1.5px 100%),
    radial-gradient(circle at 34% 76%, rgba(116, 97, 80, 0.06) 0 1px, transparent 1.5px 100%),
    radial-gradient(circle at 88% 82%, rgba(116, 97, 80, 0.05) 0 1px, transparent 1.5px 100%),
    repeating-linear-gradient(0deg, rgba(124, 105, 88, 0.035) 0 2px, transparent 2px 6px),
    repeating-linear-gradient(90deg, rgba(124, 105, 88, 0.025) 0 2px, transparent 2px 8px);
  mix-blend-mode: multiply;
}

.newspaper-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120px 26px at 50% 0, rgba(143, 123, 104, 0.09), transparent 72%),
    radial-gradient(90px 18px at 18% 100%, rgba(143, 123, 104, 0.08), transparent 70%),
    radial-gradient(90px 18px at 82% 100%, rgba(143, 123, 104, 0.08), transparent 70%),
    linear-gradient(90deg, rgba(151, 132, 114, 0.08), transparent 3%, transparent 97%, rgba(151, 132, 114, 0.08)),
    linear-gradient(180deg, rgba(151, 132, 114, 0.06), transparent 3%, transparent 97%, rgba(151, 132, 114, 0.08)),
    linear-gradient(90deg, transparent 0, transparent 47.8%, rgba(122, 108, 96, 0.12) 49.5%, rgba(255, 255, 255, 0.18) 50.4%, transparent 52.2%),
    linear-gradient(180deg, transparent 0, transparent 68%, rgba(148, 132, 116, 0.08) 72%, transparent 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 12%, transparent 88%, rgba(110, 94, 81, 0.06));
}

.newspaper-card > * {
  position: relative;
  z-index: 1;
}

.paper-header {
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}

.edition-date {
  margin: 0;
  padding-bottom: 4px;
  border-bottom: 3px solid var(--line);
  color: #4e4a48;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-strip {
  display: inline-block;
  margin: 14px 0 8px;
  padding: 6px 12px;
  background: linear-gradient(180deg, #f0e7df 0%, #e8ddd4 100%);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.paper-title {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.8rem, 13vw, 7.8rem);
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: -0.045em;
}

.paper-title-red {
  color: var(--accent);
}

.paper-title-dark {
  color: var(--ink);
}
span.of {
    font-size: clamp(3rem, 9vw, 6rem);
}
.paper-subtitle {
  margin: 6px 0 14px;
  color: #5e5752;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.headline-bar {
  margin-bottom: 16px;
  padding: 6px 10px 8px;
  border-top: 3px solid var(--line);
  border-bottom: 3px solid var(--line);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.78fr 2.36fr;
  gap: 14px;
}

.sidebar-column {
  display: grid;
  gap: 10px;
}

.sidebar-card {
  padding: 10px 8px 12px;
  border-bottom: 3px solid var(--muted-line);
}

.sidebar-kicker {
  display: inline-block;
  margin: 0 0 8px;
  padding: 6px 8px;
  background: #dea7692e;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.sidebar-card h2 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.12;
  font-weight: 700;
}

.sidebar-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.58;
}

.sidebar-photo-card {
  border-bottom: 0;
}

.sidebar-photo {
  position: relative;
  height: 180px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #d8d4d0;
}

.sidebar-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  object-fit: cover;
  filter: grayscale(0.18) sepia(0.14) contrast(0.94);
}

.sidebar-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 64px;
  background: linear-gradient(180deg, rgba(105, 79, 62, 0), rgba(81, 61, 48, 0.58));
}

.sidebar-photo-figure {
  position: absolute;
  bottom: 0;
  border-radius: 46% 46% 0 0;
}

.sidebar-photo-figure-left {
  left: 12px;
  width: 74px;
  height: 122px;
  background: linear-gradient(180deg, #f1e0c9 0%, #cb9775 42%, #7f614d 100%);
  transform: rotate(-7deg);
}

.sidebar-photo-figure-right {
  right: 20px;
  width: 82px;
  height: 136px;
  background: linear-gradient(180deg, #f4dcc2 0%, #a66746 38%, #6d4a39 100%);
  transform: rotate(9deg);
}

.main-column {
  display: grid;
  gap: 14px;
}

.hero-headline {
  margin: 2px 0 12px;
  max-width: 94%;
  font-size: clamp(2.3rem, 4.5vw, 3.5rem);
  line-height: 1.06;
  font-weight: 800;
}

.hero-headline span {
  color: var(--accent);
}

.hero-image {
  position: relative;
  height: 430px;
  opacity: 0.8;
  overflow: hidden;
  border: 1px solid #9e8d7f;
  background: #2f221c;
  filter: saturate(0.86) contrast(0.96) sepia(0.12);
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrong-site-stamp {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 10px 16px;
  border: 4px solid rgba(161, 27, 27, 0.85);
  color: rgba(161, 27, 27, 0.9);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  transform: rotate(-9deg);
  background: rgba(247, 235, 227, 0.32);
}

.domain-duel {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 3;
  display: grid;
  gap: 10px;
}

.domain-chip {
  display: flex;
  align-items: center;
  min-width: 240px;
  overflow: hidden;
  border: 2px solid rgba(246, 235, 225, 0.65);
  box-shadow: 0 10px 22px rgba(15, 10, 9, 0.22);
  backdrop-filter: blur(3px);
}

.chip-letter {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.chip-text {
  padding: 0 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.domain-chip-wrong {
  position: relative;
  background: rgba(58, 33, 28, 0.82);
  color: #f4ebe4;
}

.domain-chip-wrong .chip-letter {
  background: rgba(214, 69, 67, 0.95);
  color: #fff2ef;
}

.domain-chip-wrong::after {
  content: "";
  position: absolute;
  inset: 50% 14px auto 14px;
  border-top: 5px solid rgba(255, 221, 215, 0.9);
  transform: rotate(-8deg);
  transform-origin: center;
}

.domain-chip-right {
  margin-left: 34px;
  background: rgba(244, 239, 234, 0.92);
  color: #3c3734;
}

.domain-chip-right .chip-letter {
  background: #2f2c2a;
  color: #f7efe9;
}

.domain-chip-right::before {
  content: "CORRECT";
  position: absolute;
  top: -10px;
  right: 10px;
  padding: 4px 8px;
  background: #d64543;
  color: #fff8f5;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(34, 25, 20, 0.08) 0%, rgba(34, 25, 20, 0.02) 48%, rgba(21, 16, 13, 0.14) 100%);
}

.hero-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 136px;
  background:
    linear-gradient(180deg, rgba(43, 31, 24, 0), rgba(24, 18, 15, 0.72));
}

.sky-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 24%, rgba(255, 247, 228, 1) 0, rgba(255, 228, 154, 0.96) 10%, rgba(255, 181, 88, 0.84) 22%, rgba(255, 120, 48, 0.58) 34%, transparent 52%);
  mix-blend-mode: screen;
}

.fire-column {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50% 50% 26% 26%;
}

.fire-core {
  top: 18px;
  width: 210px;
  height: 292px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 245, 0.96), rgba(255, 225, 145, 0.92) 18%, rgba(255, 173, 67, 0.84) 42%, rgba(236, 99, 31, 0.74) 66%, transparent 84%);
  filter: blur(2px);
}

.fire-halo {
  top: -22px;
  width: 336px;
  height: 340px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 247, 211, 0.9), rgba(255, 183, 95, 0.74) 20%, rgba(250, 135, 39, 0.5) 42%, rgba(145, 56, 16, 0.16) 66%, transparent 78%);
  filter: blur(10px);
}

.rubble-layer {
  position: absolute;
  bottom: 0;
  width: 185px;
  height: 180px;
  background: linear-gradient(180deg, #3c2d25 0%, #1c1512 100%);
}

.rubble-left {
  left: 0;
  clip-path: polygon(0 30%, 46% 2%, 88% 14%, 100% 100%, 0 100%);
}

.rubble-right {
  right: 0;
  clip-path: polygon(18% 12%, 62% 0, 100% 28%, 100% 100%, 0 100%);
}

.street-light {
  position: absolute;
  bottom: 32px;
  width: 4px;
  height: 122px;
  background: linear-gradient(180deg, #3f342f, #98816e);
  border-radius: 999px;
  opacity: 0.9;
}

.street-light::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -6px;
  width: 16px;
  height: 4px;
  border-radius: 999px;
  background: #89715f;
}

.light-left {
  left: 43%;
  transform: rotate(11deg);
}

.light-center {
  left: 59%;
  height: 142px;
  transform: rotate(-4deg);
}

.light-right {
  left: 66%;
  height: 112px;
  transform: rotate(11deg);
}

.hero-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0;
  color: #5d5855;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-caption span {
  color: var(--accent);
}

.caption-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.story-columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
  padding: 0 2px;
}

.feature-column h3 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 1.95rem;
  line-height: 1.05;
  font-weight: 700;
}

.feature-column p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.62;
}

.bottom-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  align-items: end;
  height: fit-content;
  margin-top: 6px;
  padding: 0px 0 0 18px;
  border-top: 3px solid var(--muted-line);
  background:
    linear-gradient(180deg, rgba(161, 142, 124, 0.05) 0%, rgba(161, 142, 124, 0.02) 22%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(90deg, rgba(123, 105, 88, 0.03) 0, rgba(123, 105, 88, 0.015) 58%, rgba(123, 105, 88, 0.04) 100%);
}

.bottom-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, transparent 64%, rgba(138, 120, 102, 0.08) 64.5%, transparent 65.2%),
    repeating-linear-gradient(0deg, rgba(124, 105, 88, 0.02) 0 2px, transparent 2px 7px);
}

.banner-copy h2 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 2.15rem;
  line-height: 1.05;
}

.banner-copy p {
  max-width: 94%;
  margin: 0 0 20px;
  color: #6f6863;
  font-size: 0.82rem;
  line-height: 1.5;
}

.banner-copy,
.banner-visual {
  position: relative;
  z-index: 1;
}

.banner-button {
  display: inline-block;
  min-width: 138px;
  padding: 12px 20px 11px;
  border: 0;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  background: linear-gradient(180deg, #db6159 0%, #c94942 100%);
  color: #fff6f4;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.banner-button:hover,
.banner-button:focus-visible {
  filter: brightness(1.05);
  outline: none;
}

.banner-visual {
  position: relative;
  height: 276px;
  overflow: hidden;
}

.banner-figure-head {
  position: absolute;
  right: 90px;
  top: 34px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e8b8a2, #c88770);
  z-index: 2;
}

.banner-figure-body {
  position: absolute;
  right: 26px;
  bottom: -6px;
  width: 160px;
  height: 170px;
  background:
    linear-gradient(135deg, rgba(177, 23, 39, 0) 0 20%, #c93b44 20% 40%, #d54a50 40% 58%, #ae2534 58% 100%);
  clip-path: polygon(57% 0, 74% 8%, 99% 24%, 75% 44%, 84% 100%, 20% 100%, 6% 56%, 28% 32%, 40% 12%);
  box-shadow: -24px 18px 30px rgba(134, 47, 52, 0.16);
}

.banner-figure-body::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 18px;
  width: 24px;
  height: 72px;
  background: linear-gradient(180deg, #f3ece7, #c91d2f);
  transform: rotate(22deg);
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .main-column {
    order: 1;
  }

  .sidebar-column {
    order: 2;
  }

  .sidebar-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .sidebar-card {
    border-bottom: 0;
    border-right: 1px solid var(--muted-line);
    padding-right: 12px;
  }

  .sidebar-photo-card {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 14px;
  }

  .newspaper-card {
    padding: 14px;
  }

  .paper-title {
    gap: 8px;
    font-size: 4rem;
  }

  .brand-strip {
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .paper-subtitle {
    margin-bottom: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .headline-bar {
    font-size: 0.74rem;
  }

  .sidebar-column,
  .story-columns,
  .bottom-banner {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    border-right: 0;
    border-bottom: 1px solid var(--muted-line);
    padding-right: 8px;
  }

  .hero-headline {
    max-width: 100%;
    font-size: 2rem;
  }

  .hero-image {
    height: 320px;
  }

  .wrong-site-stamp {
    top: 12px;
    right: 12px;
    padding: 8px 10px;
    border-width: 3px;
    font-size: 0.88rem;
  }

  .domain-duel {
    left: 12px;
    top: 54px;
    gap: 8px;
  }

  .domain-chip {
    min-width: 188px;
  }

  .chip-letter {
    width: 42px;
    height: 42px;
    font-size: 1.9rem;
  }

  .chip-text {
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .domain-chip-right {
    margin-left: 18px;
  }

  .bottom-banner {
    padding-left: 0;
  }

  .banner-visual {
    height: 150px;
  }
}