/* TTB Marketing: royal purple, metallic gold, pearl white */
:root {
  --purple-deep: #1f0f2e;
  --purple: #3d2463;
  --purple-mid: #5a3d8a;
  --gold: #b8943c;
  --gold-bright: #d4b45c;
  --gold-muted: rgba(184, 148, 60, 0.35);
  --pearl: #faf8f5;
  --pearl-dark: #f0ebe3;
  --ink: #1c1a1d;
  --ink-soft: #4a454f;
  --white: #ffffff;
  --header-h: 4.25rem;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --shadow-soft: 0 12px 40px rgba(31, 15, 46, 0.12);
  --radius: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--pearl);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--purple-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--purple);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--purple-deep);
}

h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  margin-top: 2.25rem;
}

h3 {
  font-size: 1.35rem;
  margin-top: 1.75rem;
}

p {
  margin: 0 0 1rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--purple);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: linear-gradient(180deg, var(--purple-deep) 0%, #2a1740 100%);
  border-bottom: 1px solid var(--gold-muted);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--pearl);
}

.brand:hover {
  color: var(--gold-bright);
}

.brand img {
  width: auto;
  height: 60px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-muted);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--pearl);
  cursor: pointer;
  padding: 0;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-bar::before {
  top: -7px;
}

.nav-toggle-bar::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
}

.site-nav a {
  color: var(--pearl);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.35rem 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-bright);
}

.site-nav a.is-active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

.nav-pill {
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.35rem 0.9rem !important;
  background: rgba(184, 148, 60, 0.12);
}

.nav-pill:hover {
  background: rgba(184, 148, 60, 0.22);
}

.ad-leaderboard {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  text-align: center;
  min-height: 0;
}

.ad-leaderboard ins {
  display: inline-block;
  line-height: 0;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.hero {
  padding: 2.75rem 0 2rem;
  text-align: center;
  background: linear-gradient(
    165deg,
    var(--white) 0%,
    var(--pearl-dark) 45%,
    rgba(90, 61, 138, 0.08) 100%
  );
  border-radius: var(--radius);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0;
}

.section-block {
  margin-top: 3rem;
  padding: 2rem 1.5rem 2.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(61, 36, 99, 0.08);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 80px;
}

.section-block h2 {
  margin-top: 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-muted);
}

.feed-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple);
  margin: 1.75rem 0 0.75rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
  animation: pulse-dot 2s ease-out infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

.rss-grid {
  display: grid;
  gap: 0.85rem;
}

.rss-card {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(61, 36, 99, 0.1);
  background: var(--pearl);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.rss-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.rss-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--purple-deep);
}

.rss-meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.rss-fallback,
.rss-loading {
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.75rem 0;
}

.rss-ticker-wrap {
  overflow: hidden;
  margin-top: 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(61, 36, 99, 0.1);
  background: var(--purple-deep);
}

.rss-ticker {
  display: flex;
  gap: 2.5rem;
  padding: 0.65rem 0;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}

.rss-ticker:hover {
  animation-play-state: paused;
}

.rss-ticker a {
  color: var(--pearl);
  text-decoration: none;
  font-size: 0.9rem;
}

.rss-ticker a:hover {
  color: var(--gold-bright);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.cta-band {
  margin-top: 3rem;
  padding: 2.25rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  border-radius: var(--radius);
  color: var(--pearl);
  scroll-margin-top: 80px;
}

.cta-band h2 {
  color: var(--pearl);
  margin-top: 0;
  border: none;
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 1.25rem;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--gold);
  color: var(--purple-deep);
  background: var(--gold-bright);
}

.btn:hover {
  background: var(--gold);
  color: var(--purple-deep);
}

