/* ============================================================
   THE DAILY FEEDER — Skeuomorphic stylesheet
   Design: aged newsprint on a dark walnut desk.
   Signature: Clippings panel = corkboard with tape-marked slips.
   ============================================================ */

/* === TOKENS ====================================================== */
:root {
  --newsprint: #F2EDD7;
  --newsprint-alt: #EBE4C8;
  --ink: #1C1A15;
  --ink-mid: #4A4438;
  --ink-faded: #7A7060;
  --rule: #C4B99A;
  --rule-dark: #8C7F68;
  --red: #7A1919;
  --desk: #16100A;
  --tape: rgba(255, 236, 110, 0.62);
  --clip-paper: #F8F3E2;

  --font-display: 'Cinzel Decorative', serif;
  --font-body: 'IM Fell English', Georgia, serif;
  --font-sc: 'IM Fell English SC', 'Cinzel Decorative', serif;
}

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

/* === BODY / DESK ================================================= */
body {
  min-height: 100vh;
  background-color: var(--desk);
  /* Subtle wood-grain lines */
  background-image:
    repeating-linear-gradient(94deg,
      transparent,
      transparent 6px,
      rgba(255, 255, 255, 0.018) 6px,
      rgba(255, 255, 255, 0.018) 7px),
    repeating-linear-gradient(180deg,
      transparent,
      transparent 60px,
      rgba(0, 0, 0, 0.06) 60px,
      rgba(0, 0, 0, 0.06) 61px);
  font-family: var(--font-body);
  color: var(--ink);
  padding: 1rem;
}

/* === NEWSPAPER SHEET ============================================= */
.desktop {
  display: flex;
  justify-content: center;
}

.newspaper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 80%;
  background-color: var(--newsprint);
  /* Newsprint grain */
  background-image:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.022) 3px,
      rgba(0, 0, 0, 0.022) 4px);
  /* Layered shadow = paper hovering above desk */
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.2),
    0 2px 4px rgba(0, 0, 0, 0.2),
    0 6px 12px rgba(0, 0, 0, 0.25),
    0 20px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  position: relative;
}

/* Page-curl triangle at bottom-right */
.newspaper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 36px 36px;
  border-color: transparent transparent var(--desk) transparent;
  filter: drop-shadow(-2px -1px 3px rgba(0, 0, 0, 0.35));
}

/* === MASTHEAD ==================================================== */
.masthead {
  padding: 1.25rem 2rem 0.75rem;
  border-bottom: 3px double var(--rule-dark);
  flex-shrink: 0;
}

.masthead-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.masthead-side {
  width: 16%;
  font-size: 0.72rem;
  color: var(--ink-faded);
  font-style: italic;
  line-height: 1.5;
  flex-shrink: 0;
}

.masthead-side--right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.masthead-aside-text {
  display: block;
  text-align: center;
}

.masthead-center {
  flex: 1;
  text-align: center;
}

.masthead-rule {
  height: 1px;
  background: var(--rule-dark);
  margin: 0.3rem 0;
}

.paper-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.1;
  /* Debossed ink effect */
  text-shadow:
    1px 1px 0 rgba(255, 255, 255, 0.45),
    -1px -1px 0 rgba(0, 0, 0, 0.12);
}

.masthead-meta {
  margin-top: 0.3rem;
  font-size: 0.67rem;
  color: var(--ink-faded);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.meta-sep {
  color: var(--rule-dark);
}

.admin-link {
  color: var(--ink-faded);
  text-decoration: none;
}

.admin-link:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Clippings toggle button */
.clippings-btn {
  background: none;
  border: 1px solid var(--rule-dark);
  color: var(--ink-mid);
  font-family: var(--font-body);
  font-size: 0.78rem;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
}

.clippings-btn:hover {
  background: var(--ink);
  color: var(--newsprint);
}

/* === FRONT PAGE GRID ============================================= */
.frontpage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  flex: 1;
  min-height: 0;
  grid-template-rows: repeat(2, 1fr);
}

