@font-face {
  font-family: "ABCMaxiRound";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("fonts/ABCMaxiRound-Bold.woff2") format("woff2"),
    url("fonts/ABCMaxiRound-Bold.woff") format("woff");
}

@font-face {
  font-family: "Diatype";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("fonts/ABCDiatype-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Diatype";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("fonts/ABCDiatype-Medium.otf") format("opentype");
}

@font-face {
  font-family: "Diatype";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("fonts/ABCDiatype-Bold.otf") format("opentype");
}

* {
  box-sizing: border-box;
}

:root {
  --navy: #0f1370;
  --red: #dc2228;
  --band: #dbe9f8;
  --ink: #555555;
  --mute: #6b6b6b;
  --link: #1428a6;
  --rule: #b9c4d6;
  --paper: #ffffff;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #eef0f3;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.report {
  max-width: 1104px;
  margin: 0 auto 24px;
  background: var(--paper);
  padding-bottom: 40px;
}

/* ---------- Header band ---------- */
.band {
  background: var(--band);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.band-title {
  font-family: "Zilla Slab", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--navy);
  margin: 0;
}

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

.band-right {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--navy);
  white-space: nowrap;
}

/* ---------- Meta row ---------- */
.meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 28px 48px 0;
  gap: 24px;
}

.meta-label {
  color: var(--mute);
  margin-right: 8px;
}

.meta-value {
  color: #555555;
}

.meta-date {
  color: #555555;
  font-style: italic;
}

/* ---------- Title + imprint ---------- */
.title-row {
  padding: 20px 48px 0;
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}

.issue-title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.byline {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}

.imprint {
  padding: 8px 48px 0;
  color: var(--navy);
  font-weight: 400;
}

/* ---------- Divider ---------- */
.divider {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 28px 48px;
}

/* ---------- Body ---------- */
.body {
  padding: 0 48px;
  font-size: 18px;
  line-height: 1.6;
  color: #555555;
  margin: 0 0 24px;
}

.body a,
.footer-line a {
  color: var(--link);
  text-decoration: none;
}

.body a:hover,
.footer-line a:hover {
  text-decoration: underline;
}

/* ---------- Body bullet list ---------- */
.body-list {
  margin: -8px 0 24px;
  padding: 0 48px 0 74px;
  font-size: 18px;
  line-height: 1.6;
  color: #555555;
}
.body-list li {
  margin: 0 0 6px;
}
.body-list li:last-child {
  margin-bottom: 0;
}

/* ---------- Footer line ---------- */
.footer-line {
  padding: 0 48px;
  font-size: 18px;
  color: var(--ink);
  margin: 0;
}

@media (max-width: 720px) {
  .report {
    margin: 0 14px 24px;
  }
  .band,
  .meta-row,
  .title-row,
  .imprint,
  .body,
  .footer-line {
    padding-left: 24px;
    padding-right: 24px;
  }
  .divider {
    margin-left: 24px;
    margin-right: 24px;
  }
  .meta-row {
    flex-direction: column;
    gap: 4px;
  }
  .band {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .band-title .accent {
    display: block;
  }
}

/* ---------- View tabs (attached to the card) ---------- */
.tabbar {
  max-width: 1104px;
  margin: 40px auto 0;
  padding-left: 0;
  display: flex;
  gap: 4px;
}
.tabbar button {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 12px 30px;
  border: 1px solid var(--band);
  border-bottom: none;
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
  border-radius: 0;
}
.tabbar button.on {
  background: var(--band);
  color: var(--navy);
}
@media (max-width: 720px) {
  .tabbar {
    margin: 16px 14px 0;
    padding-left: 0;
  }
  .tabbar button {
    flex: 1;
    padding: 12px 4px;
    font-size: 11px;
    letter-spacing: 0;
  }
}

/* ---------- Patron CTA ---------- */
.cta-row {
  padding: 0 48px;
  margin: 0 0 26px;
}
.patron-cta {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 22px;
  text-decoration: none;
}
.patron-cta:hover {
  opacity: 0.92;
  text-decoration: none;
}
@media (max-width: 720px) {
  .cta-row {
    padding-left: 24px;
    padding-right: 24px;
  }
  .patron-cta {
    display: block;
    text-align: center;
  }
}

/* ---------- Log story ---------- */
#view-log {
  padding-bottom: 0;
}
.story {
  max-width: 651px;
  margin: 0 auto;
  padding: 24px 48px;
}
.story-stage {
  width: 100%;
  height: 440px;
  box-sizing: border-box;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.story-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: opacity 0.25s ease;
}
.story-img.no-border {
  border-color: transparent;
}
.story-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}
.story-dots .dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(15, 19, 112, 0.22);
  cursor: pointer;
  transition: background 0.2s ease;
}
.story-dots .dot.on {
  background: var(--navy);
}
@media (max-width: 720px) {
  .story {
    padding: 20px 24px;
  }
}

/* ---------- Updates / subscribe ---------- */
.subscribe {
  max-width: 1104px;
  margin: 4px auto 10px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.disclaimer {
  max-width: 1104px;
  margin: 0 auto 44px;
  padding: 0 24px;
  text-align: center;
  color: var(--mute);
  font-size: 12px;
  line-height: 1.5;
}
.sub-success {
  max-width: 1104px;
  margin: 4px auto 10px;
  padding: 12px 24px;
  text-align: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
}
.sub-label {
  color: var(--mute);
}
.sub-form {
  display: flex;
  gap: 8px;
}
.sub-input {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  padding: 9px 12px;
  border: 1px solid var(--rule);
  min-width: 230px;
  color: var(--ink);
}
.sub-input:focus {
  outline: none;
  border-color: var(--navy);
}
.sub-btn {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 15px;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 9px 18px;
  cursor: pointer;
}
.sub-btn:hover {
  opacity: 0.92;
}
@media (max-width: 720px) {
  .subscribe {
    padding-left: 24px;
    padding-right: 24px;
    justify-content: flex-start;
  }
  .sub-input {
    flex: 1;
    min-width: 0;
  }
  .sub-btn {
    flex-basis: 100%;
  }
}
