/* ==========================================================================
   时雨镇 · 大远征 —— 战报 / 大字报 视觉体系
   ---------------------------------------------------------------------------
   刻意与全站「透明玻璃边框」唱反调：这里是新闻纸、油墨、血红与铅字。
   全部选择器都挂在 .theme-raid 之下，因此这套样式不会渗到任何一个
   常规页面；换页即换世界观。

   要素：报头铅字、红底标语条、首字下沉、双栏正文、粗黑图版框、
   总编室印章、以及廉价报纸特有的套印错位（text-shadow 偏移 + 纸张纤维）。
   ========================================================================== */

body.theme-raid {
  --raid-paper: #e9e0c8;
  --raid-paper-2: #ddd2b2;
  --raid-paper-3: #f4eeda;
  --raid-ink: #1b1512;
  --raid-ink-2: #3d2f26;
  --raid-ink-3: #6f5d4d;
  --raid-red: #b81c22;
  --raid-red-dk: #8c1418;
  --raid-red-lt: #d4453c;
  --raid-gold: #a9761f;
  --f-raid-hd: "Songti SC", "STZhongsong", "SimSun", "Source Han Serif SC",
    "Noto Serif CJK SC", serif;
  --f-raid-body: "Songti SC", "SimSun", "Source Han Serif SC",
    "Noto Serif CJK SC", Georgia, serif;
  --f-raid-slogan: "SimHei", "STHeiti", "Heiti SC", "Microsoft YaHei",
    "PingFang SC", sans-serif;

  background-color: var(--raid-paper);
  background-image:
    radial-gradient(120% 90% at 50% 0%, rgba(255, 255, 255, 0.55),
      rgba(255, 255, 255, 0) 58%),
    radial-gradient(150% 120% at 50% 50%, rgba(255, 255, 255, 0) 50%,
      rgba(110, 86, 52, 0.30) 100%),
    url("../assets/images/paper-tile.png");
  background-size: auto, auto, 128px 128px;
  background-repeat: no-repeat, no-repeat, repeat;
  background-attachment: fixed, fixed, scroll;
  background-position: 50% 0, 50% 50%, 0 0;
  background-blend-mode: normal, multiply, multiply;
  color: var(--raid-ink);
  font-family: var(--f-raid-body);
  font-size: 16.5px;
  line-height: 1.92;
}

body.theme-raid .grain {
  opacity: 0.085;
}

/* ------------------------------------------------------------------ 页头
   沿用站点的导航结构，但整套换成铅字配色，保证"换个世界"的同时还能走回主站。 */
.theme-raid .header {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
  border-bottom: 1px solid transparent;
}

.theme-raid .header.is-scrolled {
  background: rgba(233, 224, 200, 0.9);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: rgba(27, 21, 18, 0.24);
  box-shadow: 0 2px 0 rgba(27, 21, 18, 0.06);
}

.theme-raid .brand__mark {
  display: none;
}

.theme-raid .brand::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: none;
  background: var(--raid-red);
  box-shadow: 3px 3px 0 rgba(27, 21, 18, 0.3);
}

.theme-raid .brand__cn {
  font-family: var(--f-raid-hd);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--raid-ink);
}

.theme-raid .brand__en {
  font-family: var(--f-raid-slogan);
  letter-spacing: 0.26em;
  color: var(--raid-ink-3);
  font-weight: 700;
}

.theme-raid .nav__link {
  border-radius: 0;
  font-family: var(--f-raid-slogan);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--raid-ink-2);
}

.theme-raid .nav__link:hover {
  background: transparent;
  box-shadow: none;
  color: var(--raid-red);
}

.theme-raid .nav__link.is-active {
  background: transparent;
  box-shadow: none;
  color: var(--raid-red);
  border-bottom: 3px solid var(--raid-red);
}

.theme-raid .nav__link--raid {
  color: var(--raid-red);
}

.theme-raid .header__cta {
  border-radius: 2px;
  background: var(--raid-red);
  color: #fdf6e6;
  box-shadow: 3px 3px 0 rgba(27, 21, 18, 0.3);
  font-family: var(--f-raid-slogan);
}

.theme-raid .header__cta::before {
  display: none;
}

.theme-raid .header__cta:hover {
  background: var(--raid-red-dk);
  color: #fff;
}