.frontpage.is-filtered {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex: 1;
  min-height: 0;
}

.fp-cell {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

/* Last column: no right border */
.fp-cell:last-child {
  border-right: none;
}

.fp-item {
  padding: 1rem 1.25rem;
  height: 100%;
  overflow: hidden;
}

.byline {
  text-align: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule);
}

.byline-text {
  font-family: var(--font-sc);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

/* === RSS ITEMS =================================================== */
.rss-feed {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rss-item {
  padding: 0.7rem 0;
  border-bottom: 1px dotted var(--rule);
  position: relative;
}

.rss-item:last-child {
  border-bottom: none;
}

.rss-title {
  font-size: 0.98rem;
  font-weight: normal;
  line-height: 1.35;
  margin-bottom: 0.2rem;
}

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

.rss-title a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rss-date {
  display: block;
  font-size: 0.62rem;
  font-style: italic;
  color: var(--ink-faded);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.rss-description {
  font-size: 0.78rem;
  color: var(--ink-mid);
  line-height: 1.55;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feed-error {
  font-size: 0.78rem;
  color: var(--ink-faded);
  font-style: italic;
  padding: 0.5rem 0;
}

.feed-error a {
  color: var(--ink-mid);
}

/* Scissors clip button */
.clip-btn {
  position: absolute;
  top: 0.7rem;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--rule-dark);
  opacity: 0;
  transition: opacity 0.15s, color 0.15s;
  padding: 0.1rem;
  line-height: 1;
}

.rss-item:hover .clip-btn {
  opacity: 1;
}

.clip-btn:hover {
  color: var(--ink);
}

.clip-btn.clipped {
  opacity: 1;
  color: var(--red);
  cursor: default;
}

/* === CLIPPINGS PANEL — the corkboard ============================= */
.clippings-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  height: 100vh;
  /* Dark cork/board texture */
  background-color: #2B1E0F;
  background-image:
    radial-gradient(ellipse at 15% 25%, rgba(160, 110, 50, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(120, 80, 30, 0.12) 0%, transparent 55%),
    repeating-linear-gradient(45deg,
      transparent,
      transparent 4px,
      rgba(255, 255, 255, 0.012) 4px,
      rgba(255, 255, 255, 0.012) 5px);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.65);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.clippings-panel.open {
  transform: translateX(0);
}

.clippings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.clippings-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--newsprint);
  letter-spacing: 0.04em;
}

.clippings-close {
  background: none;
  border: none;
  color: var(--ink-faded);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.1rem;
  transition: color 0.15s;
}

.clippings-close:hover {
  color: var(--newsprint);
}

.clippings-search-wrap {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.clippings-search-wrap input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--newsprint);
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 0.38rem 0.6rem;
  outline: none;
  transition: border-color 0.15s;
}

.clippings-search-wrap input:focus {
  border-color: rgba(255, 255, 255, 0.3);
}

.clippings-search-wrap input::placeholder {
  color: var(--ink-faded);
}

.clippings-list {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.clippings-empty {
  color: var(--ink-faded);
  font-style: italic;
  font-size: 0.82rem;
  text-align: center;
  padding: 2rem 0;
  line-height: 1.7;
}

/* ── Individual clipping slip ── */
.clipping-item {
  background: var(--clip-paper);
  /* Slight newsprint grain on the slip */
  background-image:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.018) 3px,
      rgba(0, 0, 0, 0.018) 4px);
  padding: 1.1rem 0.9rem 0.75rem;
  position: relative;
  box-shadow:
    1px 2px 4px rgba(0, 0, 0, 0.45),
    0 4px 10px rgba(0, 0, 0, 0.3);
  /* Alternating slight tilt — makes the stack feel physical */
  transform: rotate(-0.6deg);
}

.clipping-item:nth-child(even) {
  transform: rotate(0.8deg);
}

.clipping-item:nth-child(3n) {
  transform: rotate(-0.2deg);
}

