@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --ivory:   #faf8f3;
  --cream:   #f2ede3;
  --gold:    #b8860b;
  --gold-lt: #d4a017;
  --ink:     #1c1a17;
  --muted:   #8c8578;
  --border:  #e0d9cc;
  --surface: #ffffff;
  --radius:  6px;
}

/* ── Base ─────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ───────────────────────────── */
header {
  text-align: center;
  padding: 3.5rem 1rem 2rem;
  position: relative;
}

header::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem auto 0;
}

header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}

header h1 em {
  font-style: italic;
  font-size: clamp(4rem, 10vw, 7.5rem);
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 0.9;
}

.title-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.6rem, 1.4vw, 0.85rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--ink);
}

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(4rem);
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  box-shadow: 0 8px 32px rgba(192,57,43,0.45), 0 2px 8px rgba(0,0,0,0.2);
  transition: opacity 0.3s cubic-bezier(.22,1,.36,1), transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s;
  z-index: 9999;
  pointer-events: none;
  border-left: 4px solid #ff6b6b;
}

.toast.toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  animation: toast-shake 0.4s 0.3s cubic-bezier(.36,.07,.19,.97);
}

@keyframes toast-shake {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  20%       { transform: translateX(calc(-50% - 6px)) translateY(0); }
  40%       { transform: translateX(calc(-50% + 6px)) translateY(0); }
  60%       { transform: translateX(calc(-50% - 3px)) translateY(0); }
  80%       { transform: translateX(calc(-50% + 3px)) translateY(0); }
}

.tagline {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

/* ── Main ─────────────────────────────── */
main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 2rem 6rem;
}

/* ── Search form ──────────────────────── */
#search-form {
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.search-row {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}

.search-row:focus-within {
  box-shadow: 0 2px 20px rgba(184,134,11,0.15);
  border-color: var(--gold);
}

input[type="text"] {
  flex: 1;
  padding: 0.9rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
}

input[type="text"]::placeholder {
  color: var(--muted);
  font-style: italic;
}

button[type="submit"] {
  padding: 0.9rem 1.6rem;
  background: var(--gold);
  color: #fff;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

button[type="submit"]:hover {
  background: var(--gold-lt);
}

/* ── Search options ───────────────────── */
.search-options {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

input[type="file"] { display: none; }

/* ── Drop zone ────────────────────────── */
#drop-zone {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#drop-zone.drag-over {
  border-color: var(--gold);
  background: rgba(184,134,11,0.04);
  color: var(--gold);
}

#drop-zone.has-image {
  border-color: var(--gold);
  padding: 0.5rem;
  min-height: 120px;
}

.drop-browse {
  color: var(--gold);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#drop-zone-preview {
  position: relative;
  display: inline-flex;
}

#drop-zone-preview img {
  max-height: 120px;
  max-width: 100%;
  border-radius: 3px;
  display: block;
  object-fit: contain;
}

.drop-clear {
  position: absolute;
  top: -0.4rem;
  right: -0.4rem;
  background: var(--ink);
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.65rem;
  cursor: pointer;
  border-radius: 50%;
  width: 1.3rem;
  height: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.file-label {
  cursor: pointer;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  transition: border-color 0.15s, color 0.15s;
  user-select: none;
}

.file-label:hover {
  border-color: var(--gold);
  color: var(--gold);
}

#drop-zone[hidden] { display: none; }

select {
  padding: 0.35rem 0.85rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 1.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238c8578'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  transition: border-color 0.15s, color 0.15s;
}

select:focus, select:hover {
  border-color: var(--gold);
  color: var(--ink);
}

/* ── HTMX indicator ───────────────────── */
.htmx-indicator {
  display: none;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator { display: inline; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator { animation: pulse 1.4s ease-in-out infinite; }

/* ── Results meta ─────────────────────── */
.meta {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  text-align: center;
}

.meta::before, .meta::after {
  content: '— ';
}
.meta::after {
  content: ' —';
}

.no-results {
  color: var(--muted);
  font-style: italic;
  text-align: center;
  padding: 4rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

/* ── Results grid ─────────────────────── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

/* ── Card ─────────────────────────────── */
.card {
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: 0 0 0 0 rgba(184,134,11,0);
  transition: box-shadow 0.3s;
  pointer-events: none;
}

.card:hover::after {
  box-shadow: 0 0 0 2px var(--gold);
}

/* ── Thumbnail ────────────────────────── */
.thumb-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
  border-radius: var(--radius);
}

.thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .thumb-wrap img {
  transform: scale(1.04);
}

/* Video overlay */
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 26, 23, 0.25);
  opacity: 0;
  transition: opacity 0.25s;
}

.card:hover .play-btn {
  opacity: 1;
}

.play-btn svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.timestamp {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(28, 26, 23, 0.72);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  backdrop-filter: blur(4px);
}

/* ── Card info ────────────────────────── */
.card-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0.1rem 0.1rem;
  gap: 0.5rem;
}