.theme-raid .burger span,
.theme-raid .burger span::before,
.theme-raid .burger span::after {
  background: var(--raid-ink);
}

.theme-raid .drawer {
  background: var(--raid-paper);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.theme-raid .drawer__link {
  font-family: var(--f-raid-hd);
  color: var(--raid-ink);
  border-bottom: 1px dashed rgba(27, 21, 18, 0.2);
}

.theme-raid .drawer__link small {
  color: var(--raid-ink-3);
  font-family: var(--f-raid-slogan);
}

.theme-raid .drawer__link--raid {
  color: var(--raid-red);
}

.theme-raid .drawer__close {
  color: var(--raid-ink);
}

.theme-raid .progress {
  background: var(--raid-red);
}

.theme-raid .skip {
  background: var(--raid-ink);
  color: var(--raid-paper-3);
}

/* ------------------------------------------------------------------ 版心 */
.raid-wrap {
  width: min(1180px, 100% - 2 * clamp(18px, 4vw, 46px));
  margin-inline: auto;
}

/* ------------------------------------------------------------------ 报头 */
.raid-mast {
  padding: calc(var(--header-h) + clamp(22px, 3.2vw, 44px)) 0 clamp(14px, 2vw, 22px);
  text-align: center;
  border-bottom: 5px double var(--raid-ink);
}

.raid-mast__kicker {
  display: inline-block;
  margin: 0 0 clamp(12px, 1.8vw, 20px);
  padding: 5px 16px;
  background: var(--raid-ink);
  color: var(--raid-paper-3);
  font-family: var(--f-raid-slogan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
}

.raid-mast__title {
  margin: 0;
  font-family: var(--f-raid-hd);
  font-weight: 900;
  font-size: clamp(3.2rem, 13vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  color: var(--raid-red);
  text-shadow: -3px 1px 0 rgba(27, 21, 18, 0.28),
    4px 4px 0 rgba(140, 20, 24, 0.16);
}

.raid-mast__en {
  margin: 8px 0 0;
  font-family: var(--f-raid-slogan);
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 900;
  letter-spacing: 0.62em;
  text-indent: 0.62em;
  color: var(--raid-ink-3);
}

.raid-mast__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px clamp(14px, 3vw, 32px);
  margin: clamp(14px, 2.2vw, 22px) 0 0;
  font-family: var(--f-raid-slogan);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--raid-ink-2);
}

.raid-mast__meta span::before {
  content: "◆";
  margin-right: 8px;
  color: var(--raid-red);
  font-size: 9px;
}

/* ------------------------------------------------------------------ 标语条 */
.raid-slogan {
  margin: clamp(20px, 3vw, 34px) 0;
  padding: clamp(11px, 1.6vw, 16px) clamp(16px, 3vw, 34px);
  background: var(--raid-red);
  color: #fdf6e6;
  font-family: var(--f-raid-slogan);
  font-size: clamp(1rem, 2.3vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
  transform: rotate(-0.45deg);
  box-shadow: 6px 6px 0 rgba(27, 21, 18, 0.2);
}

.raid-slogan--ink {
  background: var(--raid-ink);
  transform: rotate(0.35deg);
}

/* ------------------------------------------------------------------ 标题 */
.raid-h2 {
  margin: 0 0 12px;
  font-family: var(--f-raid-hd);
  font-weight: 900;
  font-size: clamp(1.55rem, 3.6vw, 2.5rem);
  line-height: 1.26;
  letter-spacing: 0.02em;
  color: var(--raid-ink);
}

.raid-h3 {
  margin: clamp(22px, 3vw, 34px) 0 12px;
  padding-left: 13px;
  border-left: 6px solid var(--raid-red);
  font-family: var(--f-raid-slogan);
  font-weight: 900;
  font-size: clamp(1.02rem, 1.9vw, 1.22rem);
  letter-spacing: 0.08em;
  color: var(--raid-ink);
}

.raid-h4 {
  margin: 18px 0 8px;
  font-family: var(--f-raid-slogan);
  font-weight: 900;
  font-size: 0.98rem;
  letter-spacing: 0.1em;
  color: var(--raid-red-dk);
}

.raid-kicker {
  margin: 0 0 8px;
  font-family: var(--f-raid-slogan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  color: var(--raid-red);
}

.raid-rule {
  height: 0;
  margin: clamp(26px, 4vw, 46px) 0;
  border: 0;
  border-top: 3px double var(--raid-ink);
}

/* ------------------------------------------------------------------ 正文 */
.raid-p {
  margin: 0 0 1.05em;
  text-align: justify;
  text-justify: inter-ideograph;
}

.raid-p--lead::first-letter {
  float: left;
  margin: 5px 10px 0 0;
  font-family: var(--f-raid-hd);
  font-size: 3.5em;
  font-weight: 900;
  line-height: 0.82;
  color: var(--raid-red);
}

.raid-cols {
  column-count: 2;
  column-gap: clamp(24px, 3.4vw, 46px);
  column-rule: 1px dashed rgba(27, 21, 18, 0.3);
}

.raid-cols--3 {
  column-count: 3;
}

@media (max-width: 860px) {
  .raid-cols,
  .raid-cols--3 {
    column-count: 1;
  }
}

.raid-em {
  color: var(--raid-red-dk);
  font-weight: 700;
}

.raid-hl {
  background: linear-gradient(transparent 62%, rgba(184, 28, 34, 0.26) 62%);
  font-weight: 700;
}

.raid-big {
  margin: clamp(18px, 2.6vw, 30px) 0;
  font-family: var(--f-raid-hd);
  font-weight: 900;
  font-size: clamp(1.5rem, 4.4vw, 2.9rem);
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--raid-red);
}

.raid-quote {
  margin: clamp(18px, 2.6vw, 30px) 0;
  padding: 4px 0 4px clamp(16px, 2.6vw, 28px);
  border-left: 7px solid var(--raid-red);
  font-family: var(--f-raid-hd);
  font-size: clamp(1.02rem, 1.9vw, 1.32rem);
  line-height: 1.86;
  color: var(--raid-ink);
}

.raid-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--f-raid-slogan);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--raid-ink-3);
}

