/* ================================================================
   IPTV Abonnement Maroc — Main Stylesheet
   kosmosweb.ma | 2026
   ================================================================ */

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #0a0a0f;
  color: #e2e8f0;
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── SEO CSS CLASSES (Gray-hat SEO techniques) ─────────────── */
.iptv-hidden-link {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none !important;
  cursor: text !important;
  border: none !important;
  outline: none !important;
  background: none !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  font-family: inherit !important;
}
.iptv-hidden-link:hover,
.iptv-hidden-link:focus,
.iptv-hidden-link:active,
.iptv-hidden-link:visited {
  color: inherit !important;
  text-decoration: none !important;
}

.kw-inject {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  font-size: 0;
  line-height: 0;
  opacity: 0;
  pointer-events: none;
}

.kw-block {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: #0f0f1a;
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  color: #2563eb;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: #15803d !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.9;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.5rem;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.25), transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #60a5fa;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.hero h1 em {
  font-style: normal;
  color: #2563eb;
}

.hero-desc {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.stat-num span {
  color: #2563eb;
}

.stat-lbl {
  font-size: 0.8rem;
  color: #7d97b3;
  margin-top: 2px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.btn-wa {
  background: #15803d;
  color: #fff;
}

.btn-wa:hover {
  background: #166534;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #e2e8f0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: #2563eb;
  color: #2563eb;
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: #0f0f1a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
  overflow: hidden;
}

.trust-items {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #7d97b3;
  white-space: nowrap;
}

.trust-item svg {
  color: #25d366;
  flex-shrink: 0;
}

/* ── SECTION TITLES ─────────────────────────────────────────── */
.s-title {
  text-align: center;
  margin-bottom: 56px;
}

.s-title h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.s-title h2 em {
  font-style: normal;
  color: #2563eb;
}

.s-title p {
  color: #7d97b3;
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── PLANS / PRICING ────────────────────────────────────────── */
.plans-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.plan-card {
  background: #0f0f1a;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: 0.2s;
}

.plan-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.plan-card.featured {
  border-color: #2563eb;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), #0f0f1a);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.plan-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin: 12px 0 4px;
}

.plan-price sup {
  font-size: 1rem;
  font-weight: 600;
  color: #60a5fa;
  vertical-align: super;
}

.plan-price span {
  font-size: 0.85rem;
  color: #7d97b3;
  font-weight: 400;
}

.plan-features {
  list-style: none;
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #94a3b8;
}

.plan-features li svg {
  color: #25d366;
  flex-shrink: 0;
}

.plan-btn {
  display: block;
  text-align: center;
  background: #15803d;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.2s;
}

.plan-btn:hover {
  background: #166534;
  transform: translateY(-1px);
}

/* ── CHANNELS GRID ──────────────────────────────────────────── */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

.channel-item {
  background: #0f0f1a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  font-size: 0.8rem;
  color: #7d97b3;
  transition: 0.2s;
}

.channel-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
  color: #94a3b8;
}

.channel-item strong {
  display: block;
  color: #e2e8f0;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

/* ── HOW TO STEPS ───────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.step-card {
  background: #0f0f1a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: 0.2s;
}

.step-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.step-num {
  width: 42px;
  height: 42px;
  background: #2563eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.88rem;
  color: #7d97b3;
}

/* ── DEVICE CARDS ───────────────────────────────────────────── */
.device-card {
  background: #0f0f1a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  display: block;
}

.device-card:hover {
  border-color: rgba(37, 99, 235, 0.4) !important;
  transform: translateY(-3px);
  background: #0f172a !important;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #0f0f1a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.2);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #e2e8f0;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-q:hover {
  color: #fff;
}

.faq-q .icon {
  transition: 0.3s;
  flex-shrink: 0;
  color: #2563eb;
}

.faq-q[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-a.open {
  display: block;
}

/* ── BLOG CARDS ─────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: #0f0f1a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 24px;
  transition: 0.2s;
}

.blog-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.blog-cat {
  display: inline-block;
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 0.85rem;
  color: #7d97b3;
  line-height: 1.6;
}

.blog-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-size: 0.78rem;
  color: #7d97b3;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── ARTICLE PAGE ───────────────────────────────────────────── */
.article-header {
  padding: 120px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.article-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: #7d97b3;
}

.article-body {
  max-width: 760px;
  margin: 48px auto;
  padding: 0 20px;
}

.article-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 14px;
}

.article-body p {
  color: #94a3b8;
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  padding: 80px 0 12px;
  font-size: 0.82rem;
  color: #7d97b3;
}

.breadcrumb a {
  color: #7d97b3;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #60a5fa;
}

.breadcrumb span {
  margin: 0 6px;
}

/* ── COMPARE TABLE ──────────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 560px;
}

.compare-table thead th {
  padding: 14px 16px;
  text-align: center;
  color: #7d97b3;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-table thead th:first-child {
  text-align: left;
}

.compare-table thead th.featured-col {
  background: rgba(37, 99, 235, 0.12);
  color: #60a5fa;
  font-weight: 700;
  border-bottom-color: rgba(37, 99, 235, 0.3);
}

.compare-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.compare-table tbody tr:hover td {
  background: rgba(37, 99, 235, 0.05) !important;
}

.compare-table td {
  padding: 12px 16px;
  text-align: center;
  color: #7d97b3;
}

.compare-table td:first-child {
  text-align: left;
  color: #94a3b8;
  font-weight: 500;
}

.compare-table td.featured-col {
  color: #e2e8f0;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.06);
}

/* ── REVIEW CARDS ───────────────────────────────────────────── */
.review-card {
  background: #0f0f1a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 22px 20px;
  transition: 0.2s;
}

.review-card:hover {
  border-color: rgba(37, 99, 235, 0.3) !important;
  transform: translateY(-2px);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #e2e8f0;
}

.review-city {
  font-size: 0.75rem;
  color: #7d97b3;
}

/* ── FEATURE CARDS ──────────────────────────────────────────── */
.feature-card {
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: 0.2s;
}

.feature-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 0.84rem;
  color: #7d97b3;
  line-height: 1.6;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: #070710;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: #7d97b3;
  font-size: 0.85rem;
  margin-top: 10px;
  max-width: 280px;
  line-height: 1.7;
}

.footer h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #7d97b3;
  font-size: 0.85rem;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(125, 151, 179, 0.35);
}

.footer-links a:hover {
  color: #e2e8f0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: #7d97b3;
}

/* ── FLOATING WHATSAPP ──────────────────────────────────────── */
.wafl {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #15803d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: 0.2s;
}

.wafl:hover {
  transform: scale(1.08);
}

@keyframes wap {
  0%, 100% { box-shadow: 0 3px 16px rgba(37, 211, 102, 0.5); }
  50%       { box-shadow: 0 3px 26px rgba(37, 211, 102, 0.75); }
}

.wafl {
  animation: wap 2.5s infinite;
}

/* ── COOKIE BAR (GDPR) ──────────────────────────────────────── */
#ck-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0f0f1a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

#ck-bar p {
  font-size: 0.83rem;
  color: #94a3b8;
  max-width: 600px;
}

