/* ============================================
   Site #10 · 12bsports.co · 12B SPORTS Premium
   Style: Editorial magazine, off-white paper aesthetic
   Prefix: .pm-*  · Fraunces (serif) + Inter · Gold accent
   Logo header: 12BSports-black.png · Footer: white version
   ============================================ */

:root {
  --pm-brand: #C9A961;
  --pm-brand-dark: #A17F3E;
  --pm-secondary: #1E293B;
  --pm-bg: #FBFAF6;
  --pm-bg-alt: #F5F1E8;
  --pm-bg-strip: #1E293B;
  --pm-text: #0F172A;
  --pm-text-muted: #475569;
  --pm-border: #D6D3D1;
  --pm-radius: 0;
  --pm-content-max: 1080px;
  --pm-gap: 24px;
  --pm-gap-lg: 48px;
  --pm-font: 'Inter', system-ui, sans-serif;
  --pm-serif: 'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

.pm-body {
  font-family: var(--pm-font);
  color: var(--pm-text);
  background: var(--pm-bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.pm-skip { position: absolute; left: -9999px; }
.pm-skip:focus { left: 8px; top: 8px; background: var(--pm-brand); color: white; padding: 8px 12px; z-index: 999; }

/* HEADER */
.pm-header { border-bottom: 1px solid var(--pm-border); background: var(--pm-bg); }

.pm-brand-topbar {
  background: var(--pm-bg-strip);
  color: white;
}
.pm-brand-inner {
  max-width: var(--pm-content-max);
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.pm-network-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
.pm-network-nav a { color: rgba(255,255,255,0.75); text-decoration: none; font-family: var(--pm-serif); font-style: italic; font-size: 13px; letter-spacing: 0.05em; }
.pm-network-nav a:hover { color: white; }
.pm-network-nav a[aria-current="page"] { border-bottom: 2px solid var(--pm-brand); padding-bottom: 4px; color: white; }

.pm-masthead {
  max-width: var(--pm-content-max);
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

/* Logo — inside dark brand-topbar, no wrapper needed */
.pm-logo {
  display: inline-flex; align-items: center;
  text-decoration: none;
  transition: opacity 0.15s;
}
.pm-logo:hover { opacity: 0.85; }
.pm-logo img { height: 88px; width: auto; }

.pm-tagline {
  font-family: var(--pm-serif); font-style: italic;
  font-size: 13px; color: rgba(255,255,255,0.65);
  letter-spacing: 0.2em; text-transform: uppercase;
}

.pm-menu-toggle {
  display: none;
  position: absolute; right: 16px; top: 24px;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--pm-border);
  border-radius: 4px; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 4px; padding: 10px;
}
.pm-menu-toggle span { display: block; width: 100%; height: 2px; background: var(--pm-text); }

.pm-mainnav {
  display: flex; justify-content: center; gap: 32px;
  padding: 12px 0 20px;
  border-top: 3px double var(--pm-text);
  border-bottom: 1px solid var(--pm-border);
  margin-top: 12px;
  flex-wrap: wrap;
}
.pm-mainnav a { color: var(--pm-text); text-decoration: none; font-family: var(--pm-serif); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; padding: 8px 0; }
.pm-mainnav a:hover { color: var(--pm-brand-dark); }

/* HERO */
.pm-main { max-width: var(--pm-content-max); margin: 0 auto; padding: 0 16px; }

.pm-hero-feature { padding: var(--pm-gap-lg) 0; border-bottom: 1px solid var(--pm-border); text-align: center; }

.pm-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--pm-brand-dark);
  margin-bottom: 20px;
}

.pm-hero-title {
  font-family: var(--pm-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--pm-text);
}

.pm-hero-standfirst {
  font-family: var(--pm-serif); font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5; color: var(--pm-text-muted);
  max-width: 780px; margin: 0 auto 24px;
}

.pm-hero-meta {
  display: flex; justify-content: center; gap: 8px;
  font-size: 13px; color: var(--pm-text-muted);
  flex-wrap: wrap;
}
.pm-hero-meta strong { color: var(--pm-text); }

/* SECTIONS */
.pm-section { padding: var(--pm-gap-lg) 0; border-bottom: 1px solid var(--pm-border); }
.pm-vhead { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: var(--pm-gap); flex-wrap: wrap; gap: 12px; }
.pm-sec-title { font-family: var(--pm-serif); font-weight: 900; font-size: 26px; }
.pm-more { font-size: 13px; color: var(--pm-brand-dark); text-decoration: none; font-family: var(--pm-serif); font-style: italic; letter-spacing: 0.05em; }
.pm-more:hover { text-decoration: underline; }

/* FEATURES */
.pm-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--pm-gap-lg);
}
.pm-feature { padding-right: var(--pm-gap); border-right: 1px solid var(--pm-border); }
.pm-feature:last-child { border-right: none; padding-right: 0; }
.pm-tag {
  display: inline-block;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pm-brand-dark);
  margin-bottom: 12px;
}
.pm-feature h3 { font-family: var(--pm-serif); font-size: 22px; font-weight: 900; line-height: 1.2; margin-bottom: 10px; }
.pm-feature h3 a { color: var(--pm-text); text-decoration: none; }
.pm-feature h3 a:hover { color: var(--pm-brand-dark); }
.pm-feature p { font-family: var(--pm-serif); font-size: 15px; color: var(--pm-text-muted); margin-bottom: 12px; }
.pm-meta { font-size: 12px; color: var(--pm-text-muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* COLUMNS */
.pm-column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--pm-gap);
}
.pm-column { padding: 20px; background: var(--pm-bg-alt); border-left: 3px solid var(--pm-brand); }
.pm-column h4 { font-family: var(--pm-serif); font-size: 18px; font-weight: 600; line-height: 1.3; margin-bottom: 10px; }
.pm-column h4 a { color: var(--pm-text); text-decoration: none; }
.pm-column h4 a:hover { color: var(--pm-brand-dark); }