/* ------------------------------------------------------------------ 图版 */
.raid-plate {
  position: relative;
  margin: clamp(22px, 3.4vw, 40px) 0;
  padding: 9px;
  border: 3px solid var(--raid-ink);
  background: var(--raid-paper-2);
  box-shadow: 9px 9px 0 rgba(27, 21, 18, 0.16);
}

.raid-plate img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}

.raid-plate figcaption {
  margin: 9px 2px 0;
  padding-top: 8px;
  border-top: 1px dashed rgba(27, 21, 18, 0.32);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--raid-ink-2);
}

.raid-plate figcaption b {
  font-family: var(--f-raid-slogan);
  letter-spacing: 0.1em;
  color: var(--raid-red-dk);
}

/* 总编室印章 */
.raid-seal {
  position: absolute;
  right: clamp(-16px, -1.6vw, -8px);
  bottom: clamp(-20px, -2vw, -12px);
  display: grid;
  place-items: center;
  width: clamp(76px, 11vw, 106px);
  aspect-ratio: 1;
  padding: 6px;
  border-radius: 3px;
  background: var(--raid-red);
  color: #fdf6e6;
  font-family: var(--f-raid-slogan);
  font-size: clamp(13px, 1.7vw, 18px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-align: center;
  transform: rotate(-9deg);
  opacity: 0.9;
  mix-blend-mode: multiply;
  box-shadow: 0 0 0 2px rgba(140, 20, 24, 0.35);
}

/* ------------------------------------------------------------------ 传单 / 简报 */
.raid-leaflets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(18px, 2.6vw, 30px);
  margin: clamp(22px, 3.4vw, 38px) 0;
}

.raid-leaflet {
  position: relative;
  padding: clamp(18px, 2.6vw, 30px);
  border: 2px solid var(--raid-ink);
  background: rgba(255, 252, 242, 0.5);
  box-shadow: 7px 7px 0 rgba(27, 21, 18, 0.15);
}

.raid-leaflet--red {
  border-color: var(--raid-red-dk);
  background: rgba(184, 28, 34, 0.06);
}

.raid-leaflet__from {
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(27, 21, 18, 0.32);
  font-family: var(--f-raid-slogan);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.75;
  color: var(--raid-ink-2);
}

.raid-leaflet__from b {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--raid-ink);
}

.raid-leaflet--red .raid-leaflet__from b {
  color: var(--raid-red-dk);
}

