/* ==================================================================
   EVİA · Hekimlere Özel sayfa
   blog.css üzerine ek stiller (aynı palet ve tipografi).
   ================================================================== */

/* ---------- Hero ---------- */
.hhero {
  padding: 44px 0 8px;
  max-width: 860px;
}
.hhero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 6.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 4px 0 22px;
}
.hhero__intro {
  font-size: clamp(15.5px, 2vw, 17.5px);
  line-height: 1.75;
  color: var(--fg-dim);
  max-width: 60ch;
}
.hhero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hbtn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 3px;
  transition: transform 0.22s ease, opacity 0.22s ease, background 0.22s ease;
}
.hbtn--primary {
  background: var(--accent);
  color: var(--pine);
}
.hbtn--ghost {
  border: 1px solid var(--rule);
  color: var(--fg);
}
.hbtn:hover { transform: translateY(-2px); }
.hbtn--ghost:hover { background: var(--bg-soft); }

/* ---------- Bölüm ---------- */
.hsec {
  padding: clamp(44px, 7vh, 76px) 0 0;
  border-top: 1px solid var(--rule);
  margin-top: clamp(40px, 6vh, 66px);
}
.hsec__h {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 3.6vw, 38px);
  line-height: 1.1;
  margin-bottom: 12px;
}
.hsec__intro {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--fg-dim);
  max-width: 58ch;
  margin-bottom: 30px;
}

/* ---------- Grid ---------- */
.hgrid {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.hgrid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.hgrid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* ---------- Neden Zeitschild kartları ---------- */
.hcard {
  background: var(--bg);
  padding: 30px 28px;
  transition: background 0.3s ease;
}
.hcard:hover { background: var(--bg-soft); }
.hcard__h {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.22;
  margin-bottom: 12px;
}
.hcard__p {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--fg-dim);
}

/* ---------- İçermez listesi ---------- */
.hfree {
  list-style: none;
  border-top: 1px solid var(--rule);
  max-width: 760px;
}
.hfree__row {
  display: grid;
  grid-template-columns: 44px 1fr 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 0.3s ease;
}
.hfree__row:hover { padding-left: 10px; }
.hfree__no {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.hfree__a {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 18px;
  color: var(--fg);
}
.hfree__b {
  font-size: 13.5px;
  color: var(--fg-dim);
}
@media (max-width: 640px) {
  .hfree__row { grid-template-columns: 34px 1fr; gap: 10px 12px; }
  .hfree__b { grid-column: 2; }
}

/* ---------- Sunduklarımız ---------- */
.hoffer {
  background: var(--bg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.3s ease;
}
.hoffer:hover { background: var(--bg-soft); }
.hoffer__no {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.hoffer__h {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.22;
}
.hoffer__p {
  font-size: 14px;
  line-height: 1.68;
  color: var(--fg-dim);
}

/* ---------- Hatlar ---------- */
.hline {
  background: var(--bg);
  padding: 32px 28px;
}
.hline__h {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 27px);
  margin-bottom: 6px;
}
.hline__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.hline__p {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--fg-dim);
}

/* ---------- Klinik çalışma ---------- */
.hstudy {
  display: block;
  border: 1px solid var(--rule);
  padding: 28px 26px;
  max-width: 760px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hstudy:hover { background: var(--bg-soft); transform: translateY(-2px); }
.hstudy__desc {
  display: block;
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--fg-dim);
  margin-bottom: 16px;
}
.hstudy__cta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- İletişim ---------- */
.hcontact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: 22px;
}
.hcontact__item {
  background: var(--bg);
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: background 0.3s ease;
}
.hcontact__item:hover { background: var(--bg-soft); }
.hcontact__item--static:hover { background: var(--bg); }
.hcontact__item--wa { background: var(--pine); }
.hcontact__item--wa:hover { background: #143528; }
.hcontact__item--wa .hcontact__label { color: var(--accent); }
.hcontact__item--wa .hcontact__val { color: var(--bg); }
.hcontact__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.hcontact__val {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.35;
  color: var(--fg);
}

.hnote {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--fg);
  border-left: 2px solid var(--accent);
  padding: 14px 18px;
  background: var(--bg-soft);
  max-width: 68ch;
  margin-bottom: 18px;
}
.hkvkk {
  font-size: 12px;
  line-height: 1.6;
  color: var(--fg-dim);
  max-width: 72ch;
  opacity: 0.85;
}
