/* ================================================================
   Guide to India — Blog / Article Styles
   Follows brandkit: Cormorant Garamond + DM Sans | Fire + Obsidian
   ================================================================ */

/* ── READING PROGRESS ── */
.reading-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: transparent;
}
.reading-progress-bar {
  height: 100%;
  width: 0;
  background: var(--fire);
  transition: width .1s linear;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: .75rem;
  color: var(--dust);
  margin-bottom: var(--sp-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.breadcrumb a { color: var(--dust); transition: color var(--ease-fast); }
.breadcrumb a:hover { color: var(--fire); }

/* ── ARTICLE HERO ── */
.article-hero {
  background: var(--parchment);
  border-bottom: 1px solid var(--rule);
  padding: var(--sp-2xl) 0 0;
}
.article-meta-top {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
  flex-wrap: wrap;
}
.article-category-badge {
  display: inline-flex;
  align-items: center;
  background: var(--cat-color, var(--fire));
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
}
.read-time-badge {
  font-size: .8rem;
  color: var(--dust);
  display: flex;
  align-items: center;
  gap: 5px;
}
.article-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--obsidian);
  margin-bottom: var(--sp-lg);
  max-width: 740px;
}
.article-excerpt {
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: var(--sp-xl);
  padding-left: var(--sp-lg);
  border-left: 3px solid var(--fire);
}
.article-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--rule);
  max-width: 740px;
}
.byline-author {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.author-avatar-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--fire-lt);
  border: 2px solid var(--fire);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-initial {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--fire);
  font-weight: 600;
}
.byline-name {
  display: block;
  font-weight: 500;
  font-size: .95rem;
  color: var(--obsidian);
}
.byline-date {
  display: block;
  font-size: .78rem;
  color: var(--dust);
  margin-top: 2px;
}

/* Article hero image placeholder */
.article-hero-image {
  margin-top: var(--sp-xl);
  height: 400px;
  background: var(--ash);
  overflow: hidden;
}
.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--dust);
  background: linear-gradient(135deg, var(--ash) 0%, #DDD8D0 100%);
}
@media (max-width: 768px) {
  .article-hero-image { height: 220px; }
}

/* ── SHARE BUTTONS ── */
.share-row {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.share-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dust);
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  background: var(--ash);
  color: var(--ink);
  border: 1px solid var(--rule);
  font-size: .9rem;
  cursor: pointer;
  transition: background var(--ease-fast), color var(--ease-fast), border-color var(--ease-fast), transform var(--ease-fast);
}
.share-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.share-twitter:hover  { background: #1da1f2; color: #fff; border-color: #1da1f2; }
.share-facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-whatsapp:hover { background: #25d366; color: #fff; border-color: #25d366; }
.share-copy:hover     { background: var(--fire); color: #fff; border-color: var(--fire); }

.share-sticky {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-lg) var(--sp-md);
  background: var(--parchment);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
}
.share-label-vertical {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dust);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media (min-width: 1024px) {
  .share-sticky { display: flex; }
  .share-top    { display: none; }
}

/* Share modal inner */
.share-modal-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  padding: var(--sp-lg);
}
.share-modal-inner .share-btn {
  width: 100%;
  justify-content: flex-start;
  gap: var(--sp-md);
  padding: 12px var(--sp-lg);
  font-size: .9rem;
  border-radius: var(--r-md);
  text-align: left;
}

/* ── CONTENT LAYOUT ── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
  padding-top: var(--sp-2xl);
  padding-bottom: var(--sp-3xl);
  align-items: start;
}
@media (min-width: 1024px) {
  .article-layout {
    grid-template-columns: 260px 1fr;
  }
}

/* ── SIDEBAR ── */
.sidebar-sticky {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

/* TOC */
.toc-widget {
  background: var(--ash);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
}
.toc-heading {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 600;
  color: var(--obsidian);
  margin-bottom: var(--sp-md);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-heading i { color: var(--fire); }
.toc-nav { font-size: .82rem; }
.toc-nav ul { list-style: none; padding-left: var(--sp-md); margin: 4px 0; }
.toc-nav li { margin: 3px 0; }
.toc-nav a {
  display: block;
  padding: 5px 0;
  color: var(--dust);
  line-height: 1.4;
  transition: color var(--ease-fast), padding-left var(--ease-fast);
}
.toc-nav a:hover, .toc-nav a.toc-active {
  color: var(--fire);
  padding-left: 5px;
}

/* Sidebar newsletter */
.sidebar-newsletter {
  background: var(--obsidian);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  text-align: center;
}
.sidebar-newsletter h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #F2EDE4;
  margin-bottom: 4px;
}
.sidebar-newsletter p {
  font-size: .8rem;
  color: #3E3930;
  margin-bottom: var(--sp-md);
}
.sidebar-nl-form {
  display: flex;
  gap: 0;
  border-radius: var(--r-md);
  overflow: hidden;
}
.sidebar-nl-form input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  background: rgba(255,255,255,.07);
  color: #F2EDE4;
  font-size: .85rem;
  outline: none;
  min-width: 0;
}
.sidebar-nl-form input::placeholder { color: #3E3930; }
.sidebar-nl-form button {
  background: var(--fire);
  color: #fff;
  border: none;
  padding: 0 14px;
  transition: background var(--ease-fast);
}
.sidebar-nl-form button:hover { background: #C83414; }

/* Hide sidebar on mobile */
@media (max-width: 1023px) {
  .article-sidebar { display: none; }
}

/* ── ARTICLE BODY TYPOGRAPHY ── */
.article-body-wrap { max-width: 720px; }
.article-body {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--ink);
}
.article-body > * { margin-bottom: 1.4em; }

.article-body h2 {
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--obsidian);
  margin: 2.2em 0 .8em;
  line-height: 1.2;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--fire);
  display: inline-block;
  scroll-margin-top: 90px;
}
.article-body h3 {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--obsidian);
  margin: 2em 0 .6em;
  scroll-margin-top: 90px;
}
.article-body h4 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fire);
  margin: 1.5em 0 .5em;
  scroll-margin-top: 90px;
}
.article-body p  { margin-bottom: 1.4em; }
.article-body a  { color: var(--fire); font-weight: 500; border-bottom: 1px solid transparent; transition: border-color var(--ease-fast); }
.article-body a:hover { border-color: var(--fire); }
.article-body strong { font-weight: 700; color: var(--obsidian); }
.article-body em { font-style: italic; }

