/* ============================================
   WebsiteHotel.it — style.css (LIGHT THEME)
   I nomi delle CSS variables sono mantenuti dal template originale (dark)
   per compatibilità con gli HTML esistenti, ma i valori sono ora light.
   - --wh-dark      = sfondo principale (off-white)
   - --wh-dark-2    = sfondo sezioni alternate (cool light)
   - --wh-dark-3    = sfondo nested boxes (taupe chiaro)
   - --wh-cream     = colore inchiostro/heading (deep dark warm)
   - --wh-text      = body text (warm dark)
   - --wh-text-muted = muted text (warm gray)
   - --wh-gold      = accento blu navy (refined) — il nome è legacy
   ============================================ */

/* ---- Custom Properties ---- */
:root {
  --wh-dark:        #ffffff;        /* sfondo principale: bianco puro per max contrasto */
  --wh-dark-2:      #f5f7fa;        /* sfondo sezioni alternate: cool light (hint of blue) */
  --wh-dark-3:      #e6eaf2;        /* sfondo nested: light cool gray con tinta blu */
  --wh-gold:        #1e3a5f;        /* accento blu navy (refined per light) */
  --wh-gold-light:  #3563a0;        /* blu medio per hover */
  --wh-cream:       #1a1815;        /* deep ink — heading, strong, blockquote */
  --wh-text:        #2e2823;        /* body text — warm dark (rinforzato per contrasto) */
  --wh-text-muted:  #5d544a;        /* muted — warm dark gray (≥7:1 su bianco, AA WCAG) */
  --wh-border:      rgba(30, 58, 95, 0.35);
  --wh-shadow:      rgba(30, 40, 60, 0.08);   /* ombra cool neutra */
  --wh-shadow-strong: rgba(30, 40, 60, 0.15);
  --transition:     0.3s ease;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--wh-dark);
  color: var(--wh-text);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

/* Default headings: DM Sans (serif Cormorant ha tratti troppo sottili sotto 2.5rem).
   Cormorant Garamond è applicato esplicitamente solo sugli elementi display:
   .hero-title, .section-title, .hero-stat-value, .wh-brand, .footer-brand,
   .platform-name, .article-content blockquote */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--wh-cream);
}

a {
  color: var(--wh-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--wh-gold-light); }

/* Titoli small/medium dentro card e sidebar: DM Sans per legibilità
   (Cormorant Garamond ha tratti troppo sottili sotto 1.5rem) */
.wh-card h3,
.wh-card h4,
.solution-card h3,
.sidebar-box h4,
.article-cta-box h2,
.article-cta-box h3,
.article-cta-box h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--wh-cream);
}

/* ---- Navbar ---- */
.wh-navbar {
  background-color: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wh-border);
  transition: background-color var(--transition), box-shadow var(--transition);
  padding: 1rem 0;
}

.wh-navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 16px var(--wh-shadow);
}

.wh-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--wh-cream) !important;
  letter-spacing: 0.02em;
}

.wh-brand span { color: var(--wh-gold); }

.wh-navbar .nav-link {
  color: var(--wh-text-muted) !important;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  padding: 0.5rem 1rem !important;
}

.wh-navbar .nav-link:hover,
.wh-navbar .nav-link.active { color: var(--wh-cream) !important; }

.navbar-toggler { border-color: var(--wh-border) !important; }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830%2C58%2C95%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ---- Buttons ---- */
.wh-btn-primary {
  background-color: var(--wh-gold);
  color: var(--wh-dark);
  border: none;
  padding: 0.75rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

.wh-btn-primary:hover {
  background-color: var(--wh-gold-light);
  color: var(--wh-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(30, 58, 95, 0.32);
}

.wh-btn-outline {
  background-color: transparent;
  color: var(--wh-gold);
  border: 1px solid var(--wh-gold);
  padding: 0.75rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

.wh-btn-outline:hover {
  background-color: var(--wh-gold);
  color: var(--wh-dark);
  transform: translateY(-2px);
}

.wh-btn-ghost {
  background-color: transparent;
  color: var(--wh-text);
  border: none;
  padding: 0.5rem 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition), gap var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.wh-btn-ghost:hover { color: var(--wh-gold); gap: 0.85rem; }

/* ---- Hero ---- */
.wh-hero {
  min-height: 100vh;
  background-color: var(--wh-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231e3a5f'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.13) 0%, transparent 70%);
  pointer-events: none;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--wh-cream);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--wh-gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--wh-text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--wh-border);
  flex-wrap: wrap;
}

.hero-stat { display: flex; flex-direction: column; }

.hero-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--wh-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--wh-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.35rem;
}

/* Browser Mockup */
.browser-mockup {
  background-color: #ffffff;
  border: 1px solid var(--wh-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 25px 60px var(--wh-shadow-strong);
}

.browser-bar {
  background-color: var(--wh-dark-2);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--wh-border);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid var(--wh-border);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--wh-text-muted);
  margin-left: 8px;
}

.browser-content {
  padding: 20px;
  background-color: #ffffff;
}

