/* Self-contained blog article styles. All rules are scoped under `.article`
   so they never affect the rest of the site UI, and they don't rely on the
   pre-compiled Tailwind (which the app serves without a live JIT). */

.article {
  --ink: #2f3033;
  --muted: #5b616e;
  --coral: #ff5650;
  --line: #e9ebef;
  --soft: #f6f7f9;
  width: 100%;
  background: #fff;
  padding: 40px 20px 64px;
}
@media (min-width: 768px) {
  .article {
    padding: 48px 24px 80px;
  }
}
.article__wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 780px;
}

.article__crumb {
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--muted);
}
.article__crumb a {
  color: var(--muted);
  text-decoration: none;
}
.article__crumb a:hover {
  color: var(--coral);
}
.article__crumb span {
  padding: 0 6px;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.article__cat {
  border-radius: 999px;
  background: #ffecec;
  color: var(--coral);
  padding: 2px 10px;
}

.article__title {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .article__title {
    font-size: 38px;
    line-height: 46px;
  }
}

.article__hero {
  display: block;
  width: 100%;
  aspect-ratio: 800 / 420; /* reserve space so decoding the SVG can't shift layout */
  object-fit: cover;
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--soft);
}

.article__answer {
  margin-bottom: 32px;
  border-left: 4px solid var(--coral);
  border-radius: 14px;
  background: #fff5f5;
  padding: 20px;
}
.article__answer-label {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--coral);
}
.article__answer p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
}

.article__toc {
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  padding: 18px 20px;
}
.article__toc-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.article__toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.article__toc a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}
.article__toc a:hover {
  color: var(--coral);
}

.article__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.article__section {
  scroll-margin-top: 88px;
}
.article__section h2 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .article__section h2 {
    font-size: 28px;
  }
}
.article__blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article__blocks p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}
.article__blocks ul,
.article__blocks ol {
  margin: 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}
.article__blocks li {
  padding-left: 4px;
}
.article__blocks li::marker {
  color: var(--coral);
  font-weight: 600;
}
.article a.article__link {
  font-weight: 500;
  color: var(--coral);
  text-decoration: underline;
  text-decoration-color: rgba(255, 86, 80, 0.4);
  text-underline-offset: 2px;
}
.article a.article__link:hover {
  text-decoration-color: var(--coral);
}
.article strong {
  font-weight: 600;
  color: var(--ink);
}

.article__callout {
  border: 1px solid #ffd9d9;
  background: #fff5f5;
  border-radius: 14px;
  padding: 16px 18px;
}
.article__callout-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--coral);
}
.article__callout p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.article__fig {
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.article__fig img {
  width: 100%;
  aspect-ratio: 800 / 420;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
}
.article__cap {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.article__related,
.article__sources {
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
  padding: 24px;
}
.article__related-title,
.article__sources-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.article__related ul,
.article__sources ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article__related li,
.article__sources li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
}
.article__related li::before,
.article__sources li::before {
  content: "→";
  color: var(--coral);
  line-height: 1.6;
}
.article__related a {
  font-weight: 500;
  color: var(--coral);
  text-decoration: underline;
  text-decoration-color: rgba(255, 86, 80, 0.4);
  text-underline-offset: 2px;
}
.article__sources a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}
.article__sources a:hover,
.article__related a:hover {
  color: var(--coral);
}