.site-footer {
  position: relative;
  margin-top: 3.5rem;
  padding: 0 0 2.25rem;
  color: var(--pearl);
  background: linear-gradient(
    168deg,
    #181028 0%,
    var(--purple-deep) 38%,
    #140a1f 72%,
    #0f0718 100%
  );
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -35%;
  right: -5%;
  width: min(520px, 70vw);
  height: 120%;
  background: radial-gradient(
    ellipse,
    rgba(212, 180, 92, 0.11) 0%,
    rgba(90, 61, 138, 0.06) 42%,
    transparent 70%
  );
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -14deg,
    transparent,
    transparent 56px,
    rgba(255, 255, 255, 0.018) 56px,
    rgba(255, 255, 255, 0.018) 57px
  );
  pointer-events: none;
  opacity: 0.85;
}

.footer-top-bar {
  position: relative;
  z-index: 2;
  height: 5px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(184, 148, 60, 0.2) 15%,
    var(--gold) 42%,
    var(--gold-bright) 50%,
    var(--gold) 58%,
    rgba(184, 148, 60, 0.2) 85%,
    transparent 100%
  );
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.65rem 1.35rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem 2.75rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: minmax(220px, 1.35fr) auto minmax(200px, 1fr);
    gap: 2rem 3rem;
  }
}

.footer-brand-block {
  position: relative;
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  padding-left: 1.2rem;
}

.footer-brand-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    var(--gold-bright) 0%,
    var(--gold) 45%,
    rgba(184, 148, 60, 0.35) 100%
  );
  box-shadow: 0 0 20px rgba(212, 180, 92, 0.25);
}

.footer-brand-mark {
  flex-shrink: 0;
  padding: 0.55rem;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(212, 180, 92, 0.28);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-brand-mark img {
  width: auto;
  height: 60px;
}

.footer-brand-text strong {
  font-family: var(--font-serif);
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: block;
  color: var(--pearl);
  line-height: 1.2;
}

.footer-tag {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(249, 247, 244, 0.78);
  max-width: 22rem;
  margin: 0.45rem 0 0;
}

.footer-nav {
  min-width: 11rem;
}

.footer-nav-heading {
  display: block;
  margin: 0 0 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-link-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(249, 247, 244, 0.9);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link-list a::before {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--gold-bright);
  transition: width 0.2s ease;
}

.footer-link-list a:hover,
.footer-link-list a:focus-visible {
  color: var(--gold-bright);
}

.footer-link-list a:hover::before,
.footer-link-list a:focus-visible::before {
  width: 14px;
}

.footer-aside {
  border-radius: var(--radius);
  padding: 1.2rem 1.35rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(212, 180, 92, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 32px rgba(0, 0, 0, 0.2);
}

.footer-aside-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(212, 180, 92, 0.85);
}

.footer-micro-quote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(249, 247, 244, 0.88);
  padding-left: 0.85rem;
  border-left: 2px solid rgba(212, 180, 92, 0.55);
}

.footer-bottom {
  margin-top: 2.35rem;
  padding: 1.25rem 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    transparent 100%
  );
  margin-left: -1.35rem;
  margin-right: -1.35rem;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249, 247, 244, 0.48);
}