/* AD SLOT */
.pm-adslot { padding: var(--pm-gap-lg) 0; text-align: center; border-top: 1px dashed var(--pm-border); border-bottom: 1px dashed var(--pm-border); }
.pm-ad-label { display: block; font-family: var(--pm-serif); font-style: italic; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--pm-text-muted); margin-bottom: 12px; }
.pm-ad-cta { display: inline-block; padding: 14px 20px; background: var(--pm-bg-alt); border: 1px dashed var(--pm-border); color: var(--pm-text); text-decoration: none; font-size: 14px; }
.pm-ad-cta span { display: block; font-size: 11px; color: var(--pm-text-muted); text-transform: uppercase; margin-bottom: 4px; }

/* FOOTER */
.pm-footer { background: var(--pm-secondary); color: white; padding: var(--pm-gap-lg) 0 var(--pm-gap) 0; margin-top: var(--pm-gap-lg); }
.pm-footer-network {
  max-width: var(--pm-content-max);
  margin: 0 auto;
  padding: 0 16px var(--pm-gap-lg) 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.pm-footer-logo { display: inline-block; margin-bottom: 20px; padding: 4px 0; }
.pm-footer-logo img { height: 72px; width: auto; }
.pm-footer-title { font-family: var(--pm-serif); font-size: 18px; margin-bottom: 20px; opacity: 0.7; letter-spacing: 0.1em; text-transform: uppercase; }

.pm-network-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--pm-gap); text-align: left; }
.pm-network-list a { color: white; text-decoration: none; display: flex; flex-direction: column; padding: 16px; background: rgba(255,255,255,0.05); transition: background 0.2s; }
.pm-network-list a:hover { background: rgba(255,255,255,0.12); }
.pm-network-list strong { font-family: var(--pm-serif); font-weight: 900; margin-bottom: 4px; }
.pm-network-list span { font-size: 13px; opacity: 0.7; font-style: italic; }

.pm-footer-cols {
  max-width: var(--pm-content-max);
  margin: 0 auto;
  padding: var(--pm-gap-lg) 16px var(--pm-gap) 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--pm-gap-lg);
}
.pm-footer-cols h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; opacity: 0.7; }
.pm-footer-cols ul { list-style: none; }
.pm-footer-cols li { padding: 4px 0; }
.pm-footer-cols a { color: white; text-decoration: none; opacity: 0.75; font-size: 14px; }
.pm-footer-cols a:hover { opacity: 1; }