.article-body ul, .article-body ol { padding-left: 1.8em; margin: 1.4em 0; }
.article-body li { margin: .5em 0; padding-left: .4em; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.article-body blockquote {
  margin: 2em 0;
  padding: var(--sp-lg) var(--sp-xl);
  border-left: 4px solid var(--fire);
  background: var(--ash);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  font-style: italic;
  color: var(--ink);
}
.article-body blockquote p { margin: 0; }
.article-body blockquote cite {
  display: block;
  margin-top: var(--sp-sm);
  font-style: normal;
  font-weight: 600;
  font-size: .9rem;
  color: var(--obsidian);
}

/* Pullquote */
.article-body .pullquote {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  color: var(--obsidian);
  text-align: center;
  border: none;
  background: transparent;
  padding: var(--sp-xl) var(--sp-2xl);
  margin: 2.5em 0;
  position: relative;
  font-style: italic;
}
.article-body .pullquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  color: var(--fire);
  opacity: .25;
  line-height: 1;
  font-family: var(--serif);
}

.article-body img {
  width: 100%;
  border-radius: var(--r-lg);
  margin: 2em 0;
  box-shadow: var(--shadow);
}
.article-body figure { margin: 2em 0; }
.article-body figcaption {
  text-align: center;
  font-size: .8rem;
  color: var(--dust);
  font-style: italic;
  margin-top: var(--sp-sm);
}
.article-body pre {
  background: var(--obsidian);
  color: #F2EDE4;
  padding: var(--sp-lg);
  border-radius: var(--r-lg);
  overflow-x: auto;
  font-size: .85rem;
  margin: 2em 0;
}
.article-body code {
  font-family: 'Courier New', monospace;
  background: var(--ash);
  color: var(--fire);
  padding: 2px 6px;
  border-radius: var(--r-sm);
  font-size: .9em;
}
.article-body pre code { background: none; color: inherit; padding: 0; }
.article-body hr { border: none; border-top: 1px solid var(--rule); margin: 3em 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 2em 0; font-size: .95rem; }
.article-body th, .article-body td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--rule); }
.article-body th { background: var(--ash); font-weight: 600; }

