:root {
  --bg: #ffffff;
  --bg-elevated: #ffffff;
  --bg-inset: #ecebe9;
  --fg: #333333;
  --muted: #707271;
  --subtle: #888888;
  --primary: #af2f32;
  --primary-fg: #ffffff;
  --primary-hover: #8c2528;
  --accent: #285f90;
  --danger: #af2f32;
  --border: rgba(51, 51, 51, 0.08);
  --shadow: 0 0 0 1px rgba(51, 51, 51, 0.08), 0 1px 2px -1px rgba(51, 51, 51, 0.06), 0 2px 8px 0 rgba(51, 51, 51, 0.04);
  --font-sans: "Lato", "Segoe UI", system-ui, sans-serif;
  --font-display: "Open Sans", "Lato", sans-serif;
  --radius: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
.skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip:focus-visible {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.5rem 0.9rem;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.pw-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.pw-row input { flex: 1; min-width: 0; }
.pw-toggle {
  flex-shrink: 0;
  min-height: 2.75rem;
  padding: 0 0.9rem;
  border: 0;
  border-radius: 10px;
  background: var(--bg-inset);
  color: var(--fg);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
}
.card-lite {
  background: var(--bg-elevated);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1rem;
}
.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0;
  cursor: pointer;
  color: var(--fg);
}
.switch-row small {
  color: var(--muted);
  font-weight: 400;
}
.switch-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  flex-shrink: 0;
  width: 51px;
  height: 31px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: #e4e4e2;
  box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.06);
  cursor: pointer;
  transition: background 180ms ease;
}
.switch-row input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 27px;
  height: 27px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(51, 51, 51, 0.18), 0 3px 8px rgba(51, 51, 51, 0.08);
  transition: transform 180ms ease;
}
.switch-row input[type="checkbox"]:checked {
  background: var(--primary);
}
.switch-row input[type="checkbox"]:checked::after {
  transform: translateX(20px);
}
.switch-row input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--primary) 55%, transparent), 0 0 0 4px color-mix(in srgb, var(--primary) 16%, transparent);
}
@media (prefers-reduced-motion: reduce) {
  .switch-row input[type="checkbox"],
  .switch-row input[type="checkbox"]::after {
    transition: none;
  }
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}
button:not(:disabled), [type="submit"] { cursor: pointer; }
a { color: inherit; }

.wrap {
  position: relative;
  z-index: 1;
  width: min(36rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
}
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}
.brand-logo {
  height: 2rem;
  width: auto;
  max-width: 10rem;
  object-fit: contain;
  display: block;
}
.brand-split {
  width: 1px;
  height: 1.5rem;
  background: var(--fg);
  opacity: 0.15;
}
.mark {
  display: flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--primary);
  color: var(--primary-fg);
}
.top-right a, .linkish {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 0.75rem;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
}
.top-right a:hover { color: var(--fg); }
.top-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-form { display: inline; margin: 0; }
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0 0.7rem;
  border: 0;
  background: transparent;
  border-radius: 10px;
  text-decoration: none;
  color: var(--fg);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}
.nav-btn svg { flex-shrink: 0; }
.nav-btn:hover { background: var(--bg-inset); color: var(--fg); }
.ok-flash {
  background: color-mix(in srgb, var(--primary) 12%, var(--bg-elevated));
  color: var(--primary);
}
.send-result {
  margin-top: 1.25rem;
  background: var(--bg-elevated);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.15rem 1.2rem;
}
.send-result[hidden] { display: none !important; }
.result-lead {
  margin: 0;
  font-weight: 500;
}
.copy-row { margin-top: 0.9rem; }
.copy-row label { margin-bottom: 0.35rem; }
.send-result input[readonly] {
  background: var(--bg-inset);
}

.kicker {
  margin: 2.5rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}