.browser-header {
  height: 40px;
  background: linear-gradient(90deg, rgba(30, 58, 95, 0.22), rgba(30, 58, 95, 0.05));
  border-radius: 4px;
  margin-bottom: 16px;
}

.browser-line {
  height: 8px;
  border-radius: 4px;
  background-color: var(--wh-dark-3);
  margin-bottom: 10px;
}

.browser-line.gold { background: rgba(30, 58, 95, 0.5); width: 55%; }
.browser-line.w80 { width: 80%; }
.browser-line.w65 { width: 65%; }
.browser-line.w40 { width: 40%; }

.browser-cards {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.browser-card-mini {
  flex: 1;
  height: 50px;
  background-color: var(--wh-dark-2);
  border-radius: 4px;
  border: 1px solid var(--wh-border);
}

/* ---- Generic Card ---- */
.wh-card {
  background-color: var(--wh-dark-2);
  border: 1px solid var(--wh-border);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.wh-card:hover {
  border-color: var(--wh-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--wh-shadow);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background-color: rgba(30, 58, 95, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--wh-gold);
  margin-bottom: 1.25rem;
}

/* ---- Article Cards ---- */
.wh-article-card {
  background-color: var(--wh-dark-2);
  border: 1px solid var(--wh-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wh-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--wh-shadow);
  border-color: rgba(30, 58, 95, 0.5);
}

.article-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-category-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wh-gold);
  margin-bottom: 0.75rem;
}

.article-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--wh-cream);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.wh-article-card:hover .article-card-title { color: var(--wh-gold); }

.article-card-excerpt {
  font-size: 0.9rem;
  color: var(--wh-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.article-card-meta {
  font-size: 0.8rem;
  color: var(--wh-text-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.wh-article-card.featured .article-card-body { padding: 2.25rem; }
.wh-article-card.featured .article-card-title {
  font-size: 1.85rem;
  /* eredita font-family DM Sans + weight 600 da .article-card-title */
}
.wh-article-card.featured { border-color: rgba(30, 58, 95, 0.35); }

/* ---- Blog Cards ---- */
.wh-blog-card {
  background-color: var(--wh-dark-2);
  border: 1px solid var(--wh-border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wh-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--wh-shadow);
  border-color: rgba(30, 58, 95, 0.5);
}

.blog-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.blog-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--wh-cream);
  line-height: 1.35;
  margin-bottom: 0.65rem;
  transition: color var(--transition);
}

.wh-blog-card:hover .blog-card-title { color: var(--wh-gold); }

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--wh-text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: var(--wh-text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

/* ---- Solution Cards ---- */
.solution-card {
  background-color: var(--wh-dark-2);
  border: 1px solid var(--wh-border);
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.solution-card.featured {
  border-color: rgba(30, 58, 95, 0.5);
  background: linear-gradient(145deg, var(--wh-dark-2) 0%, rgba(30, 58, 95, 0.08) 100%);
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--wh-shadow-strong);
}

/* ---- Platform Cards ---- */
.platform-card {
  background-color: var(--wh-dark-2);
  border: 1px solid var(--wh-border);
  border-radius: 10px;
  padding: 2.25rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.platform-card.featured { border-color: rgba(30, 58, 95, 0.55); }

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--wh-shadow);
  border-color: rgba(30, 58, 95, 0.6);
}

.platform-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--wh-gold);
  color: var(--wh-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.platform-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.platform-price {
  font-size: 0.83rem;
  color: var(--wh-text-muted);
  margin-bottom: 1rem;
}

.platform-desc {
  font-size: 0.9rem;
  color: var(--wh-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.pro-con-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.75rem;
  flex: 1;
}

.pro-con-list li {
  font-size: 0.87rem;
  color: var(--wh-text-muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.5;
}

.pro-con-list li.pro { color: var(--wh-text); }
.pro-con-list li.pro i { color: #4caf50; }
.pro-con-list li.con i { color: #d96565; }

/* ---- Page Header ---- */
.wh-page-header {
  background-color: var(--wh-dark-2);
  border-bottom: 1px solid var(--wh-border);
  padding: 7rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.wh-page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wh-gold), transparent);
}

.page-header-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--wh-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.page-header-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--wh-cream);
  margin-bottom: 1rem;
  line-height: 1.18;
}

.page-header-desc {
  font-size: 1rem;
  color: var(--wh-text-muted);
  max-width: 580px;
  line-height: 1.8;
}

/* ---- Blog Filters ---- */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background-color: var(--wh-dark-2);
  color: var(--wh-text-muted);
  border: 1px solid var(--wh-border);
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.filter-btn:hover {
  color: var(--wh-cream);
  border-color: rgba(30, 58, 95, 0.5);
}

.filter-btn.active {
  background-color: var(--wh-gold);
  color: var(--wh-dark);
  border-color: var(--wh-gold);
  font-weight: 600;
}

/* Blog item visibility */
.blog-item { transition: opacity 0.25s ease; }
.blog-item.hidden { display: none; }

/* ---- Feature List ---- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  color: var(--wh-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-list li i {
  color: var(--wh-gold);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* ---- Footer ---- */
.wh-footer {
  background-color: var(--wh-dark-2);
  border-top: 1px solid var(--wh-border);
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--wh-cream);
  margin-bottom: 0.75rem;
}

.footer-brand span { color: var(--wh-gold); }

.footer-tagline {
  font-size: 0.88rem;
  color: var(--wh-text-muted);
  max-width: 240px;
  line-height: 1.65;
}

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.77rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wh-gold);
  margin-bottom: 1rem;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li { margin-bottom: 0.5rem; }

