/* Cuba Health Assist — editorial blog system */
:root {
  --blog-ink: #12343b;
  --blog-muted: #5d7479;
  --blog-line: #d8e8e7;
  --blog-soft: #f3f9f8;
  --blog-teal: #0e7c7b;
  --blog-teal-dark: #075f60;
  --blog-sand: #f7f2e9;
  --blog-white: #ffffff;
  --blog-shadow: 0 22px 70px rgba(15, 74, 78, .10);
}

.cha-blog-page {
  background: var(--blog-white);
  color: var(--blog-ink);
}

.cha-blog-page .cha-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.cha-blog-page .cha-detail-hero,
.cha-blog-page .cha-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at 88% 12%, rgba(42, 168, 166, .18), transparent 34%),
    linear-gradient(145deg, #f7fbfb 0%, #eff8f7 62%, #f8f3e9 100%);
  border-bottom: 1px solid var(--blog-line);
}

.cha-blog-page .cha-detail-hero::before,
.cha-blog-page .cha-hero::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -130px;
  top: -100px;
  border: 1px solid rgba(14, 124, 123, .16);
  border-radius: 50%;
}

.cha-blog-page .cha-detail-hero-grid,
.cha-blog-page .cha-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 54px;
  align-items: center;
}

.cha-blog-page .cha-breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--blog-teal-dark);
  font-size: .86rem;
  font-weight: 650;
  text-decoration: none;
}