.raid-leaflet p {
  margin: 0 0 0.85em;
  text-align: justify;
  font-size: 15.5px;
  line-height: 1.92;
}

.raid-leaflet p:last-child {
  margin-bottom: 0;
}

.raid-leaflet--red p {
  font-family: var(--f-raid-slogan);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
}

/* ------------------------------------------------------------------ 战报表 */
.raid-table {
  width: 100%;
  margin: clamp(18px, 2.6vw, 28px) 0;
  border-collapse: collapse;
  border-top: 3px solid var(--raid-ink);
  border-bottom: 3px solid var(--raid-ink);
  font-size: 14.5px;
}

.raid-table th {
  padding: 9px 12px;
  background: var(--raid-ink);
  color: var(--raid-paper-3);
  font-family: var(--f-raid-slogan);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: left;
}

.raid-table td {
  padding: 11px 12px;
  border-bottom: 1px solid rgba(27, 21, 18, 0.18);
  vertical-align: top;
  line-height: 1.8;
}

.raid-table tbody tr:nth-child(even) td {
  background: rgba(27, 21, 18, 0.04);
}

.raid-table td:first-child {
  width: 88px;
  font-family: var(--f-raid-slogan);
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: var(--raid-red-dk);
}

.raid-table td:last-child {
  width: 30%;
  color: var(--raid-ink-2);
}

/* ------------------------------------------------------------------ 侧栏 */
.raid-note {
  margin: clamp(18px, 2.6vw, 28px) 0;
  padding: clamp(16px, 2.4vw, 26px);
  border: 2px dashed rgba(27, 21, 18, 0.4);
  background: rgba(255, 252, 242, 0.42);
}

.raid-note__t {
  margin: 0 0 12px;
  font-family: var(--f-raid-slogan);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.24em;
  color: var(--raid-red-dk);
}

.raid-note dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 16px;
  font-size: 14px;
}

.raid-note dt {
  font-family: var(--f-raid-slogan);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--raid-ink-2);
  white-space: nowrap;
}

.raid-note dd {
  margin: 0;
  color: var(--raid-ink);
}

.raid-note__foot {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(27, 21, 18, 0.3);
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--raid-ink-3);
}

/* ------------------------------------------------------------------ 进行中 */
.raid-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-raid-slogan);
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--raid-red);
}

.raid-live i {
  width: 10px;
  height: 10px;
  flex: none;
  border-radius: 50%;
  background: var(--raid-red);
  animation: raidBlink 1.5s steps(1, end) infinite;
}

@keyframes raidBlink {
  0%,
  55% {
    opacity: 1;
  }
  56%,
  100% {
    opacity: 0.12;
  }
}

/* 通往子页的号外入口 */
.raid-next {
  display: block;
  margin: clamp(24px, 3.6vw, 44px) 0;
  padding: clamp(20px, 3vw, 34px);
  border: 3px solid var(--raid-red);
  background: rgba(184, 28, 34, 0.07);
  color: inherit;
  text-decoration: none;
  box-shadow: 9px 9px 0 rgba(27, 21, 18, 0.15);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.raid-next:hover {
  background: rgba(184, 28, 34, 0.13);
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 rgba(27, 21, 18, 0.17);
}

.raid-next__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 12px;
  background: var(--raid-red);
  color: #fdf6e6;
  font-family: var(--f-raid-slogan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.raid-next__t {
  margin: 0 0 10px;
  font-family: var(--f-raid-hd);
  font-weight: 900;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.3;
  color: var(--raid-ink);
}

.raid-next__d {
  margin: 0 0 16px;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--raid-ink-2);
}

.raid-next__go {
  font-family: var(--f-raid-slogan);
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--raid-red-dk);
}

.raid-next__go::after {
  content: " →";
}