.pm-footer-legal { max-width: var(--pm-content-max); margin: 0 auto; padding: var(--pm-gap) 16px 0 16px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12px; opacity: 0.5; text-align: center; font-family: var(--pm-serif); font-style: italic; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .pm-feature-grid { grid-template-columns: 1fr; }
  .pm-feature { border-right: none; padding-right: 0; padding-bottom: var(--pm-gap-lg); border-bottom: 1px solid var(--pm-border); }
  .pm-feature:last-child { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 700px) {
  .pm-menu-toggle { display: flex; }
  .pm-mainnav { display: none; flex-direction: column; gap: 0; padding: 0; border-top: none; border-bottom: none; }
  .pm-mainnav.is-open { display: flex; }
  .pm-mainnav a { padding: 14px 20px; border-bottom: 1px solid var(--pm-border); width: 100%; text-align: center; }
  .pm-brandstrip { justify-content: center; text-align: center; padding: 8px; font-size: 11px; }
  .pm-logo img { height: 66px; }
  .pm-brand-inner { padding: 20px 16px; }
  .pm-tagline { font-size: 11px; }
}

/* Article page — full blog post */
.pm-article-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px var(--pm-gap) 60px;
}
.pm-article-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 32px;
  max-height: 520px;
  overflow: hidden;
  position: relative;
}
.pm-article-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pm-article-hero-caption {
  position: absolute;
  bottom: 12px; right: 20px;
  font-size: 11px;
  color: #FFF;
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}
.pm-article-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--pm-brand-dark);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.pm-article-h1 {
  font-family: var(--pm-serif);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.pm-article-standfirst {
  font-family: var(--pm-serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  color: var(--pm-text-muted);
  margin-bottom: 24px;
}
.pm-article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--pm-border);
  border-bottom: 1px solid var(--pm-border);
  margin-bottom: 32px;
  font-size: 14px;
}
.pm-byline-photo {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DC2626, #7C2D12);
  color: #FFF;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
}
.pm-byline-info { display: flex; flex-direction: column; }
.pm-byline-info strong { font-size: 15px; color: var(--pm-text); }
.pm-byline-info span { font-size: 12px; color: var(--pm-text-muted); }
.pm-byline-meta { margin-left: auto; font-size: 12px; color: var(--pm-text-muted); text-align: right; }

.pm-article-body { font-family: var(--pm-serif); font-size: 18px; line-height: 1.75; color: var(--pm-text); }
.pm-article-body p { margin-bottom: 22px; }
.pm-article-body p:first-of-type::first-letter {
  font-size: 68px;
  font-weight: 900;
  float: left;
  line-height: 0.9;
  padding: 8px 12px 0 0;
  color: var(--pm-brand);
  font-family: var(--pm-serif);
}
.pm-article-body h2 {
  font-family: var(--pm-serif);
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--pm-text);
}
.pm-article-body h3 {
  font-family: var(--pm-serif);
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
}
.pm-article-body blockquote {
  font-family: var(--pm-serif);
  font-size: 22px;
  font-style: italic;
  border-left: 4px solid var(--pm-brand);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  color: var(--pm-text-muted);
}
.pm-article-body blockquote cite {
  display: block;
  font-size: 14px;
  font-style: normal;
  margin-top: 12px;
  opacity: 0.7;
}
.pm-article-body ul, .pm-article-body ol { margin: 16px 0 22px 28px; }
.pm-article-body li { margin-bottom: 8px; }
.pm-article-body img { margin: 24px auto; border-radius: 4px; }
.pm-article-body figure { margin: 32px 0; }
.pm-article-body figcaption { font-size: 13px; color: var(--pm-text-muted); text-align: center; margin-top: 8px; font-style: italic; }
.pm-article-body strong { color: var(--pm-text); }

