:root {
  --ink: #15233b;
  --ink-soft: #1f3253;
  --paper: #f7f5f0;
  --paper-dim: #ece8dd;
  --line: #d8d2c2;
  --line-dark: rgba(247, 245, 240, 0.18);
  --brick: #b23a2e;
  --brick-dark: #8c2c22;
  --ink-text: #2a2a24;
  --paper-text: #efebe0;
  --muted: #6b6657;
  --muted-paper: #b7b2a2;

  --font-display: "Newsreader", Georgia, serif;
  --font-body: "IBM Plex Sans", -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --maxw: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
:focus-visible {
  outline: 2px solid var(--brick);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12.5px;
  font-weight: 500;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ink);
  color: var(--paper-text);
  border-bottom: 1px solid var(--line-dark);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper-text);
  text-decoration: none;
}
.brand-logo {
  height: 72px;
  width: auto;
  display: block;
}
.brand .mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brick);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--paper-text);
  opacity: 0.85;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition:
    opacity 0.15s,
    border-color 0.15s;
}
.nav-links a:hover,
.nav-links a.nav-active {
  opacity: 1;
  border-color: var(--brick);
}
.nav-cta {
  background: var(--brick);
  color: var(--paper) !important;
  padding: 9px 16px;
  border-radius: 2px;
  opacity: 1 !important;
  font-family: var(--font-mono);
  font-size: 13px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--paper-text);
  font-size: 26px;
  cursor: pointer;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav-social a {
  color: var(--paper-text);
  opacity: 0.65;
  transition: opacity 0.15s;
  display: flex;
  align-items: center;
}
.nav-social a:hover {
  opacity: 1;
}

@media (max-width: 760px) {
  .nav {
    flex-wrap: wrap;
  }
  .nav-links {
    position: fixed;
    inset: var(--header-h, 130px) 0 0 0;
    background: var(--ink);
    flex-direction: column;
    padding: 24px 28px;
    gap: 25px;
    transform: translateY(-100vh);
    visibility: hidden;
    transition:
      transform 0.25s ease,
      visibility 0s linear 0.25s;
  }
  .nav-links.open {
    transform: translateY(30px);
    visibility: visible;
    transition: transform 0.25s ease;
  }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-dark);
    width: 100%;
  }
  .brand {
    order: 1;
  }
  .nav-toggle {
    display: block;
    order: 2;
  }
  /* "Rozbalí" .nav-right, aby ikony a hamburger mohly být samostatně
     řazené/zalomené jako přímé položky .nav (bez zásahu do HTML). */
  .nav-right {
    display: contents;
  }
  /* Ikony sociálních sítí se na mobilu zalomí na vlastní řádek pod logo
     a hamburger, vystředěné, ještě před obsahem stránky. */
  .nav-social {
    order: 3;
    flex: 0 0 100%;
    justify-content: center;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid var(--line-dark);
  }
}

.hero {
  background: var(--ink);
  color: var(--paper-text);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
}
.hero::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
}
.hero-inner {
  max-width: 960px;
  position: relative;
}
.hero .eyebrow {
  color: var(--brick);
  margin-bottom: 18px;
  display: block;
}
.hero h1 {
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.06;
  color: var(--paper-text);
}
.hero h1 em {
  font-style: italic;
  color: #fff;
}
.hero p.lede {
  font-size: 18px;
  color: var(--muted-paper);
  max-width: 560px;
  margin: 24px 0 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: 0.02em;
  padding: 13px 22px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.15s,
    background 0.15s,
    color 0.15s;
}
.btn-primary {
  background: var(--brick);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--brick-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  border-color: var(--line-dark);
  color: var(--paper-text);
}
.btn-ghost:hover {
  border-color: var(--paper-text);
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--line-dark);
  max-width: 760px;
}
.hero-stats div {
  padding: 18px 28px 0 0;
  margin-right: 28px;
  border-right: 1px solid var(--line-dark);
}
.hero-stats div:last-child {
  border-right: none;
}
.hero-stats strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 26px;
  color: #fff;
  font-weight: 500;
}
.hero-stats span {
  font-size: 12.5px;
  color: var(--muted-paper);
}