/* ------------------------------------------------------------------ 页脚 */
.theme-raid .footer {
  margin-top: clamp(40px, 6vw, 80px);
  border-top: 7px solid var(--raid-red);
  background: var(--raid-ink);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.theme-raid .footer__h {
  font-family: var(--f-raid-slogan);
  letter-spacing: 0.2em;
  color: var(--raid-paper-3);
}

.theme-raid .footer__list a,
.theme-raid .footer__list span {
  color: rgba(242, 234, 214, 0.7);
}

.theme-raid .footer__list a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.theme-raid .footer__brand p,
.theme-raid .footer__bottom,
.theme-raid .footer .muted {
  color: rgba(242, 234, 214, 0.6);
}

.theme-raid .footer__brand .brand__cn,
.theme-raid .footer .brand__cn {
  color: var(--raid-paper-3);
}

.theme-raid .footer .brand__en {
  color: rgba(242, 234, 214, 0.5);
}

.theme-raid .footer__bottom {
  border-top-color: rgba(242, 234, 214, 0.18);
}

.theme-raid .totop {
  border-radius: 2px;
  background: var(--raid-red);
  color: #fdf6e6;
  box-shadow: 4px 4px 0 rgba(27, 21, 18, 0.35);
}

.theme-raid .totop::before {
  display: none;
}

@media print {
  body.theme-raid {
    background: #fff;
  }
}
/* ------------------------------------------------------------------ 报纸排版补充 */
.raid-plate,
.raid-photo,
.raid-leaflet,
.raid-table,
.raid-note,
.raid-next,
.raid-quote,
.raid-big,
.raid-live {
  break-inside: avoid;
}

.raid-h2,
.raid-h3,
.raid-h4,
.raid-kicker {
  break-after: avoid;
}

/* 长标题（如「骰子已被掷下」）需要收一档字号才不会撞出报头 */
.raid-mast__title--long {
  font-size: clamp(2.1rem, 8.4vw, 5.8rem);
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}

/* 深色标语条上的呼吸点跟随前景色 */
.raid-slogan .raid-live {
  color: inherit;
}

.raid-slogan .raid-live i {
  background: currentColor;
}

/* 词条表 */
.raid-glossary {
  margin: clamp(18px, 2.6vw, 28px) 0;
  border-top: 3px double var(--raid-ink);
  border-bottom: 3px double var(--raid-ink);
  padding: clamp(14px, 2vw, 22px) 0;
}

.raid-glossary dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px 18px;
  font-size: 14.5px;
}

.raid-glossary dt {
  font-family: var(--f-raid-slogan);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--raid-red-dk);
  white-space: nowrap;
}

.raid-glossary dd {
  margin: 0;
  color: var(--raid-ink-2);
  line-height: 1.8;
}

@media (max-width: 560px) {
  .raid-glossary dl,
  .raid-note dl {
    grid-template-columns: 1fr;
    gap: 2px 0;
  }

  .raid-glossary dd,
  .raid-note dd {
    margin-bottom: 8px;
  }
}

/* ==========================================================================
   第 003 期追加 —— 公约复国运动
   ---------------------------------------------------------------------------
   新构件：中等长度报头标题、密级标注条、事件条目卡、广播稿、双图版。
   依旧全部挂在 .theme-raid 之下，不渗到常规页面。
   ========================================================================== */

/* 中等长度报头标题（「公约复国运动」这类六到八字） */
.raid-mast__title--mid {
  font-size: clamp(2.6rem, 10.4vw, 7.4rem);
  letter-spacing: 0.06em;
  text-indent: 0.06em;
}

/* ------------------------------------------------------------------ 密级标注
   黑底白字 + 一枚红签。用在「目前可以公开的内容」上。 */
.raid-classified {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px clamp(14px, 2.6vw, 26px);
  margin: clamp(18px, 2.6vw, 28px) 0;
  padding: clamp(10px, 1.5vw, 15px) clamp(14px, 2.4vw, 24px);
  background: var(--raid-ink);
  color: var(--raid-paper-3);
  font-family: var(--f-raid-slogan);
  font-size: clamp(12px, 1.6vw, 14.5px);
  font-weight: 900;
  letter-spacing: 0.2em;
}

.raid-classified__tag {
  flex: none;
  padding: 3px 10px;
  background: var(--raid-red);
  color: #fdf6e6;
  letter-spacing: 0.24em;
}

.raid-classified__note {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(244, 238, 218, 0.74);
}

/* ------------------------------------------------------------------ 事件条目 */
.raid-events {
  display: grid;
  gap: clamp(14px, 2.2vw, 22px);
  margin: clamp(20px, 3vw, 32px) 0;
}

.raid-event {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(12px, 2vw, 22px);
  align-items: start;
  padding: clamp(15px, 2.2vw, 24px);
  border: 2px solid var(--raid-ink);
  background: rgba(255, 252, 242, 0.46);
  box-shadow: 7px 7px 0 rgba(27, 21, 18, 0.14);
}