.pm-article-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 40px 0 24px;
  padding-top: 24px;
  border-top: 1px solid var(--pm-border);
}
.pm-article-tags a {
  font-size: 12px;
  padding: 6px 12px;
  background: var(--pm-bg-alt);
  color: var(--pm-text-muted);
  text-decoration: none;
  border-radius: 20px;
  transition: background 0.2s;
}
.pm-article-tags a:hover { background: var(--pm-brand); color: #FFF; }

.pm-article-related {
  margin: 48px 0 0;
  padding-top: 32px;
  border-top: 2px solid var(--pm-brand);
}
.pm-article-related h3 {
  font-family: var(--pm-serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.pm-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.pm-related-card {
  padding: 16px;
  background: var(--pm-bg-alt);
  border-left: 3px solid var(--pm-brand);
}
.pm-related-card a {
  color: inherit;
  text-decoration: none;
  font-family: var(--pm-serif);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
}
.pm-related-card a:hover { color: var(--pm-brand-dark); }
.pm-related-card span { display: block; font-family: var(--pm-font); font-size: 11px; color: var(--pm-text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }

/* Blog listing hero images */
.sp-blog-item.has-thumb { display: grid; grid-template-columns: 200px 1fr; gap: 20px; align-items: center; }
.sp-blog-thumb { width: 100%; height: 140px; object-fit: cover; border-radius: 4px; }
@media (max-width: 600px) {
  .sp-blog-item.has-thumb { grid-template-columns: 1fr; }
  .sp-blog-thumb { height: 180px; }
  .pm-article-page { padding: 20px 16px 40px; }
  .pm-article-body { font-size: 16px; }
  .pm-article-body blockquote { font-size: 18px; }
}

/* Ad Banner Slots — 3 sizes */
.pm-ad-slot {
  max-width: var(--pm-content-max);
  margin: 32px auto;
  padding: 0 var(--pm-gap);
  text-align: center;
}
.pm-ad-slot-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pm-text-muted);
  margin-bottom: 8px;
  font-family: var(--pm-font);
}
.pm-ad-hero {
  /* Desktop: 970x250 · Mobile: 320x100 */
  display: block;
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}
.pm-ad-hero:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.pm-ad-hero picture, .pm-ad-hero img { display: block; width: 100%; height: auto; }

.pm-ad-leaderboard {
  display: block;
  width: 100%;
  max-width: 728px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.pm-ad-leaderboard:hover { transform: translateY(-2px); }
.pm-ad-leaderboard img { display: block; width: 100%; height: auto; }

.pm-ad-rectangle {
  display: block;
  width: 300px;
  max-width: 100%;
  margin: 24px auto;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.pm-ad-rectangle:hover { transform: translateY(-2px); }
.pm-ad-rectangle img { display: block; width: 100%; height: auto; }

/* Long-form preview & Process — added for depth pass */
.pm-hero-excerpt { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--pm-border); }
.pm-hero-excerpt p { font-family: var(--pm-serif); font-size: 18px; line-height: 1.75; margin-bottom: 16px; color: var(--pm-text); }
.pm-hero-excerpt p:first-child::first-letter { font-size: 60px; font-weight: 900; float: left; line-height: 0.9; padding: 6px 10px 0 0; color: var(--pm-brand); font-family: var(--pm-serif); }
.pm-hero-cta { display: inline-block; padding: 12px 24px; background: var(--pm-brand); color: #fff; font-weight: 700; text-decoration: none; margin-top: 8px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.pm-hero-cta:hover { background: var(--pm-brand-dark); }

.pm-longform-preview {
  max-width: var(--pm-content-max);
  margin: var(--pm-gap-lg) auto;
  padding: var(--pm-gap-lg) var(--pm-gap);
  background: var(--pm-bg-alt);
  border-top: 4px solid var(--pm-brand);
}
.pm-longform-preview .pm-tag { display: inline-block; font-size: 11px; letter-spacing: 0.15em; font-weight: 700; color: var(--pm-brand-dark); text-transform: uppercase; margin-bottom: 12px; }
.pm-longform-preview h2 { font-family: var(--pm-serif); font-size: clamp(24px, 4vw, 38px); font-weight: 900; line-height: 1.15; margin-bottom: 8px; }
.pm-longform-preview h2 a { color: inherit; text-decoration: none; }
.pm-longform-preview h2 a:hover { text-decoration: underline; text-decoration-color: var(--pm-brand); }
.pm-longform-meta { font-size: 12px; color: var(--pm-text-muted); margin-bottom: 20px; letter-spacing: 0.03em; }
.pm-longform-lead { font-family: var(--pm-serif); font-size: 20px; font-style: italic; line-height: 1.55; margin-bottom: 24px; color: var(--pm-text); }
.pm-longform-body { font-family: var(--pm-serif); font-size: 17px; line-height: 1.75; margin-bottom: 20px; }
.pm-longform-preview blockquote {
  border-left: 4px solid var(--pm-brand);
  padding: 6px 0 6px 20px;
  margin: 24px 0;
  font-family: var(--pm-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--pm-text-muted);
}
.pm-longform-cta {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--pm-brand);
  color: var(--pm-brand-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pm-longform-cta:hover { background: var(--pm-brand); color: #fff; }

.pm-process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 20px; }
.pm-process-step { position: relative; padding: 24px 20px; background: var(--pm-bg-alt); border-left: 3px solid var(--pm-brand); }
.pm-step-num { display: block; font-family: var(--pm-serif); font-size: 40px; font-weight: 900; color: var(--pm-brand); line-height: 1; margin-bottom: 8px; }
.pm-process-step h4 { font-family: var(--pm-serif); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pm-process-step p { font-size: 14px; line-height: 1.6; color: var(--pm-text-muted); }

.pm-column p { font-size: 14px; color: var(--pm-text-muted); line-height: 1.55; margin: 6px 0 8px; }

@media (max-width: 480px) {
  .pm-brandstrip { flex-direction: column; gap: 6px; }
  .pm-hero-excerpt p { font-size: 16px; }
  .pm-longform-lead { font-size: 17px; }
  .pm-longform-body { font-size: 15px; }
}

/* ===== Shared page utilities (from _common.css) ===== */
/* ============================================
   Shared Pages · Content-only utility styles
   Used inside <main> of each site
   Prefix: .sp-*  (safe — no site prefix collision)
   Import this AFTER the site's own styles.css
   ============================================ */

.sp-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.sp-h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  color: inherit;
}

.sp-lede {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(0,0,0,0.65);
  margin-bottom: 32px;
  line-height: 1.5;
}
.sp-body-dark .sp-lede { color: rgba(255,255,255,0.75); }

.sp-h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid currentColor;
  opacity: 0.9;
}

.sp-h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 10px;
}

.sp-p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.sp-ul, .sp-ol {
  margin: 12px 0 20px 24px;
  line-height: 1.7;
}
.sp-ul li, .sp-ol li { margin-bottom: 6px; }

.sp-callout {
  padding: 20px 24px;
  background: rgba(0,0,0,0.04);
  border-left: 4px solid currentColor;
  border-radius: 4px;
  margin: 24px 0;
  font-size: 15px;
}
.sp-body-dark .sp-callout { background: rgba(255,255,255,0.05); }

.sp-callout strong { display: block; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; opacity: 0.75; }

.sp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.sp-card {
  padding: 24px;
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
}
.sp-body-dark .sp-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.sp-card b { display: block; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.sp-card p { font-size: 14px; opacity: 0.75; }

.sp-faq { margin: 16px 0; }
.sp-faq details {
  padding: 16px 20px;
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid rgba(0,0,0,0.08);
}
.sp-body-dark .sp-faq details { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.sp-faq summary { font-weight: 700; cursor: pointer; outline: none; font-size: 16px; }
.sp-faq p { margin-top: 10px; font-size: 15px; opacity: 0.85; }

.sp-form-block {
  padding: 32px;
  background: rgba(0,0,0,0.03);
  border-radius: 12px;
  margin: 24px 0;
}
.sp-body-dark .sp-form-block { background: rgba(255,255,255,0.05); }

.sp-label {
  display: block;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.sp-input, .sp-textarea {
  width: 100%;
  padding: 12px 14px;
  background: white;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  margin-bottom: 16px;
}
.sp-body-dark .sp-input, .sp-body-dark .sp-textarea { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: white; }
.sp-input:focus, .sp-textarea:focus { outline: 2px solid rgba(59,130,246,0.5); }
.sp-textarea { min-height: 120px; resize: vertical; }

.sp-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #DC2626;
  color: white;
  border: none; border-radius: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.sp-btn:hover { opacity: 0.85; }

.sp-inline-link { color: inherit; text-decoration: underline; font-weight: 600; }

.sp-blog-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 20px;
}
.sp-blog-item {
  padding: 20px 24px;
  border-left: 3px solid currentColor;
  background: rgba(0,0,0,0.03);
  border-radius: 0 8px 8px 0;
}
.sp-body-dark .sp-blog-item { background: rgba(255,255,255,0.05); }
.sp-blog-item h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.sp-blog-item h3 a { color: inherit; text-decoration: none; }
.sp-blog-item h3 a:hover { text-decoration: underline; }
.sp-blog-item .sp-meta { font-size: 12px; opacity: 0.65; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; display: block; }
.sp-blog-item .sp-excerpt { font-size: 15px; opacity: 0.85; }

.sp-mp-highlight {
  padding: 20px 24px;
  background: rgba(220,38,38,0.08);
  border-left: 4px solid #DC2626;
  border-radius: 4px;
  margin: 24px 0;
}
.sp-body-dark .sp-mp-highlight { background: rgba(220,38,38,0.15); }
.sp-mp-highlight strong { display: block; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; color: #DC2626; }
.sp-body-dark .sp-mp-highlight strong { color: #FCA5A5; }

.sp-legal-toc {
  padding: 16px 20px;
  background: rgba(0,0,0,0.03);
  border-radius: 6px;
  margin-bottom: 32px;
  font-size: 14px;
}
.sp-body-dark .sp-legal-toc { background: rgba(255,255,255,0.05); }
.sp-legal-toc strong { display: block; margin-bottom: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.75; }
.sp-legal-toc ol { list-style-position: inside; }
.sp-legal-toc a { color: inherit; text-decoration: none; opacity: 0.85; }
.sp-legal-toc a:hover { opacity: 1; text-decoration: underline; }

/* Editorial Team (EEAT) */
.sp-editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 24px 0 32px;
}
.sp-editor {
  padding: 20px;
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sp-body-dark .sp-editor { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.sp-editor-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DC2626, #7C2D12);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.sp-editor-name { font-size: 17px; font-weight: 700; margin: 0; }
.sp-editor-role { font-size: 13px; font-weight: 600; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.04em; margin: 0; }
.sp-editor-bio { font-size: 13px; opacity: 0.8; line-height: 1.55; margin: 6px 0 0; }
.sp-editor-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
.sp-editor-tags span {
  font-size: 11px; padding: 2px 8px;
  background: rgba(0,0,0,0.06); border-radius: 12px;
  font-weight: 600;
}
.sp-body-dark .sp-editor-tags span { background: rgba(255,255,255,0.1); }

/* Long-form article body */
.sp-article-body { font-size: 16px; line-height: 1.75; }
.sp-article-body p { margin-bottom: 18px; }
.sp-article-body h2 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 2px solid currentColor; opacity: 0.9; }
.sp-article-body h3 { font-size: 18px; font-weight: 700; margin: 24px 0 8px; }
.sp-article-body blockquote {
  border-left: 4px solid #DC2626;
  padding: 6px 0 6px 18px;
  margin: 22px 0;
  font-style: italic;
  opacity: 0.85;
}
.sp-article-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.sp-article-body th, .sp-article-body td { padding: 10px 12px; border-bottom: 1px solid rgba(0,0,0,0.1); text-align: left; }
.sp-body-dark .sp-article-body th, .sp-body-dark .sp-article-body td { border-color: rgba(255,255,255,0.1); }
.sp-article-body th { background: rgba(0,0,0,0.04); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.sp-body-dark .sp-article-body th { background: rgba(255,255,255,0.05); }

.sp-byline {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 24px;
  font-size: 14px;
}
.sp-body-dark .sp-byline { border-color: rgba(255,255,255,0.1); }
.sp-byline-photo {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #DC2626, #7C2D12);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.sp-byline-info { display: flex; flex-direction: column; }
.sp-byline-info strong { font-size: 15px; }
.sp-byline-info span { font-size: 12px; opacity: 0.65; }

@media (max-width: 600px) {
  .sp-page { padding: 24px 16px 40px; }
  .sp-form-block { padding: 20px 16px; }
  .sp-editorial-grid { grid-template-columns: 1fr; }
}