/* ── TAGS ── */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-lg) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: var(--sp-2xl) 0;
}
.article-tags > span { font-size: .8rem; font-weight: 600; color: var(--dust); margin-right: 4px; }
.article-tags .tag { transition: background var(--ease-fast), color var(--ease-fast); }
.article-tags .tag:hover { background: var(--fire); color: #fff; }

/* ── AUTHOR BOX ── */
.author-box {
  display: flex;
  gap: var(--sp-xl);
  align-items: flex-start;
  padding: var(--sp-xl);
  background: var(--ash);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  margin: var(--sp-2xl) 0;
}
.author-initial-lg {
  width: 72px;
  height: 72px;
  border-radius: var(--r-full);
  background: var(--fire-lt);
  border: 3px solid var(--fire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--fire);
  flex-shrink: 0;
}
.author-box-content h4 { font-size: 1.1rem; color: var(--obsidian); margin-bottom: 4px; }
.author-role { font-size: .8rem; color: var(--fire); font-weight: 500; display: block; margin-bottom: var(--sp-sm); }
.author-box-content p { font-size: .9rem; color: var(--ink); line-height: 1.6; margin-bottom: var(--sp-md); }
.author-social { display: flex; gap: var(--sp-sm); }
@media (max-width: 640px) {
  .author-box { flex-direction: column; }
  .author-initial-lg { width: 56px; height: 56px; font-size: 1.5rem; }
}

/* ── ARTICLE NAV ── */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin: var(--sp-2xl) 0;
}
.article-nav-link {
  display: flex;
  flex-direction: column;
  padding: var(--sp-lg);
  background: var(--ash);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}
.article-nav-link:hover { border-color: var(--fire); box-shadow: var(--shadow-sm); }
.article-nav-next { text-align: right; }
.nav-dir { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--dust); margin-bottom: 6px; }
.nav-article-title { font-size: .9rem; color: var(--obsidian); line-height: 1.4; }
.article-nav-link:hover .nav-article-title { color: var(--fire); }
@media (max-width: 640px) {
  .article-nav { grid-template-columns: 1fr; }
  .article-nav-next { text-align: left; }
}

/* ── RELATED ── */
.related-section { margin: var(--sp-2xl) 0; }
.related-section h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--obsidian);
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-md);
  border-bottom: 2px solid var(--rule);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-lg);
}
.related-card {
  display: flex;
  flex-direction: column;
  background: var(--parchment);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--ease-fast), border-color var(--ease-fast);
}
.related-card:hover { box-shadow: var(--shadow); border-color: var(--fire); }
.related-image-ph {
  height: 120px;
  background: var(--ash);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--dust);
}
.related-body { padding: var(--sp-md); }
.related-cat { font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--fire); display: block; margin-bottom: 4px; }
.related-body h4 { font-family: var(--serif); font-size: 1rem; color: var(--obsidian); line-height: 1.3; margin-bottom: 6px; }
.related-card:hover .related-body h4 { color: var(--fire); }
.related-meta { font-size: .75rem; color: var(--dust); }

/* ── COMMENTS ── */
.comments-section {
  margin: var(--sp-2xl) 0;
  padding-top: var(--sp-xl);
  border-top: 2px solid var(--rule);
}
.comments-section h3 {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--obsidian);
  margin-bottom: var(--sp-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.comment-form {
  background: var(--ash);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: var(--sp-md); }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--dust);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px var(--sp-md);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--parchment);
  color: var(--obsidian);
  font-size: .95rem;
  outline: none;
  transition: border-color var(--ease-fast);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--fire); }
.no-comments { color: var(--dust); font-style: italic; font-size: .95rem; text-align: center; padding: var(--sp-xl); }

