:root {
  --espresso: #1c1410;
  --espresso-light: #2d221b;
  --cream: #f7f2eb;
  --cream-warm: #efe8df;
  --accent: #b8860b;
  --text: #1c1410;
  --text-muted: #5c524a;
}

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

html, body {
  min-height: 100%;
}

body {
  font-family: Outfit, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(184, 134, 11, 0.16), transparent 55%),
    var(--cream);
  line-height: 1.55;
  padding: 1.5rem 1.25rem 3rem;
}

.share-header {
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}

.share-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
}

.share-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.share-logo span {
  font-family: "Instrument Serif", serif;
  font-size: 1.35rem;
}

.share-card {
  max-width: 40rem;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(28, 20, 16, 0.08);
  border-radius: 18px;
  padding: 1.75rem 1.6rem 1.9rem;
  box-shadow: 0 16px 40px rgba(28, 20, 16, 0.06);
}

.share-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.share-hero {
  width: 100%;
  max-height: 18rem;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.15rem;
  background: var(--cream-warm);
}

.share-card h1 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.55rem;
}

.share-author,
.share-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.share-body {
  margin-top: 1rem;
  white-space: pre-wrap;
  color: var(--espresso-light);
}

.share-cta {
  display: inline-flex;
  margin-top: 1.6rem;
  padding: 0.7rem 1.25rem;
  background: var(--espresso);
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
}

.share-cta:hover {
  background: var(--espresso-light);
}

.share-hint {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