.footer-link-list a {
  font-size: 0.88rem;
  color: var(--wh-text-muted);
  transition: color var(--transition);
}

.footer-link-list a:hover { color: var(--wh-gold); }

.footer-divider {
  border-color: var(--wh-border);
  margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--wh-text-muted);
}

.footer-bottom a { color: var(--wh-text-muted); }
.footer-bottom a:hover { color: var(--wh-gold); }

/* ---- Affiliate Note ---- */
.affiliate-note {
  font-size: 0.8rem;
  color: var(--wh-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.affiliate-note i {
  font-size: 0.85rem;
  color: var(--wh-gold);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* ---- Article Layout ---- */
.article-content {
  color: var(--wh-text);
  font-size: 1.05rem;
  line-height: 1.88;
}

.article-content h2 {
  font-size: 1.85rem;
  margin-top: 2.75rem;
  margin-bottom: 1rem;
}

.article-content h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-content p { margin-bottom: 1.25rem; }

.article-content ul, .article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-content li { margin-bottom: 0.5rem; }

.article-content blockquote {
  border-left: 3px solid var(--wh-gold);
  padding: 1.1rem 1.5rem;
  background-color: var(--wh-dark-2);
  border-radius: 0 6px 6px 0;
  margin: 1.75rem 0;
  color: var(--wh-cream);
  font-family: 'Lora', 'Cormorant Garamond', serif;   /* Lora ha tratti italic molto più sturdy di Cormorant */
  font-style: italic;
  font-weight: 500;
  font-size: 1.22rem;
  line-height: 1.7;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0;
  font-size: 0.9rem;
  display: block;
  overflow-x: auto;
}

.article-content th {
  background-color: var(--wh-dark-3);
  color: var(--wh-cream);
  font-weight: 600;
  padding: 0.8rem 1rem;
  text-align: left;
  border: 1px solid var(--wh-border);
  white-space: nowrap;
}

.article-content td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--wh-border);
  color: var(--wh-text);
}

.article-content tr:nth-child(even) td { background-color: var(--wh-dark-2); }

.article-content td.highlight {
  color: var(--wh-gold);
  font-weight: 600;
}

/* ---- Sidebar ---- */
.sidebar-box {
  background-color: var(--wh-dark-2);
  border: 1px solid var(--wh-border);
  border-radius: 8px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.sidebar-box.featured-box {
  border-color: rgba(30, 58, 95, 0.5);
  background: linear-gradient(145deg, var(--wh-dark-2) 0%, rgba(30, 58, 95, 0.08) 100%);
}

.sidebar-box h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.sidebar-article-link {
  display: block;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--wh-border);
  font-size: 0.87rem;
  color: var(--wh-text-muted);
  transition: color var(--transition);
  line-height: 1.5;
}

.sidebar-article-link:last-child { border-bottom: none; }
.sidebar-article-link:hover { color: var(--wh-gold); }

/* ---- Article CTA Box ---- */
.article-cta-box {
  background: linear-gradient(135deg, var(--wh-dark-2) 0%, rgba(30, 58, 95, 0.12) 100%);
  border: 1px solid rgba(30, 58, 95, 0.5);
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

/* ---- Breadcrumb ---- */
.wh-breadcrumb {
  font-size: 0.82rem;
  color: var(--wh-text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.wh-breadcrumb a { color: var(--wh-text-muted); }
.wh-breadcrumb a:hover { color: var(--wh-gold); }
.wh-breadcrumb .separator { margin: 0 0.35rem; opacity: 0.5; }

/* ---- Section Utilities ---- */
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--wh-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--wh-cream);
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--wh-text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--wh-gold), transparent);
  margin-bottom: 1.5rem;
}

/* ---- Animate on Scroll ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Legal Pages ---- */
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p, .legal-content li {
  color: var(--wh-text-muted);
  font-size: 0.92rem;
  line-height: 1.85;
}

.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }

/* ---- Spacing ---- */
.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3.5rem 0; }

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .browser-mockup { margin-top: 3rem; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 767.98px) {
  .wh-hero { padding-top: 70px; }
  .wh-page-header { padding: 5rem 0 2.5rem; }
  .section-padding { padding: 3.5rem 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1.25rem; }
}

@media (max-width: 575.98px) {
  .filter-btn { font-size: 0.8rem; padding: 0.35rem 0.85rem; }
  .blog-filters { gap: 0.35rem; }
  .platform-card { padding: 2rem 1.5rem; }
  .article-cta-box { padding: 1.75rem; }
}