h1 {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-wrap: balance;
}
.lead { margin: 1rem 0 0; color: var(--muted); max-width: 32rem; }

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.stat {
  padding: 0.15rem 0.25rem;
}
.stat-kicker {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-n {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-hint { margin: 0.3rem 0 0; font-size: 0.75rem; color: var(--muted); }

.progress { margin-top: 0.25rem; }
.progress-track {
  height: 0.5rem;
  background: var(--bg-inset);
  border-radius: 999px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 0;
  background: var(--primary);
  border-radius: 999px;
  transition: width 150ms ease;
}
.progress-bar.pulse { animation: progress-pulse 1.1s ease-in-out infinite; }
.progress-text {
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}
@keyframes progress-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.card {
  margin-top: 1.25rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}
.mail-preview { padding-bottom: 1.1rem; }
.mail-preview .kicker { margin: 0; }
.mail-subject { margin: 0.35rem 0 0.9rem; font-weight: 700; }
.mail-sheet {
  overflow: hidden;
  background: var(--bg-elevated);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.mail-head {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 0.8rem 1.15rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.mail-body { padding: 1.15rem 1.15rem 1.25rem; }
.mail-body h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 700;
}
.mail-msg { margin: 0.8rem 0 0; font-size: 0.95rem; line-height: 1.55; }
.mail-label {
  margin: 1.15rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}
.mail-files {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.mail-file {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.35;
}
.mail-file:last-child { border-bottom: 0; }
.mail-file span { min-width: 0; overflow-wrap: anywhere; }
.mail-file em {
  flex-shrink: 0;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.mail-file.total span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.mail-file.total em { font-weight: 700; color: var(--fg); font-size: 0.9rem; }
.mail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.15rem;
  height: 3rem;
  padding: 0 1.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  text-decoration: none;
  border-radius: 12px;
  font: inherit;
  font-weight: 500;
}
.mail-note { margin: 0.85rem 0 0; font-size: 0.875rem; color: var(--muted); }
.mail-fallback { margin: 0.85rem 0 0; font-size: 0.75rem; color: var(--subtle); overflow-wrap: anywhere; }
.mail-fallback a { color: var(--accent); }
.mail-foot { margin: 0.85rem 0 0; font-size: 0.75rem; color: var(--subtle); }
.mail-foot span { color: var(--accent); font-weight: 700; }
.drop,
.dropzone {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: left;
  background: var(--bg-elevated);
  border: 2px dashed color-mix(in srgb, var(--primary) 55%, transparent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.15rem;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.drop-icon {
  display: flex;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--primary);
  color: var(--primary-fg);
}
.drop-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.drop strong,
.dropzone strong { display: block; font-weight: 500; color: var(--fg); }
.drop .drop-copy span,
.dropzone small {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.drop-copy { flex: 1; min-width: 10rem; }
.drop-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: auto;
  height: 2.75rem;
  padding: 0 1rem;
  border-radius: 12px;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: auto;
  flex-shrink: 0;
}
.drop-cta svg {
  width: 1rem;
  height: 1rem;
}

.file-icons-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.fb {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 8.8rem;
  height: 11rem;
  padding: 1rem 0.9rem 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--primary-fg);
  filter: blur(3px);
  opacity: 0.9;
  box-shadow: 0 14px 32px -10px rgb(51 51 51 / 0.28);
}
.fb-pdf { left: -1%; top: 8%; background: var(--primary); transform: rotate(-16deg); }
.fb-zip { left: -3%; top: 42%; background: var(--fg); filter: blur(3px); transform: rotate(12deg); }
.fb-png { right: -1%; top: 7%; background: var(--accent); transform: rotate(16deg); }
.fb-mp4 { right: -3%; top: 40%; background: var(--muted); filter: blur(3.5px); transform: rotate(-11deg); }
.fb-xls { left: -2%; top: 74%; background: var(--accent); transform: rotate(8deg); }
.fb-doc { right: -2%; top: 74%; background: var(--primary); transform: rotate(-14deg); }
.fb-ppt { left: 14%; top: -5%; background: var(--primary); width: 7.4rem; height: 9.2rem; filter: blur(4px); opacity: 0.78; transform: rotate(18deg); }
.fb-jpg { right: 14%; top: -4%; background: var(--accent); width: 7.2rem; height: 9rem; filter: blur(4px); opacity: 0.78; transform: rotate(-18deg); }
@media (max-width: 639px) {
  .fb-ppt, .fb-jpg { display: none; }
  .fb { width: 7.2rem; height: 9rem; filter: blur(2.5px); }
}

.stack { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.logo-panel {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.logo-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}
.logo-panel .hint { margin: 0.4rem 0 0; }
.logo-preview {
  margin: 1rem 0 0;
  display: flex;
  align-items: center;
  min-height: 3.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-inset);
  border-radius: 10px;
}
.logo-preview img {
  height: 2rem;
  width: auto;
  max-width: 12rem;
  object-fit: contain;
  display: block;
}
.logo-panel .stack { margin-top: 1rem; }
input[type="file"] {
  width: 100%;
  font: inherit;
  color: inherit;
}
label { display: block; font-size: 0.9rem; font-weight: 500; color: var(--muted); margin-bottom: 0.4rem; }
input:not([type="hidden"]):not([type="file"]):not([type="color"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="image"]),
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 2.75rem;
  border: 0;
  border-radius: 12px;
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  padding: 0 0.9rem;
  font: inherit;
  color: inherit;
}
.color-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}
.color-row input[type="color"] {
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.15rem;
  border: 0;
  border-radius: 10px;
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.color-row input[type="text"] {
  flex: 1 1 8rem;
  width: 8.5rem;
  max-width: 11rem;
  min-width: 7rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-transform: uppercase;
}
.color-row .btn {
  width: auto;
  flex: 0 0 auto;
  padding: 0 1.15rem;
}
.swatches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
}
.swatch {
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.swatch:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--primary) 55%, transparent), 0 0 0 4px color-mix(in srgb, var(--primary) 16%, transparent);
}
textarea { height: auto; min-height: 7rem; padding: 0.75rem 0.9rem; resize: vertical; }
textarea#recipient { min-height: 4.25rem; }
.file-list {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  display: grid;
  gap: 0.4rem;
}
.file-list li {
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
}
.file-pick {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.file-pick-meta {
  min-width: 0;
  flex: 1;
}
.file-pick-meta strong {
  display: block;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-pick-meta span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.file-remove {
  flex-shrink: 0;
  height: 2.75rem;
  padding: 0 0.7rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.875rem;
}
.file-remove:hover { background: var(--bg-inset); color: var(--fg); }
.drop.over,
.dropzone.over { border-color: var(--primary); background: var(--bg-inset); }
.file-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.file-row .hint { display: inline; margin: 0 0 0 0.35rem; }
.inline-dl { margin: 0; }
.inline-dl .btn {
  width: auto;
  height: 2.5rem;
  padding: 0 0.85rem;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--primary) 55%, transparent), 0 0 0 4px color-mix(in srgb, var(--primary) 16%, transparent);
}
.hint { margin: 0.4rem 0 0; font-size: 0.8rem; color: var(--subtle); }
.grid-2 { display: grid; gap: 1rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.opt {
  background: var(--bg-elevated);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1rem;
}
.opt-row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.opt-row label { margin: 0; color: var(--fg); }

.switch { position: relative; width: 2.75rem; height: 1.5rem; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span {
  position: absolute; inset: 0;
  background: var(--bg-inset);
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: background 150ms ease;
}
.switch span::after {
  content: "";
  position: absolute;
  width: 1.15rem; height: 1.15rem;
  left: 0.2rem; top: 0.18rem;
  background: var(--bg-elevated);
  border-radius: 999px;
  transition: transform 150ms ease;
}
.switch input:checked + span { background: var(--primary); }
.switch input:checked + span::after { transform: translateX(1.2rem); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 3rem;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  color: var(--primary-fg);
  font: inherit;
  font-weight: 500;
  text-decoration: none;
}
.btn:hover { background: var(--primary-hover); }
.btn.ghost {
  width: auto;
  height: 2.75rem;
  padding: 0 1rem;
  background: var(--bg-elevated);
  color: var(--fg);
  box-shadow: var(--shadow);
}
.color-row .btn {
  width: auto;
  flex: 0 0 auto;
  padding: 0 1.15rem;
}
.flash {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--danger) 10%, var(--bg-elevated));
  color: var(--danger);
}
.flash[hidden] { display: none !important; }
[hidden] { display: none !important; }
#pw-wrap { margin-top: 0.75rem; }
.opt:has(#protect:checked) #pw-wrap { display: block !important; }
.ok { color: var(--primary); }
code { font-size: 0.85em; background: var(--bg-inset); padding: 0.1em 0.35em; border-radius: 6px; }
pre {
  white-space: pre-wrap;
  font-family: var(--font-sans);
  color: var(--muted);
  font-size: 0.95rem;
}
.steps { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.25rem; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: 0.15rem 1rem; }
.steps .n { font-family: var(--font-display); font-size: 1.25rem; color: var(--primary); }
.steps h2 { margin: 0; font-size: 1rem; font-weight: 500; }
.steps p { margin: 0; color: var(--muted); font-size: 0.9rem; }
file::-webkit-file-upload-button { display: none; }
input[type="file"].sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.rss {
  margin-top: 1.75rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.25rem 0.6rem;
}
.rss-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.35rem;
}
.rss h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.rss-all {
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.rss-all:hover { text-decoration: underline; }
.rss-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}
.rss-list li + li { border-top: 1px solid var(--border); }
.rss-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 0;
  text-decoration: none;
  color: inherit;
}
.rss-item img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg-inset);
  flex-shrink: 0;
}
.rss-body { min-width: 0; flex: 1; }
.rss-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}
.rss-item:hover strong { color: var(--primary); }
.rss-body em {
  display: block;
  margin-top: 0.2rem;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--muted);
}
.rss-excerpt {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--muted);
}


.og-preview {
  display: block;
  width: 100%;
  max-width: 28rem;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg-inset);
  box-shadow: var(--shadow);
  margin: 0.75rem 0 1rem;
}