/* Yellowed tape mark at top */
.clipping-tape {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  width: 52px;
  height: 17px;
  background: var(--tape);
  border-left: 1px solid rgba(190, 165, 60, 0.3);
  border-right: 1px solid rgba(190, 165, 60, 0.3);
}

.clipping-source {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faded);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.3rem;
  margin-bottom: 0.4rem;
}

.clipping-title {
  font-size: 0.88rem;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

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

.clipping-title a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.clipping-desc {
  font-size: 0.74rem;
  color: var(--ink-mid);
  line-height: 1.5;
  font-style: italic;
}

.clipping-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  padding-top: 0.4rem;
  border-top: 1px dotted var(--rule);
}

.clipping-date {
  font-size: 0.62rem;
  color: var(--ink-faded);
  font-style: italic;
}

.clipping-delete {
  background: none;
  border: none;
  color: var(--ink-faded);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}

.clipping-delete:hover {
  color: var(--red);
}

/* === ADMIN STYLES ================================================ */
body.is-admin {
  background-color: var(--desk);
  padding: 2rem;
}

.admin-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: var(--newsprint);
  background-image:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.018) 3px,
      rgba(0, 0, 0, 0.018) 4px);
  padding: 2rem;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.3),
    0 12px 40px rgba(0, 0, 0, 0.4);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 3px double var(--rule-dark);
  padding-bottom: 0.875rem;
  margin-bottom: 1.5rem;
}

.admin-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
}

.admin-back {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-faded);
  text-decoration: none;
}

.admin-back:hover {
  color: var(--ink);
  text-decoration: underline;
}

.admin-notice {
  background: var(--newsprint-alt);
  border: 1px solid var(--rule-dark);
  padding: 0.5rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--ink-mid);
}

.admin-section {
  margin-bottom: 2.5rem;
}

.admin-section-title {
  font-family: var(--font-sc);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
}

.admin-empty {
  font-style: italic;
  font-size: 0.82rem;
  color: var(--ink-faded);
}

.admin-card {
  border: 1px solid var(--rule);
  padding: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.2);
}

.admin-form {
  flex: 1;
  min-width: 0;
}

.admin-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.admin-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-faded);
  flex: 1;
  min-width: 90px;
}

.admin-label small {
  font-size: 0.6rem;
  text-transform: none;
  letter-spacing: 0;
}

.admin-label--wide {
  flex: 3;
}

.admin-label--narrow {
  flex: 0 0 4.5rem;
}

.admin-label input {
  font-family: var(--font-body);
  font-size: 0.82rem;
  border: 1px solid var(--rule);
  padding: 0.25rem 0.4rem;
  background: var(--newsprint);
  color: var(--ink);
  width: 100%;
}

.admin-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  border: 1px solid;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
}

.btn--save {
  background: var(--ink);
  color: var(--newsprint);
  border-color: var(--ink);
}

.btn--save:hover {
  background: var(--ink-mid);
  border-color: var(--ink-mid);
}

.btn--delete {
  background: none;
  color: var(--red);
  border-color: var(--red);
}

.btn--delete:hover {
  background: var(--red);
  color: var(--newsprint);
}

.admin-delete-form {
  display: flex;
  align-items: flex-start;
  padding-top: 0.1rem;
}

/* Load more button in clippings panel */
.load-more-btn {
  display: block;
  width: 100%;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--ink-faded);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.78rem;
  padding: 0.6rem;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, color 0.15s;
  margin-top: 0.5rem;
}

.load-more-btn:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--newsprint);
}