.cha-blog-page .cha-eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--blog-teal);
  font-size: .74rem;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cha-blog-page h1 {
  max-width: 820px;
  margin: 0;
  color: var(--blog-ink);
  font-size: clamp(2.1rem, 3.35vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.cha-blog-page .cha-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #456368;
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.cha-blog-page .cha-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px;
}

.cha-blog-page .cha-tag {
  padding: 8px 12px;
  color: #2c5e62;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(14, 124, 123, .15);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 650;
}

.cha-blog-page .cha-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cha-blog-page .cha-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 12px;
  font-weight: 650;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.cha-blog-page .cha-btn:hover { transform: translateY(-2px); }
.cha-blog-page .cha-btn-primary { color: #fff; background: var(--blog-teal); box-shadow: 0 12px 28px rgba(14, 124, 123, .22); }
.cha-blog-page .cha-btn-primary:hover { background: var(--blog-teal-dark); }
.cha-blog-page .cha-btn-secondary { color: var(--blog-teal-dark); background: #fff; border: 1px solid rgba(14, 124, 123, .24); }

.cha-blog-page .cha-disclaimer {
  margin-top: 25px;
  padding: 15px 17px;
  color: #526b70;
  background: rgba(255, 255, 255, .68);
  border-left: 3px solid var(--blog-teal);
  border-radius: 0 12px 12px 0;
  font-size: .83rem;
  line-height: 1.65;
}

.cha-blog-page .cha-detail-panel,
.cha-blog-page .cha-photo-card {
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(14, 124, 123, .14);
  border-radius: 26px;
  box-shadow: var(--blog-shadow);
}

.cha-blog-page .cha-detail-photo,
.cha-blog-page .cha-photo-card { margin: 0; }
.cha-blog-page .cha-detail-photo img,
.cha-blog-page .cha-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.cha-blog-page .cha-detail-panel > div,
.cha-blog-page .cha-caption {
  display: block;
  padding: 20px 22px 22px;
}

.cha-blog-article .cha-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 58px;
  align-items: start;
  padding-top: 68px;
  padding-bottom: 74px;
}

.cha-blog-article .cha-detail-main { max-width: 780px; }

.cha-blog-article .cha-detail-section,
.cha-blog-article .cha-section {
  padding: 0 0 58px;
  margin: 0 0 58px;
  border-bottom: 1px solid var(--blog-line);
}

.cha-blog-article .cha-detail-section:last-child { border-bottom: 0; }
.cha-blog-article h2,
.cha-blog-index h2 {
  margin: 0 0 18px;
  color: var(--blog-ink);
  font-size: clamp(1.7rem, 2.3vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.cha-blog-article h3 {
  margin: 34px 0 10px;
  color: var(--blog-ink);
  font-size: 1.16rem;
  line-height: 1.35;
}

.cha-blog-article p,
.cha-blog-article li {
  color: #425e63;
  font-size: 1rem;
  line-height: 1.82;
}

.cha-blog-article .cha-detail-intro { color: #36565b; font-size: 1.08rem; }

.cha-blog-article .cha-detail-list,
.cha-blog-article .cha-card-grid,
.cha-blog-article .cha-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.cha-blog-article .cha-detail-item,
.cha-blog-article .cha-card,
.cha-blog-article .cha-info-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--blog-line);
  border-radius: 16px;
}

.cha-blog-article .cha-detail-item p,
.cha-blog-article .cha-card p,
.cha-blog-article .cha-info-card p { margin-bottom: 0; font-size: .93rem; line-height: 1.72; }

.cha-blog-article .cha-detail-number,
.cha-blog-article .cha-card-number {
  display: inline-flex;
  margin-bottom: 13px;
  color: var(--blog-teal);
  font-size: .74rem;
  font-weight: 650;
  letter-spacing: .12em;
}

.cha-blog-article .cha-detail-aside {
  position: sticky;
  top: 110px;
  padding: 24px;
  background: var(--blog-soft);
  border: 1px solid var(--blog-line);
  border-radius: 18px;
}

.cha-blog-article .cha-detail-aside h2,
.cha-blog-article .cha-detail-aside h3 { font-size: 1.08rem; }
.cha-blog-article .cha-detail-aside p,
.cha-blog-article .cha-detail-aside li { font-size: .88rem; line-height: 1.65; }

.cha-blog-evidence,
.cha-blog-sources,
.cha-blog-related {
  padding: 72px 0;
  border-top: 1px solid var(--blog-line);
}

/* Tedavi sayfası ritmi: beyaz / yumuşak / beyaz */
.cha-blog-evidence { background: #fff; }
.cha-blog-sources { background: var(--blog-soft); }

.cha-blog-evidence .cha-blog-evidence-box {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 34px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--blog-line);
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(16, 70, 73, .07);
}

.cha-blog-evidence p { margin: 0; color: #466469; line-height: 1.78; }

.cha-blog-source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.cha-blog-source-list a {
  display: block;
  padding: 17px 18px;
  color: var(--blog-teal-dark);
  background: #fff;
  border: 1px solid var(--blog-line);
  border-radius: 13px;
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.45;
  text-decoration: none;
}

.cha-blog-source-list a:hover { border-color: rgba(14, 124, 123, .52); box-shadow: 0 10px 28px rgba(14, 124, 123, .08); }

.cha-blog-related { background: #fff; }
.cha-blog-related-grid,
.cha-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.cha-blog-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--blog-line);
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(15, 74, 78, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cha-blog-card:hover { transform: translateY(-4px); box-shadow: 0 22px 54px rgba(15, 74, 78, .12); }
.cha-blog-card img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.cha-blog-card-body { padding: 22px; }
.cha-blog-card .cha-eyebrow { margin-bottom: 9px; }
.cha-blog-card h3 { margin: 0; color: var(--blog-ink); font-size: 1.23rem; line-height: 1.28; letter-spacing: -.02em; }
.cha-blog-card p { margin: 12px 0 0; color: var(--blog-muted); font-size: .91rem; line-height: 1.65; }
.cha-blog-card a { color: inherit; text-decoration: none; }
.cha-blog-card-link { display: inline-flex; margin-top: 17px; color: var(--blog-teal-dark) !important; font-size: .87rem; font-weight: 650; }

.cha-blog-index .cha-section,
.cha-blog-index .cha-section-soft { padding: 72px 0; }
.cha-blog-index .cha-guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.cha-blog-index .cha-guide-card { overflow: hidden; background: #fff; border: 1px solid var(--blog-line); border-radius: 19px; box-shadow: 0 14px 40px rgba(15,74,78,.06); }
.cha-blog-index .cha-guide-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.cha-blog-index .cha-guide-card > div { padding: 22px; }
.cha-blog-index .cha-guide-card h3 { margin: 0; font-size: 1.22rem; line-height: 1.3; }
.cha-blog-index .cha-guide-card p { color: var(--blog-muted); font-size: .92rem; line-height: 1.65; }
.cha-blog-index .cha-guide-card a { color: inherit; text-decoration: none; }

.cha-blog-home {
  position: relative;
  padding: 82px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f4faf9 0%, #fff 100%);
  border-top: 1px solid var(--blog-line);
  border-bottom: 1px solid var(--blog-line);
}

.cha-blog-home-inner { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.cha-blog-home-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 30px; }
.cha-blog-home-head h2 { margin: 0; color: var(--blog-ink); font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.05; letter-spacing: -.045em; }
.cha-blog-home-head p { max-width: 650px; margin: 14px 0 0; color: var(--blog-muted); line-height: 1.72; }
.cha-blog-home-all { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 9px; color: var(--blog-teal-dark); font-weight: 650; text-decoration: none; }

/* Kapanış CTA'sı tedavi sayfalarındaki açık kart görünümünü kullanır
   (cha-condition-pages.css .cha-final / .cha-final-box) — koyu bant override'ı yok. */
.cha-blog-page .cha-blog-related > .cha-container > .cha-eyebrow,
.cha-blog-page .cha-blog-related > .cha-container > h2 { text-align: center; }

/* --- Tasarım sistemi tipografi hizalaması (2026-08-10) ---
   Inter statik olarak yüklendiği için 651+ her ağırlık aynı Bold dosyaya düşer;
   sistem vurgu ağırlığı 650 (SemiBold), başlık ağırlığı 600'dür. Bu bölüm,
   cha-condition-pages.css içinde .cha-condition-page'e verilen inceltmelerin
   blog sayfalarında da geçerli olmasını sağlar. */
.cha-blog-page .cha-head h2,
.cha-blog-page .cha-copy h2,
.cha-blog-page .cha-final h2 { font-weight: 600; letter-spacing: -.028em; }
.cha-blog-page .cha-hero h1,
.cha-blog-page .cha-detail-hero h1 { font-weight: 600; letter-spacing: -.038em; }
.cha-blog-page .cha-card h3,
.cha-blog-page .cha-list-item h3,
.cha-blog-page .cha-faq summary { font-weight: 600; }
.cha-blog-page .cha-btn,
.cha-blog-page .cha-tag,
.cha-blog-page .cha-num { font-weight: 650; }

/* Benzer yazılar: tedavi sayfasındaki "ilgili sayfalar" kart ölçüleri
   (.cha-related-grid / .cha-related-card) — 3 kart tek sırada, kompakt tipografi. */
.cha-blog-related .cha-blog-related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cha-blog-related .cha-blog-card {
  display: flex;
  min-height: 154px;
  flex-direction: column;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #FBFDFD 100%);
  box-shadow: 0 6px 18px rgba(15, 74, 78, .05);
}

.cha-blog-related .cha-blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.cha-blog-related .cha-blog-card .cha-eyebrow {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .08em;
}

.cha-blog-related .cha-blog-card h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.012em;
}

.cha-blog-related .cha-blog-card p {
  margin: 10px 0 0;
  font-size: 13.5px;
  line-height: 1.65;
}

.cha-blog-related .cha-blog-card-link {
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
  font-weight: 650;
}

@media (max-width: 900px) {
  .cha-blog-related .cha-blog-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .cha-blog-related .cha-blog-related-grid { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 980px) {
  .cha-blog-page .cha-detail-hero-grid,
  .cha-blog-page .cha-hero-grid,
  .cha-blog-article .cha-detail-body,
  .cha-blog-evidence .cha-blog-evidence-box { grid-template-columns: 1fr; }
  .cha-blog-page .cha-detail-panel,
  .cha-blog-page .cha-photo-card { max-width: 720px; }
  .cha-blog-article .cha-detail-aside { position: static; }
  .cha-blog-related-grid,
  .cha-blog-grid,
  .cha-blog-index .cha-guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .cha-blog-page .cha-container,
  .cha-blog-home-inner { width: min(100% - 28px, 1180px); }
  .cha-blog-page .cha-detail-hero,
  .cha-blog-page .cha-hero { padding: 48px 0 38px; }
  .cha-blog-page h1 { font-size: clamp(1.9rem, 8vw, 2.3rem); }
  .cha-blog-article h2,
  .cha-blog-index h2 { font-size: clamp(1.5rem, 6.2vw, 1.8rem); }
  .cha-blog-article .cha-detail-body { gap: 30px; padding-top: 46px; padding-bottom: 52px; }
  .cha-blog-article .cha-detail-list,
  .cha-blog-article .cha-card-grid,
  .cha-blog-article .cha-info-grid,
  .cha-blog-source-list,
  .cha-blog-related-grid,
  .cha-blog-grid,
  .cha-blog-index .cha-guide-grid { grid-template-columns: 1fr; }
  .cha-blog-evidence,
  .cha-blog-sources,
  .cha-blog-related,
  .cha-blog-home { padding: 54px 0; }
  .cha-blog-evidence .cha-blog-evidence-box { padding: 24px; }
  .cha-blog-home-head,
  .cha-blog-page .cha-detail-final .cha-container,
  .cha-blog-page .cha-final-box { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .cha-blog-card,
  .cha-blog-page .cha-btn { transition: none; }
}

/* Editorial in-article visual */
.cha-blog-inline-media { margin: 0; padding: 10px 0 70px; background: #fff; }
.cha-blog-inline-frame { width: min(1080px, calc(100% - 40px)); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); overflow: hidden; background: var(--blog-ink); border-radius: 24px; box-shadow: var(--blog-shadow); }
.cha-blog-inline-frame img { display: block; width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.cha-blog-inline-frame figcaption { display: flex; flex-direction: column; justify-content: center; padding: 34px; }
.cha-blog-inline-frame figcaption .cha-eyebrow { color: #78d4cf; }
.cha-blog-inline-frame figcaption strong { color: #fff; font-size: 1.42rem; line-height: 1.28; }
.cha-blog-inline-frame figcaption p { margin: 16px 0 0; color: rgba(255,255,255,.72); font-size: .94rem; line-height: 1.7; }
@media (max-width: 980px) { .cha-blog-inline-frame { grid-template-columns: 1fr; } }
@media (max-width: 680px) { .cha-blog-inline-media { padding: 6px 0 48px; } .cha-blog-inline-frame { width: min(100% - 28px, 1180px); } .cha-blog-inline-frame img { min-height: 250px; } .cha-blog-inline-frame figcaption { padding: 25px; } }

/* Top-level editorial rhythm for the retained public-site content modules */
.cha-blog-article > .cha-section { margin: 0; padding: 74px 0; border-bottom: 1px solid var(--blog-line); }
@media (max-width: 680px) { .cha-blog-article > .cha-section { padding: 52px 0; } }

/* Homepage editorial system v2 — aligned with the public-site story section */
.cha-editorial-home {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f1fafa 100%);
  border-top: 1px solid rgba(14, 124, 123, .07);
  border-bottom: 1px solid rgba(14, 124, 123, .08);
}
.cha-editorial-home-inner { position: relative; z-index: 2; width: min(1280px, calc(100% - 48px)); margin-inline: auto; }
.cha-editorial-orb { position: absolute; z-index: 0; border-radius: 999px; pointer-events: none; }
.cha-editorial-orb-one { width: 440px; height: 440px; top: -260px; right: -150px; border: 1px solid rgba(14, 124, 123, .09); box-shadow: inset 0 0 0 76px rgba(42, 168, 166, .018); }
.cha-editorial-orb-two { width: 300px; height: 300px; left: -190px; bottom: -130px; background: radial-gradient(circle, rgba(42, 168, 166, .10), rgba(42, 168, 166, 0) 68%); }
.cha-editorial-head { max-width: 1024px; margin-inline: auto; text-align: center; }
.cha-editorial-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; color: #087082; background: rgba(220, 248, 247, .72); border: 1px solid rgba(14, 124, 123, .20); border-radius: 999px; font-size:12px; font-weight: 650; line-height: 1.6; letter-spacing: .12em; text-transform: uppercase; }
.cha-editorial-head h2 { margin: 20px 0 0; color: #102a32; font-size: clamp(2rem, 2.6vw, 2.5rem); font-weight: 600; line-height: 1.12; letter-spacing: -.025em; }
.cha-editorial-head h2 em { color: #087889; font-style: italic; font-weight: 600; }
.cha-editorial-head > p { max-width: 720px; margin: 20px auto 0; color: #526c72; font-size: 1.04rem; line-height: 1.72; }
.cha-editorial-layout { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr); gap: 20px; align-items: stretch; margin-top: 54px; }
.cha-editorial-feature,
.cha-editorial-compact { background: #fff; border: 1px solid rgba(14, 124, 123, .15); box-shadow: 0 4px 16px rgba(15, 74, 78, .06), 0 1px 2px rgba(15, 74, 78, .04); transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease; }
.cha-editorial-feature:hover,
.cha-editorial-compact:hover { transform: translateY(-3px); border-color: rgba(14, 124, 123, .30); box-shadow: 0 26px 62px -28px rgba(14, 124, 123, .34); }
.cha-editorial-feature { display: grid; grid-template-columns: minmax(260px, .92fr) minmax(0, 1.08fr); gap: 10px; min-height: 510px; padding: 18px; border-radius: 26px; }
.cha-editorial-feature-media,
.cha-editorial-compact-media { position: relative; display: block; overflow: hidden; background: #dceceb; }
.cha-editorial-feature-media { min-height: 472px; border-radius: 19px; }
.cha-editorial-feature-media img,
.cha-editorial-compact-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.cha-editorial-feature:hover img,
.cha-editorial-compact:hover img { transform: scale(1.035); }
.cha-editorial-index { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 30px; color: #075f60; background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.78); border-radius: 999px; box-shadow: 0 6px 18px rgba(16,52,59,.12); backdrop-filter: blur(10px); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.cha-editorial-feature-copy { display: flex; min-width: 0; flex-direction: column; padding: 24px 22px 18px 26px; }
.cha-editorial-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: #6b8085; font-size: .73rem; font-weight: 650; }
.cha-editorial-category { display: inline-flex; align-items: center; padding: 6px 10px; color: #06727a; background: #e8f8f7; border-radius: 999px; }
.cha-editorial-kicker { margin-top: 30px; color: #087889; font-size: .72rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.cha-editorial-feature h3 { margin: 12px 0 0; color: #102a32; font-size: clamp(1.55rem, 1.85vw, 1.9rem); font-weight: 650; line-height: 1.18; letter-spacing: -.03em; }
.cha-editorial-feature h3 a,
.cha-editorial-compact h3 a { color: inherit; text-decoration: none; }
.cha-editorial-feature-copy > p { margin: 18px 0 0; color: #536e74; font-size: .96rem; line-height: 1.72; }
.cha-editorial-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 22px; border-top: 1px solid #dbe8e8; color: #7a8d91; font-size: .7rem; }
.cha-editorial-read { display: inline-flex; align-items: center; gap: 9px; color: #075f60; font-size: .82rem; font-weight: 650; text-decoration: none; }
.cha-editorial-read span { display: inline-flex; align-items: center; justify-content: center; width: 25px; height: 25px; color: #fff; background: #087889; border-radius: 50%; transition: transform .25s ease, background .25s ease; }
.cha-editorial-read:hover span { transform: translate(2px, -2px); background: #075f60; }
.cha-editorial-side { display: grid; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 18px; }
.cha-editorial-compact { display: grid; grid-template-columns: minmax(150px, .76fr) minmax(0, 1.24fr); gap: 18px; min-height: 246px; padding: 14px; border-radius: 24px; }
.cha-editorial-compact-media { min-height: 216px; border-radius: 17px; }
.cha-editorial-compact-copy { display: flex; min-width: 0; flex-direction: column; padding: 9px 12px 8px 0; }
.cha-editorial-compact h3 { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; margin: 15px 0 0; color: #102a32; font-size: 1.12rem; font-weight: 650; line-height: 1.27; letter-spacing: -.02em; }
.cha-editorial-compact-copy > p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; margin: 11px 0 15px; color: #61777c; font-size: .78rem; line-height: 1.58; }
.cha-editorial-compact .cha-editorial-read { margin-top: auto; }
.cha-editorial-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 30px 8px 0; color: #6a8085; font-size: .79rem; }
.cha-editorial-footer > a { display: inline-flex; align-items: center; gap: 12px; color: #075f60; font-size: .86rem; font-weight: 650; text-decoration: none; }
.cha-editorial-arrow { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; color: #075f60; background: #fff; border: 1px solid rgba(14,124,123,.22); border-radius: 50%; transition: color .25s ease, background .25s ease, transform .25s ease; }
.cha-editorial-footer > a:hover .cha-editorial-arrow { color: #fff; background: #087889; transform: translateX(3px); }
.cha-editorial-home a:focus-visible { outline: 3px solid rgba(42,168,166,.38); outline-offset: 3px; }
@media (max-width: 1100px) {
  .cha-editorial-layout { grid-template-columns: 1fr; }
  .cha-editorial-side { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: none; }
  .cha-editorial-compact { grid-template-columns: 160px minmax(0,1fr); }
}
@media (max-width: 760px) {
  .cha-editorial-home { padding: 80px 0; }
  .cha-editorial-home-inner { width: min(100% - 30px, 1280px); }
  .cha-editorial-head h2 { font-size: clamp(1.75rem, 7.2vw, 2rem); }
  .cha-editorial-head > p { font-size: .96rem; }
  .cha-editorial-layout { margin-top: 38px; }
  .cha-editorial-feature { grid-template-columns: 1fr; min-height: 0; padding: 14px; }
  .cha-editorial-feature-media { min-height: 0; aspect-ratio: 16 / 10; }
  .cha-editorial-feature-copy { padding: 20px 12px 12px; }
  .cha-editorial-kicker { margin-top: 22px; }
  .cha-editorial-feature h3 { font-size: 1.5rem; }
  .cha-editorial-card-foot { align-items: flex-start; flex-direction: column; }
  .cha-editorial-side { grid-template-columns: 1fr; }
  .cha-editorial-footer { align-items: flex-start; flex-direction: column; margin-top: 26px; }
}
@media (max-width: 520px) {
  .cha-editorial-pill { padding-inline: 13px; font-size:11px; }
  .cha-editorial-compact { grid-template-columns: 1fr; }
  .cha-editorial-compact-media { min-height: 0; aspect-ratio: 16 / 9; }
  .cha-editorial-compact-copy { padding: 8px 7px 9px; }
  .cha-editorial-compact h3 { font-size: 1.17rem; }
}
@media (prefers-reduced-motion: reduce) {
  .cha-editorial-feature,
  .cha-editorial-compact,
  .cha-editorial-feature-media img,
  .cha-editorial-compact-media img,
  .cha-editorial-arrow { transition: none; }
}

/* Compact mobile editorial cards keep the information hierarchy without excessive page length */
@media (max-width: 520px) {
  .cha-editorial-compact { grid-template-columns: minmax(108px, .54fr) minmax(0, 1.46fr); gap: 13px; min-height: 218px; padding: 11px; }
  .cha-editorial-compact-media { min-height: 196px; aspect-ratio: auto; }
  .cha-editorial-compact-copy { padding: 5px 4px 5px 0; }
  .cha-editorial-compact .cha-editorial-meta > span:not(.cha-editorial-category) { display: none; }
  .cha-editorial-compact h3 { margin-top: 12px; font-size: 1rem; line-height: 1.24; }
  .cha-editorial-compact-copy > p { display: none; }
  .cha-editorial-compact .cha-editorial-read { font-size: .76rem; }
  .cha-editorial-compact .cha-editorial-read span { width: 23px; height: 23px; }
}
/* Blog editorial system v3 — responsive media and natural long-form reading */
.cha-editorial-feature-media img,
.cha-editorial-compact-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cha-editorial-card-foot { justify-content: flex-start; }
.cha-editorial-footer { justify-content: flex-end; }
.cha-editorial-footer > a { margin-left: auto; }

.cha-blog-article .cha-detail-intro-grid {
  grid-template-columns: 1fr;
}

.cha-blog-article .cha-detail-intro-grid .cha-copy {
  width: 100%;
  max-width: none;
}

.cha-blog-article .cha-detail-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cha-blog-article-tr .cha-detail-hero {
  padding-block: 88px 78px;
}

.cha-blog-article-tr .cha-detail-hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr);
  gap: 64px;
}

.cha-blog-article-tr .cha-detail-copy {
  max-width: 720px;
}

.cha-blog-article-tr .cha-detail-copy h1 {
  margin: 0;
  color: var(--blog-ink);
  font-size: clamp(2.15rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.035;
  letter-spacing: -.043em;
}

.cha-blog-article-tr .cha-detail-copy .cha-lead {
  max-width: 680px;
  margin-top: 22px;
  color: #526c72;
  font-size: 1.04rem;
  line-height: 1.76;
}

.cha-blog-article-tr .cha-detail-panel {
  min-height: 520px;
}

.cha-blog-article-tr .cha-detail-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  aspect-ratio: auto;
  object-fit: cover;
}

.cha-article-section {
  padding: 92px 0;
  background: #fff;
  border-top: 1px solid rgba(14, 124, 123, .09);
}

.cha-article-section-soft {
  background: linear-gradient(180deg, #f4fafa 0%, #f8fcfc 100%);
}

.cha-article-opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  gap: 72px;
  align-items: start;
}

.cha-article-copy {
  max-width: 800px;
}

.cha-article-copy h2,
.cha-article-head h2 {
  margin: 14px 0 0;
  color: var(--blog-ink);
  font-size: clamp(1.7rem, 2.3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.cha-article-copy p,
.cha-article-head > p {
  color: #536e74;
  font-size: 1rem;
  line-height: 1.82;
}

.cha-article-copy p {
  margin: 22px 0 0;
}

.cha-article-head {
  max-width: 860px;
  margin-bottom: 38px;
}

.cha-article-head > p {
  max-width: 760px;
  margin: 18px 0 0;
}

.cha-article-note {
  position: sticky;
  top: 112px;
  padding: 30px;
  background: linear-gradient(145deg, #0f3138 0%, #0a5962 100%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 49, 56, .18);
}

.cha-article-note > span {
  display: inline-flex;
  padding: 5px 10px;
  color: #8de0d9;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cha-article-note h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 1.38rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.02em;
}

.cha-article-note p {
  margin: 13px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .91rem;
  line-height: 1.72;
}

.cha-article-visual {
  margin: 0;
  padding: 0 0 92px;
  background: #fff;
}

.cha-article-visual-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(300px, .48fr);
  min-height: 500px;
  overflow: hidden;
  background: #102f36;
  border-radius: 28px;
  box-shadow: 0 28px 72px rgba(15, 74, 78, .16);
}

.cha-article-visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.cha-article-visual-frame figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.cha-article-visual-frame figcaption .cha-eyebrow {
  color: #83ddd6;
}

.cha-article-visual-frame figcaption p {
  margin: 20px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 1.12rem;
  line-height: 1.68;
}

.cha-article-grid {
  display: grid;
  gap: 20px;
}

.cha-article-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cha-article-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cha-article-card {
  min-width: 0;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(14, 124, 123, .15);
  border-radius: 22px;
  box-shadow: 0 14px 42px rgba(15, 74, 78, .06);
}

.cha-article-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 34px;
  margin-bottom: 40px;
  color: #087889;
  background: #eaf8f7;
  border-radius: 12px;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .06em;
}

.cha-article-card h3 {
  margin: 0;
  color: var(--blog-ink);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -.02em;
}

.cha-article-card p {
  margin: 13px 0 0;
  color: #5c7378;
  font-size: .94rem;
  line-height: 1.74;
}

.cha-blog-article-tr .cha-blog-evidence,
.cha-blog-article-tr .cha-blog-sources,
.cha-blog-article-tr .cha-blog-related {
  padding: 84px 0;
}

.cha-blog-article-tr .cha-blog-evidence-box {
  grid-template-columns: minmax(280px, .56fr) minmax(0, 1.44fr);
  padding: 42px;
}

.cha-blog-article-tr .cha-blog-sources h2,
.cha-blog-article-tr .cha-blog-related h2 {
  margin-top: 12px;
}

@media (max-width: 1180px) {
  .cha-blog-article-tr .cha-detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .cha-blog-article-tr .cha-detail-panel {
    width: 100%;
    max-width: none;
    min-height: 440px;
  }

  .cha-blog-article-tr .cha-detail-panel img {
    min-height: 440px;
  }

  .cha-article-opening-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: 40px;
  }

  .cha-article-visual-frame {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  }
}

@media (max-width: 900px) {
  .cha-blog-article .cha-detail-card-grid-3,
  .cha-article-grid-3,
  .cha-article-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cha-article-opening-grid,
  .cha-article-visual-frame {
    grid-template-columns: 1fr;
  }

  .cha-article-note {
    position: static;
  }

  .cha-article-visual-frame img {
    min-height: 390px;
    aspect-ratio: 16 / 10;
  }

  .cha-blog-article-tr .cha-blog-evidence-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .cha-editorial-footer { margin-inline: 0; }

  .cha-editorial-compact {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .cha-editorial-compact-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .cha-editorial-compact-copy {
    padding: 10px 8px 9px;
  }

  .cha-editorial-compact-copy > p {
    display: -webkit-box;
  }

  .cha-blog-article .cha-detail-card-grid-3,
  .cha-article-grid-3,
  .cha-article-grid-2 {
    grid-template-columns: 1fr;
  }

  .cha-blog-article-tr .cha-detail-hero {
    padding-block: 52px 44px;
  }

  .cha-blog-article-tr .cha-detail-copy h1 {
    font-size: clamp(1.9rem, 8vw, 2.3rem);
  }

  .cha-blog-article-tr .cha-detail-panel,
  .cha-blog-article-tr .cha-detail-panel img {
    min-height: 280px;
  }

  .cha-article-section {
    padding: 62px 0;
  }

  .cha-article-copy h2,
  .cha-article-head h2 {
    font-size: clamp(1.5rem, 6.2vw, 1.8rem);
  }

  .cha-article-note,
  .cha-article-card {
    padding: 24px;
  }

  .cha-article-visual {
    padding-bottom: 62px;
  }

  .cha-article-visual-frame {
    min-height: 0;
    border-radius: 22px;
  }

  .cha-article-visual-frame img {
    min-height: 250px;
  }

  .cha-article-visual-frame figcaption {
    padding: 28px;
  }

  .cha-article-visual-frame figcaption p {
    font-size: 1rem;
  }

  .cha-article-card-index {
    margin-bottom: 28px;
  }

  .cha-blog-article-tr .cha-blog-evidence,
  .cha-blog-article-tr .cha-blog-sources,
  .cha-blog-article-tr .cha-blog-related {
    padding: 58px 0;
  }
}

@media (max-width: 520px) {
  .cha-editorial-compact {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  .cha-editorial-compact-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .cha-editorial-compact-copy {
    padding: 8px 7px 9px;
  }

  .cha-editorial-compact .cha-editorial-meta > span:not(.cha-editorial-category) {
    display: inline-flex;
  }

  .cha-editorial-compact h3 {
    font-size: 1.1rem;
  }

  .cha-editorial-compact-copy > p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
  }
}

/* v3.1 media sizing: definite desktop tracks, intrinsic responsive tracks */
.cha-editorial-feature-media { height: 472px; }
.cha-editorial-compact-media { height: 216px; }

@media (max-width: 820px) {
  .cha-editorial-feature {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .cha-editorial-feature-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .cha-editorial-feature-media img {
    position: static;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
}

@media (max-width: 680px) {
  .cha-editorial-compact-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .cha-editorial-compact-media img {
    position: static;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
}

/* v3.2 absolute replaced elements require a definite image height */
.cha-editorial-feature-media img { height: 472px; }
.cha-editorial-compact-media img { height: 216px; }

@media (max-width: 820px) {
  .cha-editorial-feature-media img { height: auto; }
}

@media (max-width: 680px) {
  .cha-editorial-compact-media img { height: auto; }
}

/* v3.3 override the global img[width][height] intrinsic sizing contract */
.cha-editorial-feature-media img { height: 472px !important; }
.cha-editorial-compact-media img { height: 216px !important; }

@media (max-width: 820px) {
  .cha-editorial-feature-media img { height: auto !important; }
}

@media (max-width: 680px) {
  .cha-editorial-compact-media img { height: auto !important; }
}

