
/* =========================================================
   Prestige Article Pages
   Shared rug education / blog article styles
========================================================= */

.article-page-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(239,215,119,.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.article-content {
  max-width: 820px;
}

.article-lead {
  font-size: 1.55rem;
  line-height: 1.5;
  color: var(--prestige-dark);
}

.article-content h2,
.article-content h3 {
  font-weight: 800;
  color: var(--prestige-dark);
}

.article-content h2 {
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.article-content h3 {
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  font-size: 1.45rem;
  color: var(--prestige-blue-dark);
}

.article-content p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.5rem;
}

.article-content a {
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-callout {
  margin: 2.5rem 0;
  padding: 1.75rem;
  background: white;
  border-left: 6px solid var(--prestige-gold);
  border-radius: 1.25rem;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.article-callout p:last-child {
  margin-bottom: 0;
}

.article-process-list {
  counter-reset: article-process;
  list-style: none;
  padding-left: 0;
  margin: 2.5rem 0;
}

.article-process-list li {
  position: relative;
  counter-increment: article-process;
  margin-bottom: 1.25rem;
  padding: 1.35rem 1.35rem 1.35rem 4.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  color: #444;
  line-height: 1.65;
}

.article-process-list li::before {
  content: counter(article-process);
  position: absolute;
  left: 1.25rem;
  top: 1.35rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--prestige-blue);
  color: var(--prestige-gold);
  font-weight: 800;
}

.article-sidebar {
  position: sticky;
  top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.article-sidebar-card {
  padding: 1.5rem;
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  border: 1px solid rgba(47,88,116,.08);
}

.article-sidebar-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--prestige-dark);
  margin-bottom: .75rem;
}

.article-sidebar-card p,
.article-sidebar-card li {
  color: #555;
  line-height: 1.7;
}

.article-sidebar-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.article-sidebar-card li {
  margin-bottom: .65rem;
}

.article-sidebar-card a {
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .article-page-section {
    padding: 70px 0;
  }

  .article-sidebar {
    position: static;
  }
}

/* =========================================================
   Expert Tips Hub / Blog Sidebar
========================================================= */

.article-hub-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(239,215,119,.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.article-hub-intro {
  max-width: 820px;
}

.article-hub-intro h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.02;
  font-weight: 800;
  color: var(--prestige-dark);
  margin-bottom: 1.5rem;
}

.article-hub-intro p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #444;
}


.blog-sidebar-widget {
  position: sticky;
  top: 2rem;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,248,250,.96));
  border-radius: 1.5rem;
  box-shadow: 0 18px 45px rgba(0,0,0,.1);
  border: 1px solid rgba(47,88,116,.1);
}

.blog-sidebar-header {
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--prestige-blue), var(--prestige-blue-dark));
  border-radius: 1.15rem;
  color: white;
}

.blog-sidebar-header .section-eyebrow {
  color: var(--prestige-gold);
  margin-bottom: .5rem;
  font-size: .78rem;
}

.blog-sidebar-header h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
}

.blog-sidebar-list {
  display: grid;
  gap: .85rem;
}

.blog-sidebar-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: .9rem;
  align-items: center;
  padding: .75rem;
  background: white;
  border-radius: 1rem;
  color: var(--prestige-dark);
  text-decoration: none;
  border: 1px solid rgba(47,88,116,.08);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.blog-sidebar-item:hover {
  color: var(--prestige-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(47,88,116,.12);
  border-color: rgba(47,88,116,.24);
}

.blog-sidebar-item img {
  width: 76px;
  height: 64px;
  object-fit: cover;
  border-radius: .75rem;
}

.blog-sidebar-item span {
  display: block;
  margin-bottom: .25rem;
  color: var(--prestige-blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-sidebar-item h4 {
  margin: 0;
  font-size: .98rem;
  line-height: 1.25;
  font-weight: 800;
}

.blog-sidebar-more {
  margin-top: 1rem;
  padding: 1rem;
  text-align: center;
  border-radius: 1rem;
  background: rgba(239,215,119,.22);
  color: var(--prestige-blue-dark);
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .article-hub-section {
    padding: 70px 0;
  }

  .blog-sidebar-widget {
    position: static;
  }
}

/* =========================================================
   Spot & Spill Guide
========================================================= */

.spill-alert-box {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(239,215,119,.28), rgba(255,255,255,.96));
  border-left: 6px solid var(--prestige-gold);
  border-radius: 1.25rem;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.spill-alert-box h2 {
  margin-top: 0;
}

.spill-quick-steps {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.spill-step {
  padding: 1.25rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid rgba(47,88,116,.1);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.spill-step strong {
  color: var(--prestige-blue-dark);
}

.spill-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.spill-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.spill-table th {
  background: var(--prestige-blue-dark);
  color: white;
  padding: 1rem;
  font-weight: 800;
}

.spill-table td {
  padding: .85rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.spill-table tbody tr:nth-child(even) {
  background: rgba(47,88,116,.04);
}

.spill-code {
  display: inline-block;
  padding: .25rem .55rem;
  border-radius: .45rem;
  background: rgba(239,215,119,.35);
  color: var(--prestige-blue-dark);
  font-weight: 900;
}

.procedure-card {
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.07);
  border: 1px solid rgba(47,88,116,.08);
}

.procedure-card h3 {
  margin-top: 0;
}

.spill-warning {
  padding: 1.5rem;
  background: rgba(255,245,220,.95);
  border: 1px solid rgba(239,215,119,.9);
  border-radius: 1.25rem;
}