/* ═══════════════════════════════════════════════
   halfsentence · Main Stylesheet
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&display=swap');

/* ── Variables ── */
:root {
  --white:       #FFFFFF;
  --snow:        #F7F8F6;
  --fog:         #F0F2EE;
  --mist:        #E4E7E0;
  --sage:        #5E7856;
  --sage-d:      #3F5439;
  --sage-l:      #8AAD82;
  --sage-p:      #DCE8D9;
  --sage-faint:  #F0F5EF;
  --ink:         #1B1D19;
  --ink-s:       #3A3D36;
  --ink-m:       #606459;
  --ink-l:       #969A90;
  --border:      #DDE1D8;
  --border-l:    #EAECE7;
  --rose:        #B85C4A;
  --rose-p:      #FAEEE9;
  --amber:       #C4891E;
  --amber-p:     #FDF3E3;
  --r:           8px;
  --r-lg:        12px;
  --sh-sm:       0 1px 4px rgba(0,0,0,.06);
  --sh-md:       0 4px 20px rgba(0,0,0,.08);
  --sh-lg:       0 12px 40px rgba(0,0,0,.12);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--snow); }
::-webkit-scrollbar-thumb { background: var(--mist); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--sage-l); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.fade-up { animation: fadeUp .3s ease both; }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 32px; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-l);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 32px; height: 58px;
}
.nav-logo {
  font-family: 'Lora', serif;
  font-size: 20px; font-weight: 600; font-style: italic;
  color: var(--ink); cursor: pointer;
  display: flex; align-items: baseline;
}
.nav-logo-dot {
  width: 5px; height: 5px; background: var(--sage);
  border-radius: 50%; display: inline-block;
  margin-left: 2px; margin-bottom: 4px;
}
.nav-links { display: flex; gap: 2px; }
.nav-link {
  font-size: 14px; font-weight: 400; color: var(--ink-m);
  padding: 6px 14px; border-radius: 99px;
  transition: all .18s; border: none; background: none; cursor: pointer;
}
.nav-link:hover { color: var(--ink); background: var(--fog); }
.nav-link.active { color: var(--sage-d); background: var(--sage-p); font-weight: 500; }

/* ── HERO ── */
.hero {
  max-width: 1160px; margin: 0 auto;
  padding: 80px 32px 64px;
  display: grid; grid-template-columns: 1fr 340px;
  gap: 60px; align-items: center;
  border-bottom: 1px solid var(--border-l);
}
.hero-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.hero-eyebrow::before {
  content: ''; width: 24px; height: 1.5px;
  background: var(--sage); display: inline-block;
}
.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -.02em; margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--sage-d); }
.hero-desc {
  font-family: 'Crimson Pro', serif;
  font-size: 19px; color: var(--ink-m);
  line-height: 1.65; max-width: 500px; margin-bottom: 28px;
}
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-tag {
  font-size: 12px; font-weight: 500;
  padding: 5px 14px; border-radius: 99px;
  border: 1px solid var(--border); color: var(--ink-m);
  background: var(--snow);
}
.hero-side {
  background: var(--snow); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  position: relative; overflow: hidden;
}
.hero-side::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-l));
}
.hero-side-label {
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 12px;
}
.hero-side-quote {
  font-family: 'Crimson Pro', serif; font-size: 19px;
  font-style: italic; color: var(--ink-s); line-height: 1.5; margin-bottom: 12px;
}
.hero-side-attr { font-size: 13px; color: var(--ink-l); }

/* ── SECTION ── */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 44px 0 24px;
}
.section-title {
  font-family: 'Lora', serif; font-size: 22px;
  font-weight: 600; letter-spacing: -.01em;
}
.section-link {
  font-size: 13px; color: var(--sage); font-weight: 500;
  cursor: pointer; border-bottom: 1px solid var(--sage-p);
  padding-bottom: 1px; transition: border-color .15s;
}
.section-link:hover { border-color: var(--sage); }

/* ── FEATURED GRID ── */
.featured-grid {
  max-width: 1160px; margin: 0 auto;
  padding: 0 32px 8px;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 18px;
}
.feat-main {
  background: var(--snow); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  cursor: pointer; transition: all .22s; position: relative;
}
.feat-main:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.feat-cover {
  width: 100%; height: 200px; object-fit: cover;
  background: var(--fog);
}
.feat-cover-placeholder {
  width: 100%; height: 200px; background: var(--fog);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.feat-body { padding: 28px 32px; }
.feat-badge {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--sage-d);
  background: var(--sage-p); padding: 4px 10px;
  border-radius: 99px; margin-bottom: 14px;
}
.feat-title {
  font-family: 'Lora', serif; font-size: 22px; font-weight: 700;
  line-height: 1.25; margin-bottom: 10px; color: var(--ink);
}
.feat-excerpt {
  font-family: 'Crimson Pro', serif; font-size: 17px;
  color: var(--ink-m); line-height: 1.65; margin-bottom: 20px;
}
.feat-footer { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.react-chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; padding: 5px 12px; border-radius: 99px;
  border: 1px solid var(--border); background: var(--white);
  color: var(--ink-m); cursor: pointer; transition: all .15s; font-weight: 500;
}
.react-chip:hover { border-color: var(--sage); color: var(--sage-d); background: var(--sage-p); }
.feat-read { font-size: 12px; color: var(--ink-l); margin-left: auto; }

