/* Article Conversion Blocks - Ablasyon */
.gcb-article {
  --gcb-ink: #102038;
  --gcb-copy: #40516a;
  --gcb-muted: #5c6a80;
  --gcb-blue: #163e91;
  --gcb-accent: #0f7d8e;
  --gcb-accent-dark: #0c6070;
  --gcb-tint: #edf7f9;
  --gcb-tint-strong: #cfe8ee;
  --gcb-line: #dbeaee;
  --gcb-surface: #ffffff;
  --gcb-radius: 22px;
  --gcb-shadow: 0 15px 42px rgba(19, 48, 74, .08);
  box-sizing: border-box;
  color: var(--gcb-copy);
  font-family: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  margin: clamp(28px, 5vw, 46px) 0;
  max-width: 880px;
}

.gcb-article *,
.gcb-article *::before,
.gcb-article *::after { box-sizing: border-box; }

/* Article templates style .article-body p/h3/a at 0,1,1 specificity. Every rule below
   that targets a heading, paragraph or link must outrank that or the block is
   restyled mid-article - the phone line in particular turned dark-on-dark. */
aside.gcb-article a { text-decoration: none; }
aside.gcb-article h3,
aside.gcb-article p { font-family: inherit; margin: 0; }
.gcb-article .gcb-article__eyebrow {
  align-items: center;
  color: var(--gcb-accent-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: .08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.gcb-article .gcb-article__eyebrow::before {
  background: var(--gcb-accent);
  border-radius: 20px;
  content: "";
  height: 7px;
  width: 7px;
}
.gcb-article .gcb-article__title {
  color: var(--gcb-ink);
  font-size: clamp(21px, 3.1vw, 28px);
  font-family: inherit;
  font-weight: 720;
  letter-spacing: -.035em;
  line-height: 1.18;
  margin-bottom: 11px !important;
}
.gcb-article .gcb-article__copy {
  color: var(--gcb-copy);
  font-size: 15.5px;
  line-height: 1.7;
}
.gcb-article .gcb-article__button {
  align-items: center;
  background: var(--gcb-accent);
  border-radius: 999px;
  color: #fff !important;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  transition: background .18s ease, transform .18s ease;
}
.gcb-article .gcb-article__button:hover {
  background: var(--gcb-accent-dark);
  transform: translateY(-1px);
}
.gcb-article .gcb-article__button:focus-visible {
  outline: 3px solid var(--gcb-accent-dark);
  outline-offset: 2px;
}
.gcb-article .gcb-article__button--ghost {
  background: #fff;
  border: 1px solid var(--gcb-tint-strong);
  color: var(--gcb-accent-dark) !important;
}
.gcb-article .gcb-article__button--ghost:hover { background: var(--gcb-tint); }
.gcb-article__arrow {
  font-size: 17px;
  line-height: 1;
}

.gcb-symptom {
  align-items: center;
  background:
    radial-gradient(circle at 95% 10%, rgba(15, 125, 142, .16), transparent 31%),
    linear-gradient(135deg, var(--gcb-tint) 0%, #fff 74%);
  border: 1px solid var(--gcb-line);
  border-radius: var(--gcb-radius);
  box-shadow: var(--gcb-shadow);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(22px, 4vw, 32px);
}
.gcb-symptom__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
}
.gcb-symptom__chip {
  background: var(--gcb-tint);
  border: 1px solid var(--gcb-tint-strong);
  border-radius: 999px;
  color: var(--gcb-accent-dark);
  font-size: 12.5px;
  font-weight: 650;
  padding: 7px 12px;
}
.gcb-symptom__action {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.gcb-article .gcb-symptom__note {
  color: var(--gcb-muted);
  font-size: 12.5px;
  max-width: 190px;
  text-align: right;
}

.gcb-eligibility {
  background: #fff;
  border: 1px solid #e4ebf1;
  border-radius: var(--gcb-radius);
  box-shadow: var(--gcb-shadow);
  overflow: hidden;
}
.gcb-eligibility__main {
  display: grid;
  gap: clamp(22px, 4vw, 38px);
  grid-template-columns: minmax(240px, .9fr) minmax(270px, 1fr);
  padding: clamp(22px, 4vw, 34px);
}
.gcb-eligibility__points {
  display: grid;
  gap: 10px;
}
.gcb-eligibility__point {
  align-items: center;
  background: #f7fafc;
  border-radius: 13px;
  color: var(--gcb-ink);
  display: flex;
  font-size: 14px;
  font-weight: 620;
  gap: 11px;
  padding: 12px 13px;
}
.gcb-eligibility__point span {
  align-items: center;
  background: var(--gcb-tint);
  border-radius: 50%;
  color: var(--gcb-accent-dark);
  display: inline-flex;
  flex: 0 0 27px;
  font-size: 15px;
  height: 27px;
  justify-content: center;
}
.gcb-eligibility__bar {
  align-items: center;
  background: var(--gcb-tint);
  border-top: 1px solid var(--gcb-line);
  color: var(--gcb-copy);
  display: flex;
  font-size: 13px;
  gap: 11px;
  line-height: 1.55;
  padding: 14px clamp(22px, 4vw, 34px);
}
.gcb-article .gcb-eligibility__bar p { font-size: 13px; line-height: 1.55; margin: 0; }
.gcb-article .gcb-eligibility__bar strong { color: var(--gcb-ink); }
.gcb-eligibility__bar .gcb-article__button { flex: none; margin-left: auto; }

.gcb-end {
  background:
    radial-gradient(circle at 100% 0%, rgba(96, 199, 214, .22), transparent 34%),
    linear-gradient(123deg, #0d264c 0%, #113e65 60%, #0f5566 100%);
  border-radius: clamp(22px, 4vw, 30px);
  box-shadow: 0 24px 52px rgba(9, 31, 54, .18);
  color: #e1e9f4;
  display: grid;
  gap: clamp(20px, 4vw, 34px);
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(25px, 5vw, 42px);
}
.gcb-article.gcb-end .gcb-article__eyebrow { color: #7fdcea; }
.gcb-article.gcb-end .gcb-article__eyebrow::before { background: #7fdcea; }
.gcb-article.gcb-end .gcb-article__title { color: #fff; max-width: 500px; }
.gcb-article.gcb-end .gcb-article__copy { color: #d1dbea; max-width: 540px; }
.gcb-article.gcb-end .gcb-article__button {
  background: #8fe3ef;
  color: #0c2136 !important;
}
.gcb-article.gcb-end .gcb-article__button:hover { background: #ffffff; }
.gcb-article.gcb-end .gcb-article__button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}
.gcb-article.gcb-end .gcb-article__button--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .45);
  color: #ffffff !important;
}
.gcb-article.gcb-end .gcb-article__button--ghost:hover { background: rgba(255, 255, 255, .12); }
.gcb-end__trust {
  color: #c6d6e8;
  display: flex;
  flex-wrap: wrap;
  font-size: 12.5px;
  gap: 14px;
  margin-top: 18px;
}
.gcb-end__trust span::before {
  color: #7fdcea;
  content: "\2713";
  font-weight: 700;
  margin-right: 6px;
}
.gcb-end__actions {
  align-content: center;
  display: grid;
  gap: 10px;
  min-width: 220px;
}
.gcb-article .gcb-end__phone {
  color: #dae4f0;
  font-size: 13px;
  margin-top: 3px;
  text-align: center;
}

@media (max-width: 720px) {
  .gcb-symptom,
  .gcb-eligibility__main,
  .gcb-end {
    grid-template-columns: 1fr;
  }
  .gcb-symptom__action { align-items: stretch; }
  .gcb-symptom__note { text-align: left; max-width: none; }
  .gcb-eligibility__bar {
    align-items: flex-start;
    flex-direction: column;
  }
  .gcb-eligibility__bar .gcb-article__button { margin-left: 0; width: 100%; }
  .gcb-end__actions { min-width: 0; }
  .gcb-article .gcb-article__button { width: 100%; }
}