.score {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.filename {
  font-size: 0.68rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

/* ── Dialogs ──────────────────────────── */
dialog {
  background: var(--ink);
  border: none;
  border-radius: 4px;
  padding: 0;
  max-width: 92vw;
  max-height: 92vh;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

#fragments-dialog {
  position: fixed;
  top: 5vh;
  left: 50%;
  transform: translateX(-50%);
  max-height: 90vh;
  overflow-y: auto;
  margin: 0;
}

dialog::backdrop {
  background: rgba(28, 26, 23, 0.88);
  backdrop-filter: blur(3px);
}

.dialog-inner {
  position: relative;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.15s;
  line-height: 1;
}

.close-btn:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

#dialog-video {
  max-width: 88vw;
  max-height: 88vh;
  display: block;
  border-radius: 2px;
}

#image-dialog {
  overflow: auto;
  max-width: 92vw;
  max-height: 92vh;
}

#image-dialog .dialog-inner {
  padding: 0.5rem;
}

#dialog-image {
  display: block;
  max-width: 86vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 2px;
  cursor: zoom-in;
}

#dialog-image.zoomed {
  max-width: unset;
  max-height: unset;
  cursor: zoom-out;
}

.image-toolbar {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  display: flex;
  gap: 0.4rem;
  z-index: 11;
}

.img-btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 4px;
  padding: 0.3rem 0.55rem;
  transition: background 0.15s;
  text-decoration: none;
  line-height: 1.4;
}

.img-btn:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

/* ── Fragments modal ──────────────────── */
.fragments-inner {
  flex-direction: column;
  align-items: stretch;
  padding: 2rem 1.5rem 1.5rem;
  min-width: min(680px, 90vw);
}

.frags-filename {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-right: 2rem;
}

.frags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
}

.frag-item {
  cursor: pointer;
}

.frag-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
}

.frag-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.frag-item:hover .frag-thumb img { transform: scale(1.04); }

.frag-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28,26,23,0.3);
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.frag-item:hover .frag-play { opacity: 1; }

.frag-meta {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0.1rem 0;
  font-size: 0.68rem;
}

.frag-time { color: var(--muted); font-family: monospace; }
.frag-score { color: var(--gold); font-weight: 500; }

/* Fragment count badge on card */
.frag-count {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(28, 26, 23, 0.72);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  backdrop-filter: blur(4px);
}

/* ── Carousel ─────────────────────────── */
#carousel {
  margin-bottom: 2.5rem;
}

.carousel-wrap {
  position: relative;
}

.carousel {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.carousel::-webkit-scrollbar { display: none; }

.carousel-item {
  position: relative;
  flex: 0 0 260px;
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item:hover img {
  transform: scale(1.05);
}

.carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 0 var(--gold);
  transition: box-shadow 0.25s;
  pointer-events: none;
}

.carousel-item:hover::after {
  box-shadow: inset 0 0 0 2px var(--gold);
}

.carousel-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28,26,23,0.22);
  opacity: 0;
  transition: opacity 0.2s;
}

.carousel-item:hover .carousel-play { opacity: 1; }

.carousel-play svg {
  width: 36px;
  height: 36px;
  fill: none;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.15s, border-color 0.15s;
  z-index: 2;
  padding-bottom: 1px;
}

.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.carousel-prev { left: -1.1rem; }
.carousel-next { right: -1.1rem; }

/* ── Gallery grid (fixed columns, last row always fills) ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1100px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 800px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }

/* ── Gallery filter buttons ───────────── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-divider {
  width: 1px;
  background: var(--border);
  margin: 0 0.25rem;
  align-self: stretch;
}

.gallery-filter-btn {
  padding: 0.35rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.gallery-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,134,11,0.07);
}

/* ── Gallery button ───────────────────── */
.gallery-link-wrap {
  text-align: center;
  margin: -2rem auto 2.5rem;
}

.gallery-btn {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  transition: border-color 0.15s, color 0.15s;
}

.gallery-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Gallery pagination ────────────────── */
.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem 0 1rem;
}

.gallery-page-btn {
  padding: 0.4rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.gallery-page-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-page-num {
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: var(--muted);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.gallery-page-num:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-page-num.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
  cursor: default;
}

.gallery-page-ellipsis {
  color: var(--muted);
  font-size: 0.85rem;
  padding: 0 0.15rem;
  user-select: none;
}

.gallery-page-btn:disabled,
.gallery-page-num:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* ── Title link ────────────────────────── */
.title-link {
  text-decoration: none;
  color: inherit;
}

/* ── Back link ─────────────────────────── */
.back-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.15s;
}

.back-link:hover {
  color: var(--gold);
}

/* ── Responsive ───────────────────────── */
@media (max-width: 640px) {
  .results-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.75rem; }
  main { padding: 1.5rem 1rem 4rem; }
  header h1 { letter-spacing: 0.1em; }
}

/* ── Item pages (photo/video) ─────────── */
.breadcrumb {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--gold); }

.item-page {
  max-width: 960px;
  margin: 0 auto;
}

.item-page-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.item-page-video {
  width: 100%;
  max-height: 85vh;
  display: block;
  border-radius: 4px;
  background: #000;
}

.item-page-meta {
  margin-top: 1rem;
}

.item-page-meta h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 0.25rem;
}

/* ── Footer ───────────────────────────── */
footer {
  margin-top: 4rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

footer a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer a:hover {
  color: var(--gold);
}

/* News */
.news-list {
  max-width: 720px;
  margin: 0 auto;
}

.news-article {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.news-article:last-child {
  border-bottom: none;
}

.news-meta time {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.news-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0.5rem 0 1rem;
  color: var(--ink);
}

.news-body p {
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1rem;
}
