/* Article engagement â€” like / agree / disagree + debate board on one article only */
.eng-panel { border: 1px solid var(--line, #d8d2c5); background: var(--white, #fff); margin: 28px 0 32px; padding: 18px 18px 20px; }
.eng-article-head { margin-bottom: 14px; }
.eng-kicker {
  color: var(--gold, #8b6508); font-family: Inconsolata, monospace; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; margin: 0 0 4px; text-transform: uppercase;
}
.eng-article-title { border: 0; font-size: 22px; margin: 0 0 6px; padding: 0; }
.eng-scope-note { margin-top: 0 !important; }
.eng-sr-only {
  border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute; width: 1px;
}
.eng-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.pub-story-engage {
  color: var(--ink, #0d0f0c); display: inline-block; font-family: Inconsolata, monospace;
  font-size: 11px; font-weight: 700; letter-spacing: .04em; margin-top: 10px; text-transform: uppercase;
}
.eng-btn, .eng-chip {
  background: var(--ink, #0d0f0c); border: 1px solid var(--ink, #0d0f0c); color: #fff; cursor: pointer;
  font-family: Inconsolata, monospace; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 10px 14px; text-decoration: none; text-transform: uppercase;
}
.eng-btn.eng-secondary { background: #fff; color: var(--ink, #0d0f0c); }
.eng-btn.is-on, .eng-follow.is-on { background: #16783c; border-color: #16783c; color: #fff; }

/* Shiny colored reaction buttons under each article */
.eng-actions .eng-chip {
  border: 0;
  border-radius: 8px;
  box-shadow:
    0 2px 0 rgba(0, 0, 0, 0.18),
    0 6px 14px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #fff !important;
  min-height: 42px;
  padding: 11px 16px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.eng-actions .eng-chip:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    0 3px 0 rgba(0, 0, 0, 0.16),
    0 10px 18px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.eng-actions .eng-chip:active {
  filter: brightness(0.96);
  transform: translateY(1px);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.2),
    0 3px 8px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.eng-actions .eng-chip b {
  color: #fff !important;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  margin-left: 6px;
  text-transform: none;
  letter-spacing: 0;
}

/* Like â€” red */
.eng-chip-like {
  background: linear-gradient(180deg, #ff5a5f 0%, #e11d2e 48%, #c41020 100%) !important;
  border-color: #a30f1a !important;
}
.eng-chip-like.is-on {
  background: linear-gradient(180deg, #ff7a7e 0%, #ff2d3f 45%, #d10f22 100%) !important;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.35),
    0 2px 0 rgba(120, 0, 0, 0.25),
    0 8px 16px rgba(193, 16, 32, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
}

/* Agree â€” green */
.eng-chip-agree {
  background: linear-gradient(180deg, #3dcf6a 0%, #18a34a 48%, #0f7a36 100%) !important;
  border-color: #0b5c28 !important;
}
.eng-chip-agree.is-on {
  background: linear-gradient(180deg, #55e07f 0%, #1fbf55 45%, #129140 100%) !important;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.35),
    0 2px 0 rgba(0, 80, 30, 0.25),
    0 8px 16px rgba(15, 122, 54, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
}

/* Disagree â€” black */
.eng-chip-disagree {
  background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 48%, #0a0a0a 100%) !important;
  border-color: #000 !important;
}
.eng-chip-disagree.is-on {
  background: linear-gradient(180deg, #555 0%, #222 45%, #000 100%) !important;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.2),
    0 2px 0 rgba(0, 0, 0, 0.45),
    0 8px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

/* Comment â€” navy blue */
.eng-chip-comment {
  background: linear-gradient(180deg, #3d5fbf 0%, #1e3a8a 48%, #152c6b 100%) !important;
  border-color: #0f1f4d !important;
}
.eng-chip-comment:hover,
.eng-chip-comment:focus {
  background: linear-gradient(180deg, #4d72d4 0%, #2548a8 48%, #1a357f 100%) !important;
}

.eng-chip b { font-family: "DM Serif Display", Georgia, serif; font-size: 15px; font-weight: 400; margin-left: 4px; text-transform: none; letter-spacing: 0; }
.eng-note, .eng-empty { color: var(--grey, #53534d); font-size: 13px; margin: 10px 0 0; }
.eng-note.is-error { color: #9b1c1c; }

.eng-stance-form {
  background: var(--paper-dim, #f6f3ec); border: 1px solid var(--line, #d8d2c5);
  display: grid; gap: 10px; margin: 14px 0; padding: 14px;
}
.eng-stance-form[hidden] { display: none !important; }
.eng-stance-prompt { font-size: 16px; font-weight: 700; margin: 0; }
.eng-stance-prompt-agree { color: #16783c; }
.eng-stance-prompt-disagree { color: #9b1c1c; }
.eng-stance-form textarea,
.eng-comment-form textarea {
  border: 1px solid var(--line, #d8d2c5); font: inherit; min-height: 100px; padding: 10px 12px; width: 100%;
}
.eng-stance-actions { display: flex; flex-wrap: wrap; gap: 8px; }

.eng-debate { border-top: 1px solid var(--line, #d8d2c5); margin-top: 18px; padding-top: 16px; }
.eng-debate-grid {
  display: grid; gap: 14px; grid-template-columns: 1fr 1fr; margin-top: 12px;
}
.eng-debate-col {
  background: #faf9f6; border: 1px solid var(--line, #d8d2c5); padding: 12px 14px;
}
.eng-debate-col h4 {
  border: 0; font-family: Inconsolata, monospace; font-size: 12px; font-weight: 700;
  letter-spacing: .05em; margin: 0 0 12px; padding: 0; text-transform: uppercase;
}
.eng-debate-agree h4 { color: #16783c; }
.eng-debate-disagree h4 { color: #9b1c1c; }
.eng-stance { border-bottom: 1px solid var(--line, #d8d2c5); padding: 10px 0; }
.eng-stance:last-child { border-bottom: 0; }
.eng-stance header {
  align-items: baseline; display: flex; gap: 10px; justify-content: space-between; margin-bottom: 6px;
}
.eng-stance time { color: var(--grey, #53534d); font-family: Inconsolata, monospace; font-size: 11px; }
.eng-stance-reason { font-size: 16px; line-height: 1.5; margin: 0; }

.eng-comments { border-top: 1px solid var(--line, #d8d2c5); margin-top: 14px; padding-top: 14px; }
.eng-comments-title { border: 0; font-size: 20px; margin: 0 0 8px; padding: 0; }
.eng-comment { border-bottom: 1px solid var(--line, #d8d2c5); padding: 12px 0; }
.eng-comment header { align-items: baseline; display: flex; gap: 10px; justify-content: space-between; margin-bottom: 6px; }
.eng-comment time { color: var(--grey, #53534d); font-family: Inconsolata, monospace; font-size: 11px; }
.eng-comment p { font-size: 17px; line-height: 1.5; margin: 0; }
.eng-comment-form { display: grid; gap: 10px; margin-top: 14px; }

/* Facebook-style comment thread */
.fb-comments {
  border-top: 1px solid var(--line, #d8d2c5); margin-top: 22px; padding-top: 16px;
}
.fb-comments-title {
  border: 0; font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px; font-weight: 700; margin: 0 0 14px; padding: 0;
}
.fb-comments-count {
  background: #e4e6eb; border-radius: 10px; color: #050505; font-size: 13px;
  font-weight: 600; margin-left: 6px; padding: 2px 8px;
}
.fb-composer {
  align-items: flex-start; display: flex; gap: 10px; margin-bottom: 16px;
}
.fb-composer-form {
  background: #f0f2f5; border-radius: 20px; display: flex; flex: 1; flex-wrap: wrap;
  gap: 8px; padding: 8px 12px;
}
.fb-composer-form textarea {
  background: transparent; border: 0; flex: 1 1 180px; font: inherit; font-size: 15px;
  min-height: 36px; outline: none; padding: 6px 0; resize: vertical; width: 100%;
}
.fb-post-btn, .fb-cancel-btn {
  background: #0866ff; border: 0; border-radius: 6px; color: #fff; cursor: pointer;
  font-size: 13px; font-weight: 600; padding: 8px 14px;
}
.fb-cancel-btn { background: #e4e6eb; color: #050505; }
.fb-post-btn:hover { background: #0756d6; }
.fb-avatar {
  align-items: center; background: #0866ff; border-radius: 50%; color: #fff;
  display: flex; flex-shrink: 0; font-size: 14px; font-weight: 700; height: 36px;
  justify-content: center; overflow: hidden; width: 36px;
}
.fb-avatar img { height: 100%; object-fit: cover; width: 100%; }
.fb-avatar-me { background: #65676b; font-size: 10px; text-transform: uppercase; }
.fb-comment-list { display: flex; flex-direction: column; gap: 12px; }
.fb-comment { align-items: flex-start; display: flex; gap: 10px; }
.fb-comment-main { flex: 1; min-width: 0; }
.fb-bubble {
  background: #f0f2f5; border-radius: 18px; display: inline-block; max-width: 100%;
  padding: 8px 12px; word-wrap: break-word;
}
.fb-name {
  color: #050505; display: block; font-size: 13px; font-weight: 700;
  line-height: 1.2; margin-bottom: 2px; text-decoration: none;
}
.fb-name:hover { text-decoration: underline; }
.fb-body { color: #050505; font-size: 15px; line-height: 1.35; white-space: pre-wrap; }
.fb-meta {
  align-items: center; color: #65676b; display: flex; flex-wrap: wrap; font-size: 12px;
  font-weight: 600; gap: 2px 10px; margin: 4px 0 0 12px;
}
.fb-time { font-weight: 400; }
.fb-edited { font-weight: 400; font-style: italic; }
.fb-action {
  background: none; border: 0; color: #65676b; cursor: pointer; font: inherit;
  font-size: 12px; font-weight: 700; padding: 0;
}
.fb-action:hover { text-decoration: underline; }
.fb-replies {
  border-left: 2px solid #e4e6eb; display: flex; flex-direction: column;
  gap: 10px; margin: 10px 0 0 8px; padding-left: 12px;
}
.fb-comment.is-reply .fb-avatar { height: 28px; width: 28px; font-size: 12px; }
.fb-inline-form { margin: 8px 0 0 0; }
.fb-inline-compose {
  background: #f0f2f5; border-radius: 12px; display: grid; gap: 8px; padding: 10px 12px;
}
.fb-inline-compose textarea {
  background: #fff; border: 1px solid #ccd0d5; border-radius: 8px; font: inherit;
  font-size: 14px; min-height: 56px; padding: 8px 10px; width: 100%;
}
.fb-inline-actions { display: flex; gap: 8px; }
.fb-empty { color: #65676b; font-size: 14px; margin: 8px 0; }

@media (max-width: 700px) {
  .eng-debate-grid { grid-template-columns: 1fr; }
}

/* Single publisher card on article (not duplicated in debate) */
.pub-card {
  background: var(--white, #fff); border: 1px solid var(--line, #d8d2c5);
  margin: 18px 0 24px; padding: 14px 16px;
}
.pub-card-main { align-items: flex-start; display: flex; gap: 12px; }
.pub-card-name { display: block; font-size: 20px; line-height: 1.2; }
.pub-card-badge { color: var(--grey, #53534d); font-family: Inconsolata, monospace; font-size: 11px; margin: 4px 0 0; text-transform: uppercase; letter-spacing: .04em; }
.pub-card-badge a { color: var(--red, #bd2428); font-weight: 700; text-decoration: none; }
.pub-card-tagline { color: var(--ink, #0d0f0c); font-size: 15px; margin: 6px 0 0; }
.pub-card-meta { color: var(--grey, #53534d); font-size: 13px; margin: 6px 0 0; }
.pub-card-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.pub-card-stats {
  border-top: 1px solid var(--line, #d8d2c5); color: var(--grey, #53534d);
  display: flex; flex-wrap: wrap; font-family: Inconsolata, monospace; font-size: 12px;
  gap: 14px; margin-top: 12px; padding-top: 10px; text-transform: uppercase; letter-spacing: .03em;
}
.pub-card-stats b { color: var(--ink, #0d0f0c); font-family: "DM Serif Display", Georgia, serif; font-size: 18px; font-weight: 400; margin-right: 4px; text-transform: none; }

/* â€”â€” Luxurious full publisher profile â€”â€” */
body.lux-profile {
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(201, 154, 46, 0.12), transparent 55%),
    radial-gradient(900px 420px at 90% 0%, rgba(189, 36, 40, 0.06), transparent 50%),
    #f3efe6;
}
.lux-shell { margin: 0 auto; max-width: 1080px; padding: 0 20px 72px; }
.lux-crumbs {
  color: #6b6558; font-family: Inconsolata, monospace; font-size: 11px; letter-spacing: .08em;
  margin: 18px 0 14px; text-transform: uppercase;
}
.lux-crumbs a { color: #8b6508; font-weight: 700; text-decoration: none; }

.lux-hero {
  border: 1px solid rgba(201, 154, 46, 0.35);
  border-radius: 18px;
  margin-bottom: 28px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(145deg, #141210 0%, #1c1814 42%, #0f0e0c 100%);
  box-shadow:
    0 24px 60px rgba(20, 16, 10, 0.28),
    inset 0 1px 0 rgba(255, 214, 140, 0.18);
}
.lux-hero-glow {
  background:
    radial-gradient(ellipse 70% 80% at 15% 20%, rgba(201, 154, 46, 0.28), transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(189, 36, 40, 0.12), transparent 55%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.lux-hero-inner { padding: 28px 26px 30px; position: relative; z-index: 1; }

.lux-identity {
  align-items: center; display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 26px;
}
.lux-logo-ring {
  background: linear-gradient(145deg, #f0d78a, #8b6508 45%, #5c4210 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 220, 150, 0.35), 0 12px 28px rgba(0, 0, 0, 0.35);
  padding: 3px;
}
.lux-logo {
  background: #0d0b09 !important;
  border-radius: 50%;
  font-size: 34px !important;
  height: 112px !important;
  width: 112px !important;
}
.lux-logo img { border-radius: 50%; object-fit: cover; }
.lux-badge {
  align-items: center; color: #e8c56a; display: inline-flex; font-family: Inconsolata, monospace;
  font-size: 11px; font-weight: 700; gap: 8px; letter-spacing: .12em; margin: 0 0 10px; text-transform: uppercase;
}
.lux-badge-dot {
  background: radial-gradient(circle at 30% 30%, #ffe7a3, #c99a2e 55%, #8b6508);
  border-radius: 50%; box-shadow: 0 0 10px rgba(201, 154, 46, 0.8); height: 8px; width: 8px;
}
.lux-name {
  color: #f8f1e2; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(34px, 5vw, 52px);
  font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; margin: 0 0 10px;
}
.lux-tagline {
  color: rgba(248, 241, 226, 0.88); font-size: 19px; line-height: 1.45; margin: 0 0 12px; max-width: 42ch;
}
.lux-tagline-soft { color: rgba(248, 241, 226, 0.55); font-style: italic; }
.lux-meta {
  color: rgba(232, 197, 106, 0.85); display: flex; flex-wrap: wrap; font-family: Inconsolata, monospace;
  font-size: 11.5px; gap: 6px 8px; letter-spacing: .06em; margin: 0; text-transform: uppercase;
}
.lux-meta-sep { opacity: 0.45; }

/* Captivating stats */
.lux-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 22px;
}
.lux-stat {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(232, 197, 106, 0.28);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 230, 170, 0.12), 0 10px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 18px 14px 16px;
  position: relative;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.lux-stat::before {
  content: "";
  height: 3px;
  left: 0; right: 0; top: 0;
  position: absolute;
}
.lux-stat:hover {
  border-color: rgba(240, 215, 138, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 230, 170, 0.2), 0 14px 30px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}
.lux-stat-followers::before { background: linear-gradient(90deg, #c99a2e, #f0d78a, #c99a2e); }
.lux-stat-likes::before { background: linear-gradient(90deg, #8b1e22, #e11d2e, #ff6b73); }
.lux-stat-pubs::before { background: linear-gradient(90deg, #1e3a8a, #3d5fbf, #93c5fd); }
.lux-stat-subs::before { background: linear-gradient(90deg, #0f7a36, #22c55e, #86efac); }

.lux-stat-icon {
  color: rgba(240, 215, 138, 0.9); font-size: 16px; letter-spacing: 0; margin-bottom: 8px;
  text-shadow: 0 0 12px rgba(201, 154, 46, 0.45);
}
.lux-stat-likes .lux-stat-icon { color: #ff8a90; text-shadow: 0 0 12px rgba(225, 29, 46, 0.5); }
.lux-stat-pubs .lux-stat-icon { color: #9db7ff; text-shadow: 0 0 12px rgba(61, 95, 191, 0.5); }
.lux-stat-subs .lux-stat-icon { color: #86efac; text-shadow: 0 0 12px rgba(34, 197, 94, 0.45); }

.lux-stat strong {
  color: #fff8e8;
  display: block;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 6px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.lux-stat span {
  color: #f0d78a;
  display: block;
  font-family: Inconsolata, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lux-stat em {
  color: rgba(248, 241, 226, 0.45);
  display: block;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 13px;
  font-style: italic;
  margin-top: 6px;
}

.lux-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.lux-btn {
  border: 0; border-radius: 999px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  font-family: Inconsolata, monospace; font-size: 11.5px; font-weight: 700; letter-spacing: .06em;
  padding: 12px 18px; text-decoration: none; text-transform: uppercase;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.lux-btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.lux-btn-primary {
  background: linear-gradient(180deg, #f0d78a 0%, #c99a2e 48%, #8b6508 100%);
  box-shadow: 0 8px 20px rgba(139, 101, 8, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #1a1408;
}
.lux-btn-like {
  background: linear-gradient(180deg, #ff5a5f 0%, #e11d2e 50%, #a30f1a 100%);
  box-shadow: 0 8px 18px rgba(161, 15, 26, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  color: #fff;
}
.lux-btn-like b { color: #fff; font-family: "DM Serif Display", Georgia, serif; font-size: 15px; font-weight: 400; }
.lux-btn-sub {
  background: linear-gradient(180deg, #3dcf6a 0%, #18a34a 50%, #0f7a36 100%);
  box-shadow: 0 8px 18px rgba(15, 122, 54, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  color: #fff;
}
.lux-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(240, 215, 138, 0.35);
  color: #f0d78a;
}
.lux-btn.is-on, .lux-btn.eng-follow.is-on {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25), 0 8px 20px rgba(0, 0, 0, 0.25);
}

.lux-subscribe {
  background: rgba(255, 248, 232, 0.06) !important;
  border: 1px solid rgba(240, 215, 138, 0.25) !important;
  border-radius: 12px;
  margin-top: 16px !important;
}
.lux-subscribe .eng-note { color: rgba(248, 241, 226, 0.7); }
.lux-subscribe input {
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 8px;
}

.lux-body { max-width: 900px; padding: 8px 0 0; }
.lux-panel {
  background: linear-gradient(180deg, #fffcf7 0%, #f7f2e8 100%);
  border: 1px solid rgba(201, 154, 46, 0.22);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(40, 30, 10, 0.06);
  margin: 0 0 20px;
  padding: 22px 22px 24px;
}
.lux-panel-head { margin-bottom: 14px; }
.lux-kicker {
  color: #8b6508; display: block; font-family: Inconsolata, monospace; font-size: 11px;
  font-weight: 700; letter-spacing: .12em; margin-bottom: 4px; text-transform: uppercase;
}
.lux-panel h2 {
  border-bottom: 1px solid rgba(201, 154, 46, 0.35);
  color: #1a1408;
  font-size: 28px;
  margin: 0;
  padding-bottom: 10px;
}
.pub-bio { font-size: 19px; line-height: 1.7; max-width: 70ch; color: #2a2418; }
.practice-tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.practice-tags li {
  background: linear-gradient(180deg, #fff 0%, #f6edd5 100%);
  border: 1px solid rgba(201, 154, 46, 0.35);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(139, 101, 8, 0.08);
  color: #5c4210;
  font-family: Inconsolata, monospace;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em; padding: 9px 14px; text-transform: uppercase;
}
.work-timeline { border-left: 2px solid #c99a2e; list-style: none; margin: 0; padding: 0 0 0 20px; }
.work-item { margin: 0 0 18px; position: relative; }
.work-item::before {
  background: linear-gradient(145deg, #f0d78a, #8b6508);
  border-radius: 50%; box-shadow: 0 0 0 3px #f7f2e8;
  content: ""; height: 11px; left: -26px; position: absolute; top: 6px; width: 11px;
}
.work-years { color: #8b6508; font-family: Inconsolata, monospace; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.work-org { color: #6b6558; font-size: 15px; margin: 2px 0 6px; }
.work-item p { font-size: 16px; line-height: 1.5; margin: 0; }
.pub-journalists { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.pub-journalist {
  align-items: center; background: #fff; border: 1px solid rgba(201, 154, 46, 0.22);
  border-radius: 12px; display: flex; gap: 12px; padding: 14px; text-decoration: none;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.pub-journalist:hover { box-shadow: 0 10px 24px rgba(40, 30, 10, 0.08); transform: translateY(-2px); }
.pub-journalist-avatar {
  align-items: center; background: linear-gradient(145deg, #2a2418, #0d0b09); border-radius: 50%; color: #f0d78a;
  display: flex; flex-shrink: 0; font-weight: 700; height: 52px; justify-content: center; overflow: hidden; width: 52px;
}
.pub-journalist-avatar img { height: 100%; object-fit: cover; width: 100%; }
.pub-journalist strong { display: block; }
.pub-journalist small { color: #6b6558; display: block; font-size: 13px; margin-top: 2px; }

.lux-story-list { gap: 16px; }
.lux-story {
  border: 1px solid rgba(201, 154, 46, 0.22) !important;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.lux-story:hover {
  box-shadow: 0 14px 32px rgba(40, 30, 10, 0.1);
  transform: translateY(-2px);
}
.lux-story-body { padding: 14px 16px 16px !important; }
.lux-story .pub-story-engage {
  color: #8b6508; font-weight: 700; margin-top: 10px;
}

@media (max-width: 800px) {
  .lux-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .pub-journalists { grid-template-columns: 1fr; }
  .lux-hero-inner { padding: 22px 16px 24px; }
  .lux-identity { align-items: flex-start; flex-direction: column; }
}

/* Article share bar */
.story-share {
  align-items: center; border: 1px solid var(--line, #d8d2c5); background: #fff;
  display: flex; flex-wrap: wrap; gap: 10px 12px; margin: 16px 0 20px; padding: 12px 14px;
}
.story-share-label {
  color: var(--gold, #8b6508); font-family: Inconsolata, monospace; font-size: 11px;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.story-share-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.share-btn {
  background: #fff; border: 1px solid var(--ink, #0d0f0c); color: var(--ink, #0d0f0c);
  cursor: pointer; font-family: Inconsolata, monospace; font-size: 11px; font-weight: 700;
  letter-spacing: .04em; padding: 8px 12px; text-decoration: none; text-transform: uppercase;
}
.share-btn.share-wa { background: #128c7e; border-color: #128c7e; color: #fff; }
.share-btn.share-mail { background: #0d0f0c; border-color: #0d0f0c; color: #fff; }
.share-status { color: #16783c; font-size: 13px; margin: 0; width: 100%; }

.pub-subscribe-box {
  background: #f6f3ec; border: 1px solid var(--line, #d8d2c5); margin-top: 12px; padding: 12px 14px;
}
.pub-subscribe-form { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.pub-subscribe-form input {
  border: 1px solid var(--line, #d8d2c5); flex: 1 1 160px; font: inherit; min-width: 140px; padding: 8px 10px;
}

/* Publisher profile page (shared bits) */
.publisher-hero { display: grid; gap: 20px; grid-template-columns: 96px 1fr; margin-bottom: 36px; }
.publisher-logo.large { height: 96px; width: 96px; font-size: 28px; }
.publisher-meta { color: var(--grey, #53534d); font-family: Inconsolata, monospace; font-size: 12px; text-transform: uppercase; }
.publisher-desc { font-size: 18px; line-height: 1.55; max-width: 60ch; }
.publisher-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pub-story-list { display: grid; gap: 14px; }
.pub-story { background: #fff; border: 1px solid var(--line, #d8d2c5); display: grid; gap: 14px; grid-template-columns: 140px 1fr; text-decoration: none; }
.pub-story img, .pub-story-ph { background: #eee; height: 100%; min-height: 110px; object-fit: cover; width: 100%; }
.pub-story div { padding: 12px 14px 14px 0; }
.pub-story strong { display: block; font-size: 20px; line-height: 1.25; margin-bottom: 4px; }
.pub-story small { color: var(--gold, #8b6508); font-family: Inconsolata, monospace; font-size: 11px; text-transform: uppercase; }
.pub-story p { color: var(--grey, #53534d); font-size: 15px; line-height: 1.4; margin: 8px 0 0; }

@media (max-width: 650px) {
  .publisher-hero { grid-template-columns: 1fr; }
  .pub-story { grid-template-columns: 1fr; }
  .pub-story img, .pub-story-ph { height: 160px; }
  .pub-story div { padding: 12px; }
}

/* —— Publisher profile themes (contrast-safe, not loud) —— */
/* Default is gold (existing .lux-profile styles). */

/* Black & white / mono */
body.lux-profile.theme-mono {
  background: radial-gradient(1000px 480px at 20% -10%, rgba(0,0,0,.06), transparent 55%), #f4f4f2;
}
body.theme-mono .lux-hero {
  background: linear-gradient(145deg, #111 0%, #1a1a1a 50%, #0a0a0a 100%);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 24px 50px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.1);
}
body.theme-mono .lux-hero-glow {
  background: radial-gradient(ellipse 60% 70% at 20% 20%, rgba(255,255,255,.08), transparent 60%);
}
body.theme-mono .lux-badge,
body.theme-mono .lux-meta { color: rgba(255,255,255,.72); }
body.theme-mono .lux-badge-dot {
  background: radial-gradient(circle at 30% 30%, #fff, #bbb 60%, #666);
  box-shadow: 0 0 8px rgba(255,255,255,.35);
}
body.theme-mono .lux-name { color: #fafafa; }
body.theme-mono .lux-tagline { color: rgba(255,255,255,.82); }
body.theme-mono .lux-logo-ring {
  background: linear-gradient(145deg, #f5f5f5, #888 50%, #333);
  box-shadow: 0 0 0 1px rgba(255,255,255,.2), 0 10px 24px rgba(0,0,0,.35);
}
body.theme-mono .lux-stat {
  border-color: rgba(255,255,255,.14);
  background: linear-gradient(165deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
}
body.theme-mono .lux-stat::before { background: linear-gradient(90deg, #666, #ddd, #666) !important; }
body.theme-mono .lux-stat-icon { color: rgba(255,255,255,.75); text-shadow: none; }
body.theme-mono .lux-stat strong { color: #fff; }
body.theme-mono .lux-stat span { color: rgba(255,255,255,.8); }
body.theme-mono .lux-stat em { color: rgba(255,255,255,.42); }
body.theme-mono .lux-btn-primary {
  background: linear-gradient(180deg, #f7f7f7 0%, #e8e8e8 45%, #cfcfcf 100%);
  color: #111;
  box-shadow: 0 8px 18px rgba(0,0,0,.25), inset 0 1px 0 #fff;
}
body.theme-mono .lux-btn-like {
  background: linear-gradient(180deg, #444 0%, #1a1a1a 55%, #000 100%);
  color: #fff;
}
body.theme-mono .lux-btn-sub {
  background: linear-gradient(180deg, #eaeaea 0%, #d0d0d0 50%, #b5b5b5 100%);
  color: #111;
}
body.theme-mono .lux-btn-ghost {
  border-color: rgba(255,255,255,.28);
  color: #eee;
}
body.theme-mono .lux-panel {
  background: #fff;
  border-color: #ddd;
}
body.theme-mono .lux-kicker { color: #444; }
body.theme-mono .lux-panel h2 { border-color: #ddd; color: #111; }
body.theme-mono .practice-tags li {
  background: #f5f5f5;
  border-color: #ccc;
  color: #222;
}
body.theme-mono .work-timeline { border-left-color: #333; }
body.theme-mono .work-item::before { background: #222; box-shadow: 0 0 0 3px #fff; }
body.theme-mono .work-years { color: #333; }
body.theme-mono .pub-journalist,
body.theme-mono .lux-story { border-color: #ddd !important; }
body.theme-mono .lux-story .pub-story-engage { color: #222; }

/* Crimson / red + cream */
body.lux-profile.theme-crimson {
  background: radial-gradient(1000px 480px at 15% -10%, rgba(189,36,40,.1), transparent 55%), #faf6f4;
}
body.theme-crimson .lux-hero {
  background: linear-gradient(145deg, #2a1214 0%, #3d181c 45%, #1a0d0f 100%);
  border-color: rgba(225, 90, 95, .35);
}
body.theme-crimson .lux-hero-glow {
  background: radial-gradient(ellipse 65% 75% at 18% 20%, rgba(225,45,55,.28), transparent 60%);
}
body.theme-crimson .lux-badge,
body.theme-crimson .lux-meta { color: #f0b4b7; }
body.theme-crimson .lux-badge-dot {
  background: radial-gradient(circle at 30% 30%, #ffb0b4, #e11d2e 55%, #8b1218);
  box-shadow: 0 0 10px rgba(225,29,46,.55);
}
body.theme-crimson .lux-name { color: #fff5f5; }
body.theme-crimson .lux-tagline { color: rgba(255,245,245,.88); }
body.theme-crimson .lux-logo-ring {
  background: linear-gradient(145deg, #ffb4b8, #e11d2e 50%, #7a1016);
}
body.theme-crimson .lux-stat { border-color: rgba(255,140,145,.28); }
body.theme-crimson .lux-stat::before { background: linear-gradient(90deg, #8b1218, #e11d2e, #ff8a90) !important; }
body.theme-crimson .lux-stat-icon { color: #ffb0b4; text-shadow: 0 0 10px rgba(225,29,46,.4); }
body.theme-crimson .lux-stat strong { color: #fff8f8; }
body.theme-crimson .lux-stat span { color: #ffc9cc; }
body.theme-crimson .lux-btn-primary {
  background: linear-gradient(180deg, #ff6b73 0%, #e11d2e 50%, #a30f1a 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(163,15,26,.3), inset 0 1px 0 rgba(255,255,255,.25);
}
body.theme-crimson .lux-btn-like {
  background: linear-gradient(180deg, #fff 0%, #f5e8e9 100%);
  color: #a30f1a;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
}
body.theme-crimson .lux-btn-like b { color: #a30f1a; }
body.theme-crimson .lux-btn-sub {
  background: linear-gradient(180deg, #5a1a1e 0%, #3d1013 100%);
  border: 1px solid rgba(255,140,145,.35);
  color: #ffd0d2;
}
body.theme-crimson .lux-btn-ghost {
  border-color: rgba(255,160,165,.4);
  color: #ffd0d2;
}
body.theme-crimson .lux-panel {
  background: linear-gradient(180deg, #fffdfc 0%, #faf2f2 100%);
  border-color: rgba(189,36,40,.18);
}
body.theme-crimson .lux-kicker { color: #a30f1a; }
body.theme-crimson .lux-panel h2 { border-color: rgba(189,36,40,.22); color: #2a1214; }
body.theme-crimson .practice-tags li {
  background: linear-gradient(180deg, #fff, #fceced);
  border-color: rgba(189,36,40,.25);
  color: #7a1016;
}
body.theme-crimson .work-timeline { border-left-color: #c41e2a; }
body.theme-crimson .work-item::before { background: linear-gradient(145deg, #ff8a90, #c41e2a); box-shadow: 0 0 0 3px #faf2f2; }
body.theme-crimson .work-years { color: #a30f1a; }
body.theme-crimson .pub-journalist,
body.theme-crimson .lux-story { border-color: rgba(189,36,40,.18) !important; }
body.theme-crimson .lux-story .pub-story-engage { color: #a30f1a; }

/* Forest / green */
body.lux-profile.theme-forest {
  background: radial-gradient(1000px 480px at 15% -10%, rgba(22,120,60,.1), transparent 55%), #f3f7f3;
}
body.theme-forest .lux-hero {
  background: linear-gradient(145deg, #0f1f14 0%, #163522 45%, #0a140d 100%);
  border-color: rgba(70, 160, 100, .3);
}
body.theme-forest .lux-hero-glow {
  background: radial-gradient(ellipse 65% 75% at 18% 20%, rgba(34,160,80,.25), transparent 60%);
}
body.theme-forest .lux-badge,
body.theme-forest .lux-meta { color: #a8dfb8; }
body.theme-forest .lux-badge-dot {
  background: radial-gradient(circle at 30% 30%, #b6f0c4, #18a34a 55%, #0c5c2a);
  box-shadow: 0 0 10px rgba(24,163,74,.5);
}
body.theme-forest .lux-name { color: #f2fbf4; }
body.theme-forest .lux-tagline { color: rgba(242,251,244,.88); }
body.theme-forest .lux-logo-ring {
  background: linear-gradient(145deg, #b6f0c4, #18a34a 50%, #0c5c2a);
}
body.theme-forest .lux-stat { border-color: rgba(120,200,145,.28); }
body.theme-forest .lux-stat::before { background: linear-gradient(90deg, #0c5c2a, #22c55e, #86efac) !important; }
body.theme-forest .lux-stat-icon { color: #9ee4b0; text-shadow: 0 0 10px rgba(34,197,94,.35); }
body.theme-forest .lux-stat strong { color: #f4fff7; }
body.theme-forest .lux-stat span { color: #b8ebc6; }
body.theme-forest .lux-btn-primary {
  background: linear-gradient(180deg, #3dcf6a 0%, #18a34a 50%, #0f7a36 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(15,122,54,.28), inset 0 1px 0 rgba(255,255,255,.28);
}
body.theme-forest .lux-btn-like {
  background: linear-gradient(180deg, #fff 0%, #eef7f0 100%);
  color: #0f7a36;
}
body.theme-forest .lux-btn-like b { color: #0f7a36; }
body.theme-forest .lux-btn-sub {
  background: linear-gradient(180deg, #163522 0%, #0f1f14 100%);
  border: 1px solid rgba(120,200,145,.35);
  color: #c8f0d2;
}
body.theme-forest .lux-btn-ghost {
  border-color: rgba(140,210,160,.35);
  color: #c8f0d2;
}
body.theme-forest .lux-panel {
  background: linear-gradient(180deg, #fcfefc 0%, #eef6ef 100%);
  border-color: rgba(22,120,60,.16);
}
body.theme-forest .lux-kicker { color: #0f7a36; }
body.theme-forest .lux-panel h2 { border-color: rgba(22,120,60,.2); color: #0f1f14; }
body.theme-forest .practice-tags li {
  background: linear-gradient(180deg, #fff, #e8f6eb);
  border-color: rgba(22,120,60,.22);
  color: #0c5c2a;
}
body.theme-forest .work-timeline { border-left-color: #18a34a; }
body.theme-forest .work-item::before { background: linear-gradient(145deg, #86efac, #0f7a36); box-shadow: 0 0 0 3px #eef6ef; }
body.theme-forest .work-years { color: #0f7a36; }
body.theme-forest .pub-journalist,
body.theme-forest .lux-story { border-color: rgba(22,120,60,.16) !important; }
body.theme-forest .lux-story .pub-story-engage { color: #0f7a36; }

/* Slate / blue-grey calm */
body.lux-profile.theme-slate {
  background: radial-gradient(1000px 480px at 15% -10%, rgba(71,85,105,.1), transparent 55%), #f2f4f7;
}
body.theme-slate .lux-hero {
  background: linear-gradient(145deg, #1e293b 0%, #273548 45%, #0f172a 100%);
  border-color: rgba(148,163,184,.3);
}
body.theme-slate .lux-hero-glow {
  background: radial-gradient(ellipse 65% 75% at 18% 20%, rgba(100,140,190,.22), transparent 60%);
}
body.theme-slate .lux-badge,
body.theme-slate .lux-meta { color: #c5d0e0; }
body.theme-slate .lux-badge-dot {
  background: radial-gradient(circle at 30% 30%, #e2e8f0, #64748b 55%, #334155);
  box-shadow: 0 0 10px rgba(148,163,184,.4);
}
body.theme-slate .lux-name { color: #f8fafc; }
body.theme-slate .lux-tagline { color: rgba(248,250,252,.86); }
body.theme-slate .lux-logo-ring {
  background: linear-gradient(145deg, #e2e8f0, #64748b 50%, #334155);
}
body.theme-slate .lux-stat { border-color: rgba(148,163,184,.28); }
body.theme-slate .lux-stat::before { background: linear-gradient(90deg, #334155, #64748b, #cbd5e1) !important; }
body.theme-slate .lux-stat-icon { color: #cbd5e1; text-shadow: 0 0 10px rgba(100,140,190,.3); }
body.theme-slate .lux-stat strong { color: #f8fafc; }
body.theme-slate .lux-stat span { color: #dbe4f0; }
body.theme-slate .lux-btn-primary {
  background: linear-gradient(180deg, #94a3b8 0%, #64748b 50%, #475569 100%);
  color: #0f172a;
  box-shadow: 0 8px 18px rgba(15,23,42,.25), inset 0 1px 0 rgba(255,255,255,.3);
}
body.theme-slate .lux-btn-like {
  background: linear-gradient(180deg, #fff 0%, #eef2f7 100%);
  color: #1e3a5f;
}
body.theme-slate .lux-btn-like b { color: #1e3a5f; }
body.theme-slate .lux-btn-sub {
  background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
  border: 1px solid rgba(148,163,184,.35);
  color: #e2e8f0;
}
body.theme-slate .lux-btn-ghost {
  border-color: rgba(148,163,184,.4);
  color: #e2e8f0;
}
body.theme-slate .lux-panel {
  background: linear-gradient(180deg, #fcfdff 0%, #eef2f7 100%);
  border-color: rgba(71,85,105,.16);
}
body.theme-slate .lux-kicker { color: #475569; }
body.theme-slate .lux-panel h2 { border-color: rgba(71,85,105,.2); color: #0f172a; }
body.theme-slate .practice-tags li {
  background: linear-gradient(180deg, #fff, #eef2f7);
  border-color: rgba(71,85,105,.22);
  color: #334155;
}
body.theme-slate .work-timeline { border-left-color: #64748b; }
body.theme-slate .work-item::before { background: linear-gradient(145deg, #cbd5e1, #475569); box-shadow: 0 0 0 3px #eef2f7; }
body.theme-slate .work-years { color: #475569; }
body.theme-slate .pub-journalist,
body.theme-slate .lux-story { border-color: rgba(71,85,105,.16) !important; }
body.theme-slate .lux-story .pub-story-engage { color: #334155; }