.article__faqwrap {
  margin-top: 44px;
}
.article__faqwrap > h2 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}
@media (min-width: 768px) {
  .article__faqwrap > h2 {
    font-size: 28px;
  }
}
.article__faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article__faq-item {
  border-radius: 12px;
  background: var(--soft);
  padding: 14px 16px;
}
@media (min-width: 768px) {
  .article__faq-item {
    padding: 16px 20px;
  }
}
.article__faq-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.article__faq-q {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.article__faq-chevron {
  flex: 0 0 auto;
  color: #8c919e;
  transition: transform 0.2s ease;
}
.article__faq-item.is-open .article__faq-chevron {
  transform: rotate(180deg);
}
.article__faq-a {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* ---- Static content / legal pages (scoped under .legal) ---- */
.legal {
  --ink: #2f3033;
  --muted: #5b616e;
  --coral: #ff5650;
  --line: #e9ebef;
  --soft: #f6f7f9;
  width: 100%;
  background: #fff;
  padding: 48px 20px 72px;
}
.legal__wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 820px;
}
.legal__crumb {
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--muted);
}
.legal__crumb a { color: var(--muted); text-decoration: none; }
.legal__crumb a:hover { color: var(--coral); }
.legal__crumb span { padding: 0 6px; }
.legal__title {
  margin: 0 0 6px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
@media (min-width: 768px) { .legal__title { font-size: 40px; } }
.legal__updated { margin: 0 0 28px; font-size: 14px; color: var(--muted); }
.legal__intro { margin: 0 0 28px; font-size: 18px; line-height: 1.7; color: var(--muted); }
.legal__section { margin-top: 34px; }
.legal__section h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
.legal__section h3 {
  margin: 18px 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.legal p { margin: 0 0 14px; font-size: 16.5px; line-height: 1.75; color: var(--muted); }
.legal ul { margin: 0 0 14px; padding-left: 24px; list-style: disc; font-size: 16.5px; line-height: 1.7; color: var(--muted); }
.legal ol { margin: 0 0 14px; padding-left: 24px; list-style: decimal; font-size: 16.5px; line-height: 1.7; color: var(--muted); }
.legal li { margin-bottom: 8px; padding-left: 4px; }
.legal li::marker { color: var(--coral); }
.legal a.legal__link {
  color: var(--coral);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(255,86,80,0.4);
  text-underline-offset: 2px;
  word-break: break-word;
}
.legal a.legal__link:hover { text-decoration-color: var(--coral); }
.legal__card {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
  padding: 22px 24px;
}
.legal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  background: #ff5650;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(255,83,80,0.24);
}
.legal__cta:hover { background: #ee3f3c; }
.legal__grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .legal__grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   Magazine-style article layout (.post) — sidebar TOC, byline,
   share rail, newsletter, tags, author card, related cards.
   ============================================================ */
.post {
  --ink: #2f3033;
  --muted: #5b616e;
  --coral: #ff5650;
  --line: #e9ebef;
  --soft: #f7f8fa;
  width: 100%;
  background: #fff;
}
.post__head {
  border-bottom: 1px solid var(--line);
}
.post__head-inner {
  margin: 0 auto;
  max-width: 1280px;
  padding: 40px 24px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) {
  .post__head-inner { grid-template-columns: 1.1fr 0.9fr; gap: 48px; padding: 56px 24px; }
}
.post__crumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.post__crumb a { color: var(--muted); text-decoration: none; }
.post__crumb a:hover { color: var(--coral); }
.post__crumb span { padding: 0 6px; }
.post__eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--coral); margin: 0 0 14px; }
.post__title { margin: 0 0 16px; font-size: 34px; line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
@media (min-width: 900px) { .post__title { font-size: 46px; } }
.post__dek { margin: 0 0 22px; font-size: 18px; line-height: 1.6; color: var(--muted); }
.post__byline { display: flex; align-items: center; gap: 12px; }
.post__avatar {
  width: 44px; height: 44px; flex: 0 0 auto; border-radius: 999px;
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 14px;
  background: linear-gradient(135deg, #ff8a5b, #ff5650 55%, #d4419a);
}
.post__author { display: block; font-weight: 700; font-size: 15px; color: var(--ink); }
.post__byline-meta { display: block; font-size: 13px; color: var(--muted); }
.post__hero { display: block; width: 100%; height: auto; border-radius: 18px; border: 1px solid var(--line); background: #fff; box-shadow: 0 20px 44px -20px rgba(0,0,0,0.25); }

.post__grid {
  margin: 0 auto;
  max-width: 1280px;
  padding: 40px 24px 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .post__grid { grid-template-columns: 220px minmax(0,1fr) 280px; gap: 48px; align-items: start; }
}

.post__toc { display: none; }
@media (min-width: 1024px) {
  .post__toc { display: block; position: sticky; top: 90px; }
}
.post__toc-title { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.post__toc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.post__toc a {
  display: block; padding: 6px 0 6px 14px; margin-left: -1px;
  border-left: 2px solid var(--line);
  font-size: 14px; line-height: 1.4; color: var(--muted); text-decoration: none;
}
.post__toc a:hover { color: var(--ink); }
.post__toc a.is-active { color: var(--coral); border-left-color: var(--coral); font-weight: 600; }

.post__main { min-width: 0; }
.post__answer {
  border: 1px solid var(--line); border-radius: 14px; background: #fff;
  box-shadow: 0 12px 30px -18px rgba(0,0,0,0.18);
  padding: 22px 24px; margin-bottom: 40px;
}
.post__answer-label { margin: 0 0 8px; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.post__answer p { margin: 0; font-size: 18px; line-height: 1.65; color: var(--ink); }

.post__section { scroll-margin-top: 90px; margin-bottom: 40px; }
.post__section h2 { margin: 0 0 16px; font-size: 26px; line-height: 1.25; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.post__blocks { display: flex; flex-direction: column; gap: 18px; }
.post__blocks p { margin: 0; font-size: 17.5px; line-height: 1.75; color: #3d424c; }
.post__blocks ul { margin: 0; padding-left: 24px; list-style: disc; font-size: 17.5px; line-height: 1.7; color: #3d424c; }
.post__blocks ol { margin: 0; padding-left: 24px; list-style: decimal; font-size: 17.5px; line-height: 1.7; color: #3d424c; }
.post__blocks li { margin-bottom: 9px; padding-left: 4px; }
.post__blocks li:last-child { margin-bottom: 0; }
.post__blocks li::marker { color: var(--coral); font-weight: 700; }
.post a.article__link, .post a.post__link { font-weight: 500; color: var(--coral); text-decoration: underline; text-decoration-color: rgba(255,86,80,0.45); text-underline-offset: 2px; }
.post a.article__link:hover, .post a.post__link:hover { text-decoration-color: var(--coral); }
.post strong { font-weight: 700; color: var(--ink); }
.post__callout { border: 1px solid #ffd9d9; background: #fff5f5; border-radius: 14px; padding: 16px 18px; }
.post__callout-title { margin: 0 0 4px; font-weight: 700; color: var(--coral); }
.post__callout p { margin: 0; font-size: 16.5px; line-height: 1.65; color: var(--muted); }
.post__fig { margin: 6px 0; display: flex; flex-direction: column; gap: 8px; }
.post__fig img { display: block; width: 100%; height: auto; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.post__cap { font-size: 13px; color: var(--muted); text-align: center; }

.post__tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 36px 0 8px; }
.post__tag { font-size: 13px; color: var(--muted); background: var(--soft); border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; }

.post__authorcard { margin-top: 28px; border: 1px solid var(--line); border-radius: 16px; background: var(--soft); padding: 22px 24px; display: flex; gap: 16px; }
.post__authorcard .post__avatar { width: 52px; height: 52px; }
.post__authorcard-name { font-weight: 700; color: var(--ink); }
.post__authorcard-name span { color: var(--coral); }
.post__authorcard-role { font-size: 13px; color: var(--muted); margin: 2px 0 8px; }
.post__authorcard-bio { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }

.post__sources { margin-top: 36px; }
.post__sources-title { font-size: 18px; font-weight: 800; color: var(--ink); margin: 0 0 12px; }
.post__sources ol { margin: 0; padding-left: 22px; list-style: decimal; }
.post__sources li { margin-bottom: 8px; }
.post__sources li::marker { color: var(--coral); }
.post__sources a { color: var(--coral); text-decoration: underline; text-underline-offset: 2px; word-break: break-word; }

.post__faqwrap { margin-top: 44px; }
.post__faqwrap > h2 { font-size: 26px; font-weight: 800; color: var(--ink); margin: 0 0 18px; }

/* right rail */
.post__side { display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 1024px) { .post__side { position: sticky; top: 90px; } }
.post__news { border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.post__news h3 { margin: 0 0 6px; font-size: 19px; font-weight: 800; color: var(--ink); }
.post__news p { margin: 0 0 14px; font-size: 14px; line-height: 1.5; color: var(--muted); }
.post__news input { width: 100%; height: 44px; border: 1px solid var(--line); border-radius: 10px; padding: 0 14px; font-size: 14px; margin-bottom: 10px; outline: none; }
.post__news input:focus { border-color: var(--coral); }
.post__news button { width: 100%; height: 46px; border: 0; border-radius: 10px; background: #17181c; color: #fff; font-weight: 700; font-size: 15px; cursor: pointer; }
.post__news button:hover { background: #000; }
.post__news .post__news-ok { font-size: 14px; color: #1a9d55; font-weight: 600; margin: 0; }
.post__share-title { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
.post__share { display: flex; flex-wrap: wrap; gap: 10px; }
.post__share a, .post__share button {
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink); background: #fff; cursor: pointer;
  text-decoration: none; padding: 0;
}
.post__share a:hover, .post__share button:hover { background: var(--soft); color: var(--coral); }

/* related cards */
.post__related { border-top: 1px solid var(--line); margin-top: 48px; }
.post__related-inner { margin: 0 auto; max-width: 1280px; padding: 48px 24px 8px; }
.post__related-h { font-size: 30px; font-weight: 800; color: var(--ink); margin: 0 0 6px; }
.post__related-sub { font-size: 15px; color: var(--muted); margin: 0 0 26px; }
.post__cards { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .post__cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .post__cards { grid-template-columns: repeat(4, 1fr); } }
.post__card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; text-decoration: none; transition: box-shadow .16s ease; }
.post__card:hover { box-shadow: 0 16px 40px -14px rgba(0,0,0,0.16); }
.post__card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-bottom: 1px solid var(--line); background: var(--soft); }
.post__card-body { padding: 14px 16px 18px; }
.post__card-cat { display: inline-block; font-size: 11px; font-weight: 700; color: var(--coral); background: #ffecec; border-radius: 999px; padding: 3px 9px; margin-bottom: 8px; }
.post__card-title { font-size: 15.5px; font-weight: 700; line-height: 1.35; color: var(--ink); }

/* ---- Blog category filter chips ---- */
.cat-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 10px auto 0; max-width: 1000px; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px; font-size: 14px; font-weight: 600;
  color: #3d424c; background: #fff; border: 1px solid #e9ebef; text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.cat-chip:hover { border-color: #ff5650; color: #ff5650; }
.cat-chip.is-active { background: #ff5650; border-color: #ff5650; color: #fff; }
.cat-chip__count { font-size: 12px; opacity: .7; }

/* ---- Comparison ("SeePins vs X") pages ---- */
.cmp { background: #fff; }
.cmp__wrap { max-width: 860px; margin: 0 auto; padding: 40px 20px 80px; color: #2f3033; }
.cmp__crumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: #8c919e; margin-bottom: 20px; }
.cmp__crumb a { color: #8c919e; text-decoration: none; }
.cmp__crumb a:hover { color: #ff5650; }
.cmp__crumb-current { color: #2f3033; }
.cmp__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #ff5650; margin: 0 0 8px; }
.cmp__title { font-size: 30px; line-height: 1.2; font-weight: 800; margin: 0 0 20px; }
@media (min-width: 768px) { .cmp__title { font-size: 40px; } }
.cmp__answer { background: #fff5f5; border: 1px solid #ffd9d7; border-left: 4px solid #ff5650; border-radius: 12px; padding: 16px 18px; margin: 0 0 24px; }
.cmp__answer-label { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: #ff5650; margin-bottom: 6px; }
.cmp__answer p { margin: 0; font-size: 16px; line-height: 1.6; color: #2f3033; }
.cmp__intro { font-size: 16px; line-height: 1.7; color: #4b5563; margin: 0 0 8px; }
.cmp__h2 { font-size: 24px; font-weight: 800; margin: 40px 0 16px; }
.cmp__table-wrap { overflow-x: auto; border: 1px solid #e8ebf3; border-radius: 14px; }
.cmp__table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 460px; }
.cmp__table th[scope="col"] { text-align: left; padding: 14px 16px; background: #f9fafb; font-weight: 800; border-bottom: 1px solid #e8ebf3; }
.cmp__table th[scope="row"] { text-align: left; padding: 13px 16px; font-weight: 600; color: #2f3033; width: 34%; }
.cmp__table td { padding: 13px 16px; color: #4b5563; vertical-align: top; }
.cmp__table tbody tr { border-bottom: 1px solid #eef0f5; }
.cmp__table tbody tr:last-child { border-bottom: none; }
.cmp__col-seepins { color: #2f3033 !important; font-weight: 600; }
th.cmp__col-seepins { background: #fff5f5 !important; color: #ff5650 !important; }
td.cmp__col-seepins { background: #fff9f9; }
.cmp__win { position: relative; }
.cmp__win::before { content: "✓ "; color: #16a34a; font-weight: 800; }
.cmp__note { font-size: 12.5px; line-height: 1.6; color: #9aa0ab; margin: 12px 0 0; }
.cmp__list { margin: 0; padding-left: 22px; }
.cmp__list li { list-style: disc; margin-bottom: 10px; font-size: 16px; line-height: 1.6; }
.cmp__split { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
@media (min-width: 640px) { .cmp__split { grid-template-columns: 1fr 1fr; } }
.cmp__split-card { border: 1px solid #e8ebf3; border-radius: 14px; padding: 18px; }
.cmp__split-card--win { border-color: #ffd9d7; background: #fff9f9; }
.cmp__split-card h3 { font-size: 16px; font-weight: 800; margin: 0 0 8px; }
.cmp__split-card p { margin: 0; font-size: 15px; line-height: 1.6; color: #4b5563; }
.cmp__verdict { font-size: 17px; line-height: 1.7; color: #2f3033; margin: 0; }
.cmp__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin: 28px 0 8px; }
.cmp__cta-btn { display: inline-flex; align-items: center; background: #ff5650; color: #fff; font-weight: 800; font-size: 16px; padding: 13px 24px; border-radius: 9999px; text-decoration: none; }
.cmp__cta-btn:hover { opacity: .92; }
.cmp__cta-note { font-size: 13px; color: #8c919e; }
.cmp__faqs { display: flex; flex-direction: column; gap: 10px; }
.cmp__faq { border: 1px solid #e8ebf3; border-radius: 12px; padding: 4px 16px; }
.cmp__faq summary { cursor: pointer; padding: 14px 0; font-weight: 700; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.cmp__faq summary::-webkit-details-marker { display: none; }
.cmp__faq summary::after { content: "+"; color: #ff5650; font-size: 22px; font-weight: 400; line-height: 1; }
.cmp__faq[open] summary::after { content: "−"; }
.cmp__faq p { margin: 0 0 14px; font-size: 15px; line-height: 1.65; color: #4b5563; }
.cmp__link { color: #ff5650; text-decoration: underline; }
.cmp__related { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .cmp__related { grid-template-columns: 1fr 1fr; } }
.cmp__related-card { display: flex; justify-content: space-between; align-items: center; border: 1px solid #e8ebf3; border-radius: 12px; padding: 16px 18px; font-weight: 700; color: #2f3033; text-decoration: none; }
.cmp__related-card:hover { border-color: #ff5650; color: #ff5650; }

.cmp__index-card { display: flex; flex-direction: column; gap: 8px; border: 1px solid #e8ebf3; border-radius: 14px; padding: 20px; text-decoration: none; transition: border-color .15s, box-shadow .15s; }
.cmp__index-card:hover { border-color: #ff5650; box-shadow: 0 12px 30px -14px rgba(0,0,0,.16); }
.cmp__index-card-title { font-size: 18px; font-weight: 800; color: #2f3033; }
.cmp__index-card-desc { font-size: 14px; line-height: 1.55; color: #5b616e; }
.cmp__index-card-cta { font-size: 14px; font-weight: 700; color: #ff5650; margin-top: 2px; }