.raid-event--red {
  border-color: var(--raid-red-dk);
  background: rgba(184, 28, 34, 0.06);
}

.raid-event__no {
  display: grid;
  place-items: center;
  min-width: clamp(50px, 7.5vw, 66px);
  padding: 8px 6px;
  background: var(--raid-red);
  color: #fdf6e6;
  font-family: var(--f-raid-slogan);
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-align: center;
}

.raid-event--red .raid-event__no {
  background: var(--raid-ink);
}

.raid-event__t {
  margin: 0 0 6px;
  font-family: var(--f-raid-hd);
  font-weight: 900;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  letter-spacing: 0.05em;
  color: var(--raid-ink);
}

.raid-event__d {
  margin: 0;
  font-size: 15px;
  line-height: 1.88;
  color: var(--raid-ink-2);
}

.raid-event__tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  vertical-align: 0.18em;
  background: var(--raid-ink-3);
  color: var(--raid-paper-3);
  font-family: var(--f-raid-slogan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.raid-event--red .raid-event__tag {
  background: var(--raid-red);
}

/* ------------------------------------------------------------------ 广播稿
   黑框铅字，像电台播报稿摊在桌上。 */
.raid-broadcast {
  margin: clamp(20px, 3vw, 32px) 0;
  padding: clamp(16px, 2.4vw, 26px) clamp(18px, 2.8vw, 32px);
  border: 3px solid var(--raid-ink);
  background: rgba(27, 21, 18, 0.045);
  box-shadow: 8px 8px 0 rgba(27, 21, 18, 0.14);
}

.raid-broadcast__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 14px;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 3px double var(--raid-ink);
  font-family: var(--f-raid-slogan);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--raid-ink-2);
}

.raid-broadcast__head b {
  color: var(--raid-red-dk);
}

.raid-broadcast__line {
  position: relative;
  margin: 0 0 0.7em;
  padding-left: clamp(15px, 2.1vw, 24px);
  font-family: var(--f-raid-hd);
  font-size: clamp(1rem, 1.85vw, 1.22rem);
  line-height: 1.9;
  color: var(--raid-ink);
}

.raid-broadcast__line::before {
  content: "\25E2";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--raid-red);
  font-size: 0.62em;
  line-height: 2;
}

.raid-broadcast__line:last-child {
  margin-bottom: 0;
}

/* 广播稿里那句不属于稿件的话 —— 内阁奉命补上的部分。
   不带胶点、斜体、上方虚线，读起来像是事后贴上去的。 */
.raid-broadcast__aside {
  margin: clamp(15px, 2.1vw, 21px) 0 0;
  padding-top: clamp(11px, 1.6vw, 15px);
  border-top: 1px dashed rgba(27, 21, 18, 0.34);
  font-size: clamp(0.86rem, 1.45vw, 0.98rem);
  font-style: italic;
  line-height: 1.9;
  color: var(--raid-ink-3);
}

.raid-broadcast__aside em {
  font-style: normal;
  font-weight: 800;
  color: var(--raid-red-dk);
}

/* ------------------------------------------------------------------ 已收尾的呼吸点
   行动结束后不再闪烁，改成静止的实心点。 */
.raid-live--done i {
  animation: none;
  opacity: 1;
}

/* ------------------------------------------------------------------ 实机照片
   与版画插图分开：版画走套印错位 + 网点，实机截图要保持干净，
   所以这里单独一个构件，字号与说明行沿用 raid-plate 的排版。 */
.raid-photo {
  position: relative;
  margin: clamp(20px, 3vw, 32px) 0;
  padding: 9px;
  border: 3px solid var(--raid-ink);
  background: var(--raid-paper-2);
  box-shadow: 9px 9px 0 rgba(27, 21, 18, 0.16);
}

.raid-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.raid-photo figcaption {
  margin: 9px 2px 0;
  padding-top: 8px;
  border-top: 1px dashed rgba(27, 21, 18, 0.32);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--raid-ink-2);
}

.raid-photo figcaption b {
  font-family: var(--f-raid-slogan);
  letter-spacing: 0.1em;
  color: var(--raid-red-dk);
}

@media (max-width: 560px) {
  .raid-event {
    grid-template-columns: 1fr;
  }

  .raid-event__no {
    justify-self: start;
  }
}