/* Side cards */
.feat-side { display: flex; flex-direction: column; gap: 14px; }
.side-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); cursor: pointer; transition: all .18s;
  overflow: hidden;
}
.side-card:hover { box-shadow: var(--sh-sm); border-color: var(--sage-p); transform: translateX(2px); }
.side-card-img {
  width: 100%; height: 80px; object-fit: cover;
  background: var(--fog); display: flex; align-items: center;
  justify-content: center; font-size: 28px;
}
.side-card-body { padding: 14px 16px; }
.side-card-cat {
  font-size: 10px; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 6px; display: block;
}
.side-card-title {
  font-family: 'Lora', serif; font-size: 15px; font-weight: 600;
  line-height: 1.3; color: var(--ink); margin-bottom: 6px;
}
.side-card-meta { font-size: 12px; color: var(--ink-l); display: flex; gap: 10px; }

/* ── POSTS GRID ── */
.posts-grid {
  max-width: 1160px; margin: 0 auto;
  padding: 0 32px 72px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.post-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); cursor: pointer; transition: all .2s; overflow: hidden;
}
.post-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: var(--sage-p); }
.post-card-cover {
  width: 100%; height: 140px; object-fit: cover;
  background: var(--fog); display: flex; align-items: center;
  justify-content: center; font-size: 32px;
}
.post-card-body { padding: 18px 20px; }
.post-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.post-card-cat {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--sage-d);
}
.post-card-date { font-size: 12px; color: var(--ink-l); }
.post-card-title {
  font-family: 'Lora', serif; font-size: 16px; font-weight: 600;
  line-height: 1.3; margin-bottom: 8px; color: var(--ink);
}
.post-card-excerpt {
  font-family: 'Crimson Pro', serif; font-size: 15px;
  color: var(--ink-m); line-height: 1.6;
}
.post-card-footer {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--border-l);
}
.post-card-stat { font-size: 12px; color: var(--ink-l); display: flex; align-items: center; gap: 4px; }
.post-card-time { font-size: 12px; color: var(--ink-l); margin-left: auto; }

/* ── SINGLE POST ── */
.post-page { max-width: 720px; margin: 0 auto; padding: 52px 32px 88px; }
.post-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-l); cursor: pointer;
  margin-bottom: 36px; border: none; background: none;
  transition: color .15s; font-weight: 500;
}
.post-back:hover { color: var(--sage); }
.post-cat {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--sage-d); background: var(--sage-p);
  padding: 4px 12px; border-radius: 99px; margin-bottom: 16px;
}
.post-title {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  line-height: 1.15; letter-spacing: -.02em; margin-bottom: 20px;
}
.post-byline {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--ink-l);
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border-l);
}
.post-byline-dot { color: var(--border); }
.post-cover {
  width: 100%; height: 320px; object-fit: cover;
  border-radius: var(--r); margin-bottom: 36px;
  background: var(--fog);
}
.post-body { font-family: 'Crimson Pro', serif; font-size: 19px; line-height: 1.8; color: var(--ink-s); }
.post-body p { margin-bottom: 22px; }
.post-body h2 {
  font-family: 'Lora', serif; font-size: 26px; font-weight: 700;
  color: var(--ink); margin: 44px 0 14px; letter-spacing: -.01em;
}
.post-body h3 {
  font-family: 'Lora', serif; font-size: 20px; font-weight: 600;
  color: var(--ink); margin: 32px 0 10px;
}
.post-body blockquote {
  border-left: 2px solid var(--sage); padding: 4px 24px;
  margin: 32px 0; color: var(--ink-m); font-style: italic; font-size: 21px;
}
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 20px; }
.post-body li { margin-bottom: 6px; }
.post-body a { color: var(--sage-d); border-bottom: 1px solid var(--sage-p); }
.post-body a:hover { border-color: var(--sage); }