.photo-band {
  width: 100%;
  background: var(--ink-soft);
}
.photo-band img {
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.photo-band-caption {
  background: var(--ink);
  padding: 16px 28px 20px;
  color: var(--paper-text);
}
.photo-band-caption .eyebrow {
  color: var(--brick);
  display: block;
  margin-bottom: 6px;
}
.photo-band-caption p {
  margin: 0;
  max-width: 680px;
  font-size: 14.5px;
}

.photo-band-img-wrap {
  position: relative;
  --spot-size: clamp(18px, 1.78vw, 54px);
}
.photo-spots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.photo-spot {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: all;
  cursor: pointer;
}
.photo-spot-ring {
  width: var(--spot-size);
  height: var(--spot-size);
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  transition:
    background 0.2s,
    transform 0.2s;
}
.photo-spot-ring::after {
  content: "";
  display: block;
  position: absolute;
  inset: calc(var(--spot-size) * -0.18);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  animation: spot-pulse 2.6s ease-out infinite;
}
@keyframes spot-pulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}
.photo-spot:hover .photo-spot-ring,
.photo-spot:focus-visible .photo-spot-ring {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.15);
}
.photo-spot-bubble {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.16s,
    transform 0.16s;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 10;
}
.photo-spot-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #fff;
}
.photo-spot-bubble strong {
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  font-family: var(--font-body);
}
.photo-spot-bubble span {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-body);
}
.photo-spot--left .photo-spot-bubble {
  left: -6px;
  transform: translateX(0) translateY(5px);
}
.photo-spot--left .photo-spot-bubble::after {
  left: 20px;
  transform: none;
}
.photo-spot--right .photo-spot-bubble {
  left: auto;
  right: -6px;
  transform: translateX(0) translateY(5px);
}
.photo-spot--right .photo-spot-bubble::after {
  left: auto;
  right: 20px;
  transform: none;
}
.photo-spot:hover .photo-spot-bubble,
.photo-spot:focus-visible .photo-spot-bubble {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.photo-spot--left:hover .photo-spot-bubble,
.photo-spot--left:focus-visible .photo-spot-bubble,
.photo-spot--right:hover .photo-spot-bubble,
.photo-spot--right:focus-visible .photo-spot-bubble {
  transform: translateX(0) translateY(0);
}
@media (max-width: 600px) {
  .photo-spots {
    display: none;
  }
}

.hero.hero--photo {
  background-image: linear-gradient(115deg, rgba(21, 35, 59, 0.94) 0%, rgba(21, 35, 59, 0.72) 45%, rgba(21, 35, 59, 0.92) 100%), url("images/hero-tym.webp");
  background-size: cover;
  background-position: center 30%;
}
@media (max-width: 620px) {
  .hero.hero--photo {
    background-image: linear-gradient(180deg, rgba(21, 35, 59, 0.95) 0%, rgba(21, 35, 59, 0.88) 55%, rgba(21, 35, 59, 0.97) 100%), url("images/hero-tym.webp");
  }
}

.section {
  padding: 96px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head .eyebrow {
  color: var(--brick);
  display: block;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
}
.section-head p {
  color: var(--muted);
  max-width: 420px;
  font-size: 15px;
  margin: 0;
}

.program {
  background: var(--paper);
}
.program-list {
  border-top: 1px solid var(--line);
}
.clause {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.clause-num {
  font-family: var(--font-mono);
  color: var(--brick);
  font-size: 22px;
  font-weight: 500;
  padding-top: 2px;
}
.clause-num span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.clause-body h3 {
  font-size: 21px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.clause-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 2px;
}
.clause-lead {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  max-width: 640px;
}
.clause-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.clause.open .clause-detail {
  max-height: 400px;
}
.clause-detail-inner {
  padding-top: 16px;
  font-size: 15px;
  color: var(--ink-text);
  max-width: 640px;
}
.clause-detail-inner ul {
  margin: 0;
  padding-left: 18px;
}
.clause-detail-inner li {
  margin-bottom: 6px;
}
.clause-toggle {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brick);
  margin-top: 14px;
  display: inline-block;
}
@media (max-width: 620px) {
  .clause {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.candidates {
  background: var(--ink);
  color: var(--paper-text);
}
.candidates .section-head .eyebrow {
  color: var(--brick);
}
.candidates .section-head h2 {
  color: #fff;
}
.candidates .section-head p {
  color: var(--muted-paper);
}

.cand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 2px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.cand-card {
  background: var(--ink-soft);
  padding: 22px 18px;
  cursor: pointer;
  text-align: left;
  border: none;
  color: var(--paper-text);
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.15s;
  position: relative;
}
.cand-card:hover,
.cand-card:focus-visible {
  background: #28406a;
}
.cand-no {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--brick);
  border: 1px solid var(--brick);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cand-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 2px;
  background: linear-gradient(135deg, #33486e, #1c2c4a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--paper-text);
  opacity: 0.85;
  position: relative;
}
.cand-photo::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 38%;
  height: 38%;
  background: url("/images/kostelecaci-srdce.svg") center / contain no-repeat;
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.22s,
    transform 0.22s;
  pointer-events: none;
}
.cand-card:hover .cand-photo::after,
.cand-card:focus-visible .cand-photo::after {
  opacity: 0.9;
  transform: scale(1);
}
.cand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}
.cand-role {
  font-size: 12.5px;
  color: var(--muted-paper);
}
.cand-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.cand-logo-fill {
  display: none;
  grid-column: 2 / -1;
  background: var(--ink);
  align-items: center;
  justify-content: center;
  padding: 32px 40px;
}

.cand-logo-fill img {
  max-width: 260px;
  width: 100%;
}

@media (min-width: 820px) {
  .cand-logo-fill {
    display: flex;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 33, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}
.modal-overlay.active {
  display: flex;
}
.modal {
  background: var(--paper);
  color: var(--ink-text);
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 3px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.modal-head {
  display: flex;
  gap: 20px;
  padding: 32px 32px 0;
}
.modal-photo {
  width: 96px;
  height: 96px;
  border-radius: 2px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--ink-soft), var(--ink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 30px;
  color: #fff;
}
.modal-no {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brick);
  border: 1px solid var(--brick);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.modal-head h3 {
  font-size: 24px;
}
.modal-head .role {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 6px;
}
.modal-close:hover {
  color: var(--brick);
}
.modal-body {
  padding: 26px 32px 36px;
}
.modal-body p {
  font-size: 15px;
  margin: 0 0 14px;
}
.modal-meta {
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 18px;
}
.modal-meta div .eyebrow {
  display: block;
  color: var(--muted);
  margin-bottom: 4px;
  font-size: 11px;
}
.modal-meta div p {
  margin: 0;
  font-size: 14px;
}

.contact {
  background: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
}
@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-info p {
  color: var(--muted);
  font-size: 15px;
  max-width: 340px;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  font-family: var(--font-mono);
  font-size: 14px;
}
.contact-info-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.contact-info-list a {
  text-decoration: none;
}
.contact-info-list a:hover {
  color: var(--brick);
}

form#contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.field input,
.field textarea {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 2px;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-text);
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--brick);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 540px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
}
.consent input {
  margin-top: 3px;
}
.form-status {
  font-size: 14px;
  min-height: 20px;
  font-family: var(--font-mono);
}
.form-status.ok {
  color: #1f6f54;
}
.form-status.err {
  color: var(--brick);
}
.submit-btn {
  align-self: flex-start;
}
.submit-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

footer {
  background: var(--ink);
  color: var(--muted-paper);
  padding: 48px 0 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-top .brand {
  margin-bottom: 6px;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.footer-links a {
  text-decoration: none;
  font-size: 13.5px;
  opacity: 0.85;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--brick);
}
.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4px;
}
.footer-social a {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-size: 13px;
  color: var(--muted-paper);
  opacity: 0.8;
  transition:
    opacity 0.15s,
    color 0.15s;
}
.footer-social a:hover {
  opacity: 1;
  color: var(--paper-text);
}
.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  font-family: var(--font-mono);
  opacity: 0.7;
}
.footer-bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-legal {
  display: flex;
  gap: 16px;
}
.gdpr-page h2 {
  margin-top: 2em;
}
.gdpr-page code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: rgba(0, 0, 0, 0.06);
  padding: 1px 5px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brick);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news-item {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.news-date {
  display: block;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--muted);
  margin-bottom: 8px;
}

.news-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 500;
  margin: 0 0 12px;
}

.news-title a {
  color: var(--ink-text);
  text-decoration: none;
}

.news-title a:hover {
  color: var(--brick);
}

.news-perex {
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 640px;
  line-height: 1.6;
}

.news-more {
  font-size: 14px;
  font-weight: 500;
  color: var(--brick);
  text-decoration: none;
}

.news-more:hover {
  text-decoration: underline;
}

.news-back {
  display: inline-block;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 32px;
}

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

.news-detail-header {
  margin-bottom: 40px;
  z-index: 1;
  background: none;
  color: var(--ink);
}

.news-detail-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  margin: 12px 0 0;
  max-width: 760px;
  line-height: 1.2;
}

.news-detail-body {
  max-width: 680px;
  line-height: 1.75;
  color: var(--ink-text);
}

.news-detail-body p {
  margin: 0 0 20px;
}

.video-container-shorts {
  aspect-ratio: 9 / 16;

  width: 100%;
  max-width: 400px;
}

.video-container-shorts iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
