/* SPORTIVA SEO Articles */
.seo-articles-section {
  width: 100%;
  margin: 34px auto 0;
  padding: 0 18px 46px;
  color: #fff;
}
.seo-articles-shell {
  max-width: 1380px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(187,245,23,.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(235,4,0,.14), transparent 35%),
    linear-gradient(145deg, rgba(18,18,28,.96), rgba(5,5,10,.98));
  box-shadow: 0 22px 70px rgba(0,0,0,.38);
  overflow: hidden;
  position: relative;
}
.seo-articles-shell:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent);
  pointer-events: none;
}
.seo-articles-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 32px 20px;
}
.seo-articles-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #bbf517;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 11px;
  text-transform: uppercase;
  white-space: nowrap;
}
.seo-articles-title-wrap { max-width: 850px; }
.seo-articles-title-wrap h2 {
  margin: 0;
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.seo-articles-title-wrap p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  font-size: 14px;
}
.seo-articles-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 32px 32px;
}
.seo-article-card {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.seo-article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(187,245,23,.45);
  background: rgba(255,255,255,.07);
}
.seo-article-card.is-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}
.seo-article-thumb {
  display: block;
  min-height: 210px;
  background: rgba(0,0,0,.35);
  overflow: hidden;
}
.seo-article-thumb img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.seo-article-card:hover .seo-article-thumb img { transform: scale(1.04); }
.seo-article-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 230px;
}
.seo-article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,.54);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.seo-article-meta span:first-child {
  color: #bbf517;
}
.seo-article-body h3 {
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.seo-article-body h3 a {
  color: #fff;
  text-decoration: none;
}
.seo-article-body h3 a:hover { color: #bbf517; }
.seo-article-body p {
  margin: 12px 0 18px;
  color: rgba(255,255,255,.70);
  line-height: 1.65;
  font-size: 14px;
}
.seo-article-read {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: #111;
  background: linear-gradient(135deg, #bbf517, #8dd60b);
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}
.article-detail-page {
  padding: 110px 18px 50px;
  background: #06070b;
  min-height: 100vh;
}
.article-detail-shell {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(18,18,28,.97), rgba(8,8,14,.98));
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
}
.article-detail-hero img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}
.article-detail-content {
  padding: clamp(24px, 5vw, 52px);
  color: rgba(255,255,255,.82);
}
.article-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bbf517;
  text-decoration: none;
  font-weight: 800;
  margin-bottom: 18px;
}
.article-detail-content h1 {
  margin: 0;
  color: #fff;
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  line-height: .92;
  text-transform: uppercase;
}
.article-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 18px 0 28px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  font-weight: 700;
}
.article-detail-body {
  font-size: 16px;
  line-height: 1.9;
}
.article-detail-body h2,
.article-detail-body h3,
.article-detail-body h4 { color: #fff; line-height: 1.25; margin-top: 30px; }
.article-detail-body a { color: #bbf517; }
.article-detail-body blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid #bbf517;
  background: rgba(255,255,255,.05);
  border-radius: 16px;
}
@media (max-width: 980px) {
  .seo-articles-head { align-items: flex-start; flex-direction: column; }
  .seo-articles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-article-card.is-featured { grid-column: span 2; grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .seo-articles-section { padding-left: 12px; padding-right: 12px; }
  .seo-articles-head { padding: 24px 18px 16px; }
  .seo-articles-grid { grid-template-columns: 1fr; padding: 0 18px 22px; }
  .seo-article-card.is-featured { grid-column: span 1; }
  .seo-article-body { min-height: auto; }
}

/* Expert article structure: breadcrumb, schema badge, TOC, FAQ */
.seo-article-card-extra {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  font-weight: 800;
  margin: -4px 0 16px;
}
.article-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.50);
  font-size: 13px;
  font-weight: 800;
}
.article-breadcrumb a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
}
.article-breadcrumb a:hover { color: #bbf517; }
.article-breadcrumb span:last-child {
  color: #bbf517;
}
.article-breadcrumb-separator {
  color: rgba(255,255,255,.26) !important;
}
.article-schema-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(187,245,23,.22);
  border-radius: 999px;
  background: rgba(187,245,23,.10);
  color: #bbf517;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}
.article-detail-excerpt {
  margin: 22px 0 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(187,245,23,.08);
  border: 1px solid rgba(187,245,23,.18);
  color: rgba(255,255,255,.82);
  line-height: 1.8;
  font-size: 16px;
}
.article-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}
.article-keywords span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.70);
  font-size: 12px;
  font-weight: 800;
}
.article-toc {
  margin: 28px 0;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
}
.article-toc h2 {
  margin: 0 0 12px !important;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 20px !important;
  font-family: 'Inter', sans-serif !important;
  text-transform: none !important;
  line-height: 1.3 !important;
}
.article-toc h2 i { color: #bbf517; }
.article-toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}
.article-toc li { color: rgba(255,255,255,.35); }
.article-toc li.toc-h3 { margin-left: 18px; font-size: 14px; }
.article-toc a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
  font-weight: 700;
}
.article-toc a:hover { color: #bbf517; }
.article-detail-body img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}
.article-detail-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  overflow: hidden;
  border-radius: 14px;
}
.article-detail-body th,
.article-detail-body td {
  border: 1px solid rgba(255,255,255,.10);
  padding: 12px;
  text-align: left;
}
.article-detail-body th {
  background: rgba(187,245,23,.12);
  color: #fff;
}
.article-faq-section {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.article-faq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bbf517;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
  margin-bottom: 10px;
}
.article-faq-section h2 {
  margin: 0 0 18px !important;
  color: #fff;
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}
.article-faq-list {
  display: grid;
  gap: 12px;
}
.article-faq-item {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  overflow: hidden;
}
.article-faq-item summary {
  cursor: pointer;
  padding: 17px 19px;
  color: #fff;
  font-weight: 900;
  list-style: none;
}
.article-faq-item summary::-webkit-details-marker { display: none; }
.article-faq-item summary:after {
  content: '+';
  float: right;
  color: #bbf517;
  font-size: 20px;
  line-height: 1;
}
.article-faq-item[open] summary:after { content: '−'; }
.article-faq-item p {
  margin: 0;
  padding: 0 19px 18px;
  color: rgba(255,255,255,.74);
  line-height: 1.75;
}
@media (max-width: 640px) {
  .article-schema-badge { border-radius: 14px; align-items: flex-start; }
  .article-toc { padding: 16px; }
  .article-toc li.toc-h3 { margin-left: 10px; }
}
