.article-main {
  background:
    radial-gradient(circle at top left, rgba(255, 212, 229, 0.42), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 239, 196, 0.48), transparent 28%),
    linear-gradient(180deg, #fff8fb 0%, #fffdf8 100%);
}

.article-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 20px 48px;
}

.article-breadcrumbs {
  margin-bottom: 16px;
  font-size: 14px;
  color: #6b7280;
}

.article-breadcrumbs a {
  color: #c2346e;
  text-decoration: none;
}

.article-breadcrumbs a:hover {
  text-decoration: underline;
}

.article-hero,
.article-box {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #f6dce7;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.05);
  padding: 26px;
  margin-bottom: 22px;
}

.article-hero {
  background:
    linear-gradient(135deg, rgba(255, 244, 248, 0.96), rgba(255, 255, 255, 0.98)),
    linear-gradient(90deg, rgba(255, 206, 225, 0.18), transparent);
}

.article-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a81d59;
  background: #ffe4ef;
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 12px;
}

.article-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(31px, 5vw, 46px);
  line-height: 1.15;
  color: #111827;
}

.article-lead,
.article-hero p,
.article-box p,
.article-box li,
.article-box td,
.article-box th {
  color: #374151;
  font-size: 16px;
  line-height: 1.8;
}

.article-lead {
  font-size: 17px;
  margin: 0;
  max-width: 920px;
}

.article-hero p + p,
.article-box p + p {
  margin-top: 14px;
}

.article-box h2 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.24;
  color: #111827;
}

.article-box h3 {
  margin: 18px 0 10px;
  font-size: 18px;
  color: #111827;
}

.article-chips,
.article-cta-row,
.article-link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.article-chips span,
.article-link-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid #f3c7d8;
  background: #fff;
  color: #a41d55;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.article-link-pills a:hover {
  border-color: #d6336c;
  color: #d6336c;
}

.article-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.article-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(214, 51, 108, 0.18);
}

.article-btn.primary {
  background: #d6336c;
  color: #fff;
}

.article-btn.primary:hover {
  background: #be255d;
}

.article-btn.secondary {
  background: #fff;
  color: #a41d55;
  border: 1px solid #f3c7d8;
}

.article-grid,
.article-route-grid,
.article-related-grid,
.article-cluster-grid,
.article-check-grid,
.article-split-grid {
  display: grid;
  gap: 16px;
}

.article-grid,
.article-related-grid,
.article-cluster-grid,
.article-check-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.article-route-grid {
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}

.article-split-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.article-card,
.article-route-card,
.article-related-card,
.article-check-card,
.article-split-card,
.article-cluster-card {
  background: #fffafc;
  border: 1px solid #f2d9e3;
  border-radius: 16px;
  padding: 18px;
}

.article-card p,
.article-route-card p,
.article-related-card p,
.article-check-card p,
.article-split-card p,
.article-cluster-card p {
  margin: 0;
}

.article-card h3,
.article-route-card h3,
.article-related-card h3,
.article-check-card h3,
.article-split-card h3,
.article-cluster-card h3 {
  margin: 0 0 10px;
}

.article-route-card .route-tag,
.article-cluster-card .route-tag {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8c1849;
  background: #ffe7f1;
  padding: 5px 10px;
  border-radius: 999px;
}

.article-card a,
.article-route-card a,
.article-related-card a,
.article-cluster-card a {
  color: #c2346e;
  text-decoration: none;
  font-weight: 700;
}

.article-card a:hover,
.article-route-card a:hover,
.article-related-card a:hover,
.article-cluster-card a:hover,
.article-box a:hover {
  text-decoration: underline;
}

.article-list,
.article-box ul,
.article-box ol {
  margin: 0;
  padding-left: 22px;
}

.article-list li + li,
.article-box li + li {
  margin-top: 8px;
}

.article-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff6ea;
  border: 1px solid #fed7aa;
  color: #7c2d12;
}

.article-table-wrap {
  overflow-x: auto;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.article-table th,
.article-table td {
  padding: 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #f2d9e3;
}

.article-table th {
  background: #fff2f8;
  color: #8c1849;
  font-size: 14px;
}

.article-faq-item + .article-faq-item {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #f2d9e3;
}

.article-callout {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff3f7, #fff);
  border: 1px solid #f4cfdd;
}

.article-related-card .link-title,
.context-links .link-title {
  display: block;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
}

.article-related-card .link-note {
  color: #4b5563;
}

.article-mini {
  color: #6b7280;
  font-size: 14px;
}

@media (max-width: 768px) {
  .article-shell {
    padding: 18px 14px 34px;
  }

  .article-hero,
  .article-box {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .article-box h2 {
    font-size: 24px;
  }
}