/* Reaction bar */
.reaction-bar {
  display: flex; align-items: center; gap: 10px;
  margin: 44px 0 36px; padding: 20px 24px;
  background: var(--snow); border: 1px solid var(--border);
  border-radius: var(--r); flex-wrap: wrap;
}
.reaction-bar-q { font-size: 14px; color: var(--ink-m); margin-right: 4px; }
.reaction-big {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 99px;
  border: 1px solid var(--border); background: var(--white);
  cursor: pointer; font-size: 14px; font-weight: 500;
  transition: all .18s; color: var(--ink-s);
}
.reaction-big:hover { transform: scale(1.03); }
.reaction-big.liked { background: #eaf4ed; border-color: #7dbf8e; color: #3d7a50; }
.reaction-big.hated { background: var(--rose-p); border-color: #c0886e; color: var(--rose); }
.reaction-count { font-weight: 700; margin-left: 4px; }

/* Comments */
.comments-section { margin-top: 48px; }
.comments-title {
  font-family: 'Lora', serif; font-size: 20px; font-weight: 600;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border-l);
}
.comment-form {
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; margin-bottom: 32px; transition: box-shadow .18s;
}
.comment-form:focus-within { box-shadow: 0 0 0 2px var(--sage-p); border-color: var(--sage-l); }
.comment-form-name {
  width: 100%; padding: 12px 16px;
  border: none; border-bottom: 1px solid var(--border-l);
  outline: none; font-size: 14px; color: var(--ink); background: var(--snow);
}
.comment-form-name::placeholder { color: var(--ink-l); }
.comment-form-body {
  width: 100%; padding: 14px 16px; border: none; outline: none;
  font-family: 'Crimson Pro', serif; font-size: 17px;
  color: var(--ink); background: var(--white); resize: none; min-height: 90px; line-height: 1.6;
}
.comment-form-body::placeholder { color: var(--ink-l); }
.comment-form-footer {
  display: flex; justify-content: flex-end;
  padding: 10px 14px; background: var(--snow); border-top: 1px solid var(--border-l);
}
.btn-submit {
  background: var(--sage); color: var(--white);
  border: none; padding: 8px 20px; border-radius: 99px;
  font-size: 13px; font-weight: 500; cursor: pointer; transition: background .15s;
}
.btn-submit:hover { background: var(--sage-d); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; }

.comment-item { padding: 20px 0; border-bottom: 1px solid var(--border-l); }
.comment-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.comment-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--white); flex-shrink: 0;
}
.comment-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.comment-date { font-size: 12px; color: var(--ink-l); }
.comment-text { font-family: 'Crimson Pro', serif; font-size: 17px; line-height: 1.65; color: var(--ink-s); }

/* ── READERS CORNER ── */
.readers-banner {
  background: var(--snow); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 44px; margin-bottom: 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.readers-banner h1 {
  font-family: 'Lora', serif; font-size: 34px; font-weight: 700;
  font-style: italic; margin-bottom: 6px;
}
.readers-banner p { font-family: 'Crimson Pro', serif; font-size: 17px; color: var(--ink-m); }
.btn-primary {
  background: var(--sage); color: var(--white);
  border: none; padding: 12px 24px; border-radius: 99px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  white-space: nowrap; transition: background .15s;
}
.btn-primary:hover { background: var(--sage-d); }

.readers-layout { display: grid; grid-template-columns: 210px 1fr; gap: 28px; }
.readers-sidebar {}
.rs-section { margin-bottom: 22px; }
.rs-label {
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-l); margin-bottom: 8px; padding: 0 8px;
}
.rs-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; border-radius: var(--r); font-size: 14px;
  color: var(--ink-m); cursor: pointer; transition: all .14s; border: none; background: none; width: 100%;
}
.rs-item:hover { background: var(--fog); color: var(--ink); }
.rs-item.active { background: var(--sage-p); color: var(--sage-d); font-weight: 500; }
.rs-count { font-size: 12px; color: var(--ink-l); }