/* === SECTION NAV ================================================= */
.section-nav {
  border-bottom: 3px double var(--rule-dark);
  background: var(--newsprint);
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.section-nav::-webkit-scrollbar {
  display: none;
}

.section-nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.section-nav-item {
  background: none;
  border: none;
  border-right: 1px solid #ffffff1f;
  color: #000000;
  font-family: var(--font-sc);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.section-nav-item:hover {
  background: #ffffff14;
  color: #000000;
}

.section-nav-item.is-active {
  background: var(--newsprint);
  color: var(--ink);
}

.section-code {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-style: italic;
  opacity: 0.7;
  letter-spacing: 0;
}

.section-nav-item.is-active .section-code {
  opacity: 0.5;
}

.contd {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.65rem;
  color: var(--ink-faded);
  text-align: right;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px dotted var(--rule);
}

/* === ARTICLE IMAGES ============================================== */
.rss-image {
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  display: block;
  margin-bottom: 0.6rem;
  filter: grayscale(1) contrast(1.2) brightness(0.88);
  mix-blend-mode: multiply;
}

/* === READ INDICATOR ============================================== */
.rss-item.is-read .rss-title a {
  color: var(--ink-faded);
  opacity: 0.55;
}

.rss-item.is-read .rss-image {
  opacity: 0.45;
  filter: sepia(0.4) contrast(0.85) grayscale(0.3);
}

/* === ARTICLE MODAL =============================================== */
.article-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}

.article-modal.is-open {
  pointer-events: all;
  opacity: 1;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(22, 16, 10, 0.75);
  backdrop-filter: blur(2px);
}

.modal-sheet {
  position: relative;
  z-index: 1;
  background: var(--newsprint);
  background-image:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.018) 3px,
      rgba(0, 0, 0, 0.018) 4px);
  width: 100%;
  max-width: 820px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.4),
    0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.modal-topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.25rem;
  border-bottom: 1px solid var(--rule);
  background: var(--newsprint-alt);
  flex-shrink: 0;
}

.modal-source-label {
  font-family: var(--font-sc);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  flex: 1;
}

.modal-original-link {
  font-size: 0.7rem;
  font-style: italic;
  color: var(--ink-faded);
  text-decoration: none;
  white-space: nowrap;
}

.modal-original-link:hover {
  color: var(--ink);
  text-decoration: underline;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink-faded);
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}

.modal-close:hover {
  color: var(--ink);
}

.modal-body {
  overflow-y: auto;
  padding: 2rem 2.5rem;
  flex: 1;
}

.modal-dateline {
  font-size: 0.68rem;
  font-style: italic;
  color: var(--ink-faded);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.modal-rule {
  height: 3px;
  background: var(--ink);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule-dark);
}

.modal-loading {
  font-style: italic;
  color: var(--ink-faded);
  font-size: 0.85rem;
  padding: 2rem 0;
  text-align: center;
}

.modal-error {
  font-style: italic;
  color: var(--ink-faded);
  font-size: 0.85rem;
  padding: 1rem 0;
  border-left: 3px solid var(--rule-dark);
  padding-left: 1rem;
}

/* Newspaper columns for article content */
.modal-content {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-mid);
  column-count: 2;
  column-gap: 2rem;
  column-rule: 1px solid var(--rule);
}

/* First paragraph dropcap */
.modal-content>p:first-of-type::first-letter,
.modal-content p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 3.5em;
  line-height: 0.75;
  margin: 0.1em 0.08em 0 0;
  color: var(--ink);
}

/* Images inside fetched content span both columns */
.modal-content img {
  column-span: all;
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  margin: 0.75rem 0;
  filter: sepia(0.1) contrast(0.95);
}

.modal-content h1,
.modal-content h2,
.modal-content h3 {
  column-span: all;
  font-family: var(--font-sc);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 1.25rem 0 0.5rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.25rem;
}

.modal-content a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal-content blockquote {
  border-left: 3px solid var(--rule-dark);
  margin: 0.75rem 0;
  padding: 0.25rem 1rem;
  font-style: italic;
  color: var(--ink-faded);
}

/* Fallback summary inside modal */
.modal-summary {
  font-style: italic;
  color: var(--ink-mid);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0.5rem 0 1rem;
  border-bottom: 1px dotted var(--rule);
  margin-bottom: 1rem;
}

/* Admin select field */
.admin-label select {
  font-family: var(--font-body);
  font-size: 0.82rem;
  border: 1px solid var(--rule);
  padding: 0.25rem 0.4rem;
  background: var(--newsprint);
  color: var(--ink);
  width: 100%;
}