@media (max-width: 799px) {
  .footer-nav {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumbs a {
  color: var(--purple-mid);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumbs a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 0.35rem;
  color: var(--gold);
  font-weight: 600;
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

/* Blog layout */
.blog-hero {
  padding: 2rem 0 1rem;
}

.blog-hero h1 {
  margin-bottom: 0.5rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}

.blog-main {
  min-width: 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 36, 99, 0.2);
  background: var(--white);
  color: var(--purple);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.is-on {
  background: var(--purple);
  color: var(--pearl);
  border-color: var(--purple);
}

.post-card {
  display: block;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(61, 36, 99, 0.1);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 16px rgba(31, 15, 46, 0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.post-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(61, 36, 99, 0.12);
}

.post-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.post-card h2 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.post-card .excerpt {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
}

/* Featured “our” article card (Mission Journal) */
.post-card--own {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(184, 148, 60, 0.5);
  background: linear-gradient(
    145deg,
    var(--white) 0%,
    var(--pearl) 42%,
    rgba(90, 61, 138, 0.07) 100%
  );
  box-shadow:
    0 10px 36px rgba(61, 36, 99, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.post-card--own:hover {
  border-color: var(--gold);
  box-shadow:
    0 14px 44px rgba(61, 36, 99, 0.18),
    0 0 0 1px rgba(212, 180, 92, 0.25);
}

@media (min-width: 640px) {
  .post-card--own {
    grid-template-columns: minmax(200px, 280px) 1fr;
  }
}

.post-card__media {
  position: relative;
  min-height: 168px;
  background: var(--purple-deep);
}

.post-card__media img {
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
  display: block;
}

.post-card__badge {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple-deep);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.post-card__body {
  padding: 1.2rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.post-card--own .tag {
  color: var(--purple-mid);
  margin-bottom: 0.35rem;
}

.post-card--own h2 {
  font-size: 1.35rem;
  color: var(--purple-deep);
  margin-bottom: 0.45rem;
}

.post-card--own .rss-meta {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.post-card--own .excerpt {
  margin-top: 0.5rem;
  line-height: 1.55;
}

.post-card__cta {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.post-card--own:hover .post-card__cta {
  color: var(--purple-mid);
}

.blog-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.blog-sidebar ins {
  display: block;
  margin-bottom: 1rem;
  line-height: 0;
}

.ad-sky {
  display: block;
  line-height: 0;
}

/* Article */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 2rem;
  align-items: start;
  margin-top: 1rem;
}

.article-main {
  min-width: 0;
}

.article-header {
  padding-bottom: 1rem;
}

.article-meta {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.article-meta .sep {
  color: var(--gold);
  padding: 0 0.35rem;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.article-tags span {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(90, 61, 138, 0.1);
  color: var(--purple);
}

.article-figure {
  margin: 1.5rem 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(61, 36, 99, 0.12);
  box-shadow: var(--shadow-soft);
}

.article-figure figcaption {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 0.65rem 1rem;
  background: var(--pearl-dark);
}

.article-body {
  font-size: 1.07rem;
}

.article-body .float-ad {
  float: right;
  margin: 0 0 1rem 1.25rem;
  max-width: 300px;
  line-height: 0;
}

.article-body::after {
  content: "";
  display: table;
  clear: both;
}

.pull-quote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem 1.25rem 1.25rem;
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, rgba(184, 148, 60, 0.12), transparent);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--purple-deep);
  line-height: 1.45;
}

.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-muted),
    transparent
  );
  margin: 2.5rem 0;
}

.read-more {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gold-muted);
}

.read-more h2 {
  margin-top: 0;
}

.read-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.read-card {
  display: block;
  padding: 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(61, 36, 99, 0.12);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  min-height: 140px;
}

.read-card:hover {
  border-color: var(--gold);
}

.read-card .src {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.read-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  margin: 0.35rem 0;
  color: var(--purple-deep);
}

.read-card .meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.read-card .read-arrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-mid);
  margin-top: 0.5rem;
}

/* FAQ home */
.faq-block {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--pearl-dark);
  border-radius: var(--radius);
  scroll-margin-top: 80px;
}

.faq-block h2 {
  margin-top: 0;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.faq-item {
  margin-bottom: 1.25rem;
}

.faq-item:last-child {
  margin-bottom: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .blog-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .ad-sky {
    display: none !important;
  }

  .read-grid {
    grid-template-columns: 1fr;
  }

  .article-body .float-ad {
    float: none;
    margin: 1rem auto;
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #2a1740;
    border-bottom: 1px solid var(--gold-muted);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 480px;
    overflow-y: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a.is-active {
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .site-nav a.nav-pill {
    text-align: center;
    margin-top: 0.5rem;
    border-bottom-color: var(--gold);
  }

  .footer-brand-block {
    flex-direction: column;
  }
}