.reader-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 20px;
  cursor: pointer; transition: all .18s;
  display: flex; gap: 14px; margin-bottom: 12px;
}
.reader-card:hover { border-color: var(--sage-p); box-shadow: var(--sh-md); }
.reader-votes {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; flex-shrink: 0; padding-top: 2px;
}
.vote-btn {
  width: 26px; height: 26px; border-radius: var(--r);
  border: 1px solid var(--border); background: var(--snow);
  cursor: pointer; font-size: 11px; display: flex;
  align-items: center; justify-content: center; transition: all .12s; color: var(--ink-m);
}
.vote-btn:hover { border-color: var(--sage-l); color: var(--sage); background: var(--sage-p); }
.vote-count { font-size: 14px; font-weight: 600; color: var(--sage); }
.reader-main { flex: 1; min-width: 0; }
.reader-flair {
  display: inline-block; font-size: 10px; font-weight: 600;
  padding: 2px 9px; border-radius: 99px; margin-bottom: 7px;
  letter-spacing: .06em; text-transform: uppercase;
}
.flair-review   { background: #f0eeff; color: #5b3fa5; }
.flair-discuss  { background: #e8f3ff; color: #1a5fa0; }
.flair-rec      { background: #eaf4ed; color: #2d7048; }
.reader-title {
  font-family: 'Lora', serif; font-size: 16px; font-weight: 600;
  line-height: 1.3; margin-bottom: 5px; color: var(--ink);
}
.reader-preview { font-family: 'Crimson Pro', serif; font-size: 15px; color: var(--ink-m); line-height: 1.55; }
.reader-meta { display: flex; gap: 10px; margin-top: 8px; font-size: 12px; color: var(--ink-l); flex-wrap: wrap; }

/* ── ABOUT ── */
.about-page { max-width: 740px; margin: 0 auto; padding: 72px 32px 88px; }
.about-top { text-align: center; margin-bottom: 56px; }
.about-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--sage-p); border: 2px solid var(--sage-l);
  margin: 0 auto 22px; display: flex; align-items: center;
  justify-content: center; font-family: 'Lora', serif;
  font-size: 32px; font-weight: 600; font-style: italic; color: var(--sage-d);
}
.about-name { font-family: 'Lora', serif; font-size: 38px; font-weight: 700; margin-bottom: 8px; }
.about-tagline { font-family: 'Crimson Pro', serif; font-size: 18px; color: var(--ink-m); font-style: italic; }
.about-rule { width: 48px; height: 2px; background: var(--sage); margin: 22px auto; border-radius: 1px; }
.about-body { font-family: 'Crimson Pro', serif; font-size: 19px; line-height: 1.8; color: var(--ink-s); }
.about-body p { margin-bottom: 20px; }
.about-body h2 { font-family: 'Lora', serif; font-size: 22px; font-weight: 600; color: var(--ink); margin: 36px 0 14px; }
.about-links { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 44px; }
.about-link {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 99px;
  border: 1px solid var(--border); font-size: 13px;
  color: var(--ink-m); cursor: pointer; font-weight: 500; transition: all .15s;
}
.about-link:hover { border-color: var(--sage); color: var(--sage-d); background: var(--sage-p); }

/* ── MODAL ── */
.modal-bg {
  display: none; position: fixed; inset: 0;
  background: rgba(27,29,25,.55); z-index: 300;
  align-items: center; justify-content: center; padding: 20px;
}
.modal-bg.open { display: flex; animation: fadeUp .2s ease; }
.modal-box {
  background: var(--white); border-radius: 14px;
  width: 100%; max-width: 520px; overflow: hidden; box-shadow: var(--sh-lg);
}
.modal-head {
  padding: 20px 24px; border-bottom: 1px solid var(--border-l);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-head h3 { font-family: 'Lora', serif; font-size: 20px; font-weight: 600; }
.modal-close { border: none; background: none; font-size: 20px; cursor: pointer; color: var(--ink-l); }
.modal-close:hover { color: var(--ink); }
.modal-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 14px; }
.form-label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-l); margin-bottom: 5px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; border: 1px solid var(--border); border-radius: var(--r);
  padding: 10px 12px; font-size: 14px; color: var(--ink);
  background: var(--white); outline: none; transition: border-color .15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--sage-l); box-shadow: 0 0 0 3px var(--sage-p);
}
.form-textarea { min-height: 110px; resize: vertical; font-family: 'Crimson Pro', serif; font-size: 16px; }
.modal-foot { padding: 0 24px 22px; display: flex; justify-content: flex-end; gap: 10px; }
.btn-ghost {
  background: none; border: 1px solid var(--border); color: var(--ink-m);
  padding: 9px 20px; border-radius: 99px; font-size: 13px; cursor: pointer; font-weight: 500;
}
.btn-ghost:hover { border-color: var(--ink-m); }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border-l); padding: 32px;
  text-align: center; font-size: 13px; color: var(--ink-l);
}
.footer span { color: var(--sage); }

/* ── LOADING ── */
.spinner {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--mist); border-top-color: var(--sage);
  animation: spin .7s linear infinite; margin: 40px auto;
}
.loading-text { text-align: center; color: var(--ink-l); font-size: 14px; margin-top: 12px; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--white);
  padding: 10px 22px; border-radius: 99px; font-size: 13px; font-weight: 500;
  z-index: 999; opacity: 0; pointer-events: none;
  transition: opacity .22s; white-space: nowrap; box-shadow: var(--sh-lg);
}
.toast.show { opacity: 1; }

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center; padding: 60px 20px; color: var(--ink-l);
}
.empty-state-icon { font-size: 40px; margin-bottom: 12px; }
.empty-state-text { font-size: 15px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .featured-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .readers-layout { grid-template-columns: 1fr; }
  .readers-sidebar { display: none; }
}
@media (max-width: 600px) {
  .posts-grid { grid-template-columns: 1fr; }
  .container, .container-sm { padding: 0 18px; }
  .nav-links { display: none; }
  .readers-banner { flex-direction: column; text-align: center; }
}