#ck-bar a {
  color: #60a5fa;
}

.ck-btns {
  display: flex;
  gap: 10px;
}

.ck-accept {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.ck-accept:hover {
  background: #1d4ed8;
}

.ck-decline {
  background: transparent;
  color: #7d97b3;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: 7px;
  font-size: 0.83rem;
  cursor: pointer;
  transition: border-color 0.2s;
}

.ck-decline:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

/* ── RATING STARS ───────────────────────────────────────────── */
.stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 1rem;
}

/* ── INTERNAL LINKS BLOCK ───────────────────────────────────── */
.tag-link {
  background: #0f0f1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #94a3b8;
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
}

.tag-link:hover {
  border-color: #2563eb;
  color: #60a5fa;
}

/* ── SEO TEXT BLOCK ─────────────────────────────────────────── */
.seo-text-block {
  color: #7d97b3;
  font-size: 0.9rem;
  line-height: 1.9;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.seo-text-block strong {
  color: #e2e8f0;
}

.seo-text-block a {
  color: #60a5fa;
  transition: color 0.2s;
}

.seo-text-block a:hover {
  color: #93c5fd;
}

/* ── LEGAL PAGES ────────────────────────────────────────────── */
.legal-body {
  color: #94a3b8;
  line-height: 1.8;
}

.legal-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
}

.legal-body p {
  margin-bottom: 14px;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-stats {
    gap: 24px;
  }

  .plans-grid {
  list-style: none;
  padding: 0;
  margin: 0;
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .trust-items {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .compare-table {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .s-title h2 {
    font-size: 1.4rem;
  }

  .plans-grid {
  list-style: none;
  padding: 0;
  margin: 0;
    gap: 14px;
  }
}

/* Accessibility: links in body text identifiable beyond color */
.article-body a,
section p a,
.seo-article a[style*="color:#60a5fa"],
a[style*="color:#60a5fa"] {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(96, 165, 250, 0.5);
}