/* ── MOBILE FABs ── */
.fab-group {
  position: fixed;
  bottom: var(--sp-xl);
  right: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  z-index: 1000;
}
.fab {
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: var(--fire);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: background var(--ease-fast), transform var(--ease-fast);
}
.fab:hover { background: #C83414; transform: scale(1.08); }
@media (min-width: 1024px) { .fab-group { display: none; } }

/* ── MODALS ── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,24,20,.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--sp-lg);
}
.modal:not([hidden]) { display: flex; }
.modal-panel {
  background: var(--parchment);
  border-radius: var(--r-lg);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: modalIn var(--ease-base) forwards;
}
.modal-sm { max-width: 380px; }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-lg) var(--sp-xl);
  border-bottom: 1px solid var(--rule);
}
.modal-head h4 { font-family: var(--serif); font-size: 1.2rem; color: var(--obsidian); }
.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dust);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  transition: background var(--ease-fast);
}
.modal-close:hover { background: var(--ash); color: var(--obsidian); }

/* dark mode overrides */
[data-theme="dark"] {
  --parchment:  #1A1714;
  --ash:        #222018;
  --rule:       #2E2A26;
  --ink:        #C8C2B8;
  --obsidian:   #F2EDE4;
  --dust:       #6A6460;
}
[data-theme="dark"] .site-header      { background: #1A1714; }
[data-theme="dark"] .article-hero     { background: #1A1714; }
[data-theme="dark"] .toc-widget       { background: #222018; }
[data-theme="dark"] .author-box       { background: #222018; }
[data-theme="dark"] .comment-form     { background: #222018; }
[data-theme="dark"] .related-card     { background: #1A1714; }
[data-theme="dark"] .modal-panel      { background: #1A1714; }
[data-theme="dark"] .article-category-badge { filter: brightness(.9); }
[data-theme="dark"] .article-body blockquote { background: #222018; }
[data-theme="dark"] .article-body pre  { background: #0F0D0B; }
[data-theme="dark"] .article-body code { background: #222018; }

/* print */
@media print {
  .reading-progress-container,
  .article-sidebar,
  .fab-group,
  .share-row,
  .comments-section,
  .article-nav { display: none !important; }
  .article-body { font-size: 12pt; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reading-progress-bar,
  .modal-panel { transition: none !important; animation: none !important; }
}

/* ═══════════════════════════════════════════════════
   BLOG FIRE REDUCTION + SOCIAL ICON GREY + ALIGNMENT
═══════════════════════════════════════════════════ */

/* ── SOCIAL / SHARE BUTTONS: all light grey ── */
.share-btn {
  background: #F0EDE8 !important;
  color: #8A8480 !important;
  border-color: var(--rule) !important;
}
.share-btn:hover {
  background: #E0DAD0 !important;
  color: var(--obsidian) !important;
  border-color: #C8C2B8 !important;
  transform: none !important;
  box-shadow: none !important;
}
/* Override all platform-colored hovers */
.share-twitter:hover,
.share-facebook:hover,
.share-linkedin:hover,
.share-whatsapp:hover,
.share-copy:hover {
  background: #E0DAD0 !important;
  color: var(--obsidian) !important;
  border-color: #C8C2B8 !important;
}

/* Share sticky: match the above */
.share-sticky { background: var(--ash); border-color: var(--rule); }
.share-label-vertical { color: var(--dust); }

/* ── ARTICLE BODY: text alignment ── */
.article-body,
.article-body p,
.article-body li,
.article-body td,
.article-body th,
.article-body blockquote { text-align: left; }

/* Pull quote: centred is intentional */
.article-body .pullquote { text-align: center; }

/* ── REDUCE FIRE IN ARTICLE LAYOUT ── */

/* Progress bar → obsidian */
.reading-progress-bar { background: var(--obsidian); }

/* Article excerpt border → rule not fire */
.article-excerpt { border-left-color: var(--rule); }

/* H2 underline → rule */
.article-body h2 {
  border-bottom-color: var(--rule);
  border-bottom-width: 1px;
}

/* Body links → obsidian, fire only on hover */
.article-body a       { color: var(--obsidian); border-bottom-color: transparent; }
.article-body a:hover { color: var(--fire); border-bottom-color: var(--fire); }

/* Author role → dust */
.author-role { color: var(--dust); }

/* Related category label → dust */
.related-cat { color: var(--dust); }

/* TOC active link → obsidian */
.toc-nav a.toc-active,
.toc-nav a:hover { color: var(--obsidian); }

/* Sidebar newsletter button → obsidian */
.sidebar-nl-form button { background: var(--obsidian); }
.sidebar-nl-form button:hover { background: #2E2A26; }

/* Nav dir arrows → dust */
.nav-dir { color: var(--dust); }
.article-nav-link:hover .nav-article-title { color: var(--obsidian); }

/* Comment form focus → obsidian */
.form-group input:focus,
.form-group textarea:focus { border-color: var(--obsidian); box-shadow: 0 0 0 3px rgba(28,24,20,.06); }

/* Tag hover → obsidian */
.article-tags .tag:hover { background: var(--obsidian); color: var(--parchment); }

/* Only keep fire on: category badge (identity) + pullquote quotes */
.article-category-badge { background: var(--cat-color, #5A5248) !important; }
.article-body .pullquote::before { color: var(--dust); opacity: .4; }

/* ── FAB: only one now, keep it clean ── */
.fab-group { bottom: var(--sp-xl); right: var(--sp-xl); }
.fab { background: var(--obsidian); }
.fab:hover { background: #2E2A26; transform: none; }

/* ── DARK MODE: social buttons ── */
[data-theme="dark"] .share-btn {
  background: rgba(255,255,255,.07) !important;
  color: #7A736A !important;
  border-color: #2E2A26 !important;
}
[data-theme="dark"] .share-btn:hover {
  background: rgba(255,255,255,.12) !important;
  color: #D4CDC4 !important;
}

