/* HangiSoru header shell for LGS Tercih Robotu — scoped */
:root {
  --hs-blue: #1b4b94;
  --hs-blue-dark: #143a75;
  --hs-blue-hi: #2d63b5;
  --hs-grad: linear-gradient(105deg, #123566 0%, #1b4b94 52%, #2d63b5 100%);
  --hs-grad-btn: linear-gradient(180deg, #2a5eae 0%, #1b4b94 100%);
  --hs-navy: #0f2a5c;
  --hs-text: #1e293b;
  --hs-muted: #64748b;
  --hs-line: #cbd5e1;
  --hs-divider: #cbd5e1;
  --hs-bg: #f5f8fc;
  --hs-white: #fff;
  --hs-card: #fff;
  --hs-soft: #eff6ff;
  --hs-ink: #0f2a5c;
  --hs-max: 1180px;
  --hs-header: #fff;
  --hs-grade: #1e3a8a;
  --hs-radius: 6px;
  --hs-shadow: 0 1px 3px rgba(15, 42, 92, 0.06);
  --hs-shadow-md: 0 10px 28px rgba(15, 42, 92, 0.08);
}

a.hs-logo, .hs-header a { text-decoration: none; color: inherit; }
.hs-header button, .hs-header input, .hs-header select { font: inherit; }
.hs-header ul { margin: 0; padding: 0; list-style: none; }
.hs-wrap { width: min(var(--hs-max), calc(100% - 40px)); margin-inline: auto; }
/* Header */
.hs-header {
  background: var(--hs-header);
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: env(safe-area-inset-top);
  overflow-x: clip;
}
.hs-top {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 10px 0;
}
.hs-logo { flex-shrink: 0; display: block; }
.hs-logo img { width: 168px; height: 48px; object-fit: contain; }
.hs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2px;
  min-width: 0;
}
.hs-nav > a,
.hs-drop-btn {
  position: relative;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--hs-navy);
  padding: 10px 12px;
  white-space: nowrap;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.01em;
  border-radius: 8px;
  transition: color 160ms ease, background 160ms ease;
}
.hs-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hs-drop-caret {
  width: 12px;
  height: 12px;
  color: #64748b;
  transition: transform 160ms ease;
}
.hs-drop.is-open .hs-drop-caret { transform: rotate(180deg); }
.hs-nav > a:hover,
.hs-drop-btn:hover {
  color: var(--hs-blue);
  background: #f1f5f9;
}
.hs-nav > a.is-active,
.hs-drop-btn.is-active {
  color: var(--hs-blue);
  font-weight: 800;
  background: #eff6ff;
}
.hs-nav > a.is-active::after,
.hs-drop-btn.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--hs-blue);
}
.hs-nav-label { display: none; }
.hs-nav-grades { display: none; }
.hs-drop { position: relative; }
.hs-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--hs-line);
  border-radius: 6px;
  padding: 6px 0;
  z-index: 60;
  box-shadow: var(--hs-shadow);
}
.hs-drop.is-open .hs-drop-menu { display: block; }
.hs-drop-menu a {
  display: block;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #344054;
}
.hs-drop-menu a:hover { color: var(--hs-blue); background: #f8fafc; }
.hs-drop-menu--wide { min-width: 240px; }
.hs-nav-mobileonly { display: none; }
.hs-top-end { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hs-auth,
.hs-account {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 14px;
  margin-left: 2px;
  border-left: 1px solid var(--hs-line);
}
.hs-auth-login {
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
  padding: 8px 12px;
  white-space: nowrap;
}
.hs-auth-login:hover { color: var(--hs-blue); }
.hs-auth-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  background: var(--hs-grad-btn);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
}
.hs-auth-register:hover {
  background: linear-gradient(180deg, #245498 0%, #143a75 100%);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.hs-account-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 3px 10px 3px 3px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e8eef5;
  transition: border-color 160ms ease, background 160ms ease;
}
.hs-account-chip:hover {
  border-color: #bfdbfe;
  background: #f8fbff;
}
.hs-account-ava {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hs-navy);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.hs-account-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  min-width: 0;
  padding-right: 2px;
}
.hs-account-txt strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--hs-navy);
  line-height: 1.15;
}
.hs-account-txt small {
  font-size: 0.68rem;
  color: #64748b;
  max-width: 108px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.2;
}
.hs-account-out {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: none;
  color: #64748b;
  border-radius: 8px;
  cursor: pointer;
}
.hs-account-out svg { width: 16px; height: 16px; }
.hs-account-out:hover { color: #b42318; background: #fef3f2; }
.hs-account form { margin: 0; }
.hs-nav-mask {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 58, 0.4);
  z-index: 40;
}

.hs-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1.5px solid #94a3b8;
  border-radius: 10px;
  background: #f8fafc;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 11px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}
.hs-burger:hover {
  background: #eff6ff;
  border-color: var(--hs-blue);
}
.hs-burger span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--hs-navy);
  transition: transform 180ms ease, opacity 180ms ease;
}
body.nav-open .hs-burger {
  background: #eff6ff;
  border-color: var(--hs-blue);
}
body.nav-open .hs-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .hs-burger span:nth-child(2) { opacity: 0; }
body.nav-open .hs-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
body.nav-open .hs-grades,
body.nav-open .hs-searchband { display: none; }

.hs-grades {
  background: var(--hs-grade);
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.hs-grades .hs-wrap {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.hs-grades::-webkit-scrollbar { display: none; }
.hs-grades a {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
}
.hs-grades a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.hs-grades a.is-active {
  background: #fff;
  border-color: #fff;
  color: var(--hs-grade);
}
.hs-grades-home {
  flex: 0 0 auto !important;
  width: 40px;
  min-width: 40px !important;
  padding: 0 !important;
  gap: 0;
}
.hs-grades-home svg {
  width: 18px;
  height: 18px;
  display: block;
}

.hs-searchband {
  background: #eef3f9;
  border-bottom: 1px solid #dbe4ef;
  padding: 14px 0 16px;
}
.hs-searchform {
  margin: 0;
  width: 100%;
}
.hs-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #c5d3e6;
  border-radius: 12px;
  min-height: 54px;
  padding: 5px 5px 5px 16px;
  box-shadow: 0 1px 2px rgba(15, 42, 92, 0.05), 0 10px 28px rgba(15, 42, 92, 0.08);
}
.hs-search:focus-within {
  border-color: var(--hs-blue-hi);
  box-shadow: 0 0 0 4px rgba(45, 99, 181, 0.16), 0 12px 28px rgba(15, 42, 92, 0.1);
}
.hs-search-ico {
  width: 20px;
  height: 20px;
  color: var(--hs-blue);
  flex-shrink: 0;
}
.hs-search-typewrap { position: relative; flex-shrink: 0; }
.hs-search-type {
  display: block;
  height: 36px;
  min-width: 102px;
  max-width: 124px;
  padding: 0 28px 0 12px;
  border: 0;
  border-radius: 8px;
  background-color: #eef3f9;
  color: var(--hs-navy);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 36px;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231b4b94' stroke-width='2.4' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.hs-search-type:hover { background-color: #e4ebf3; }
.hs-search-type:focus {
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(45, 99, 181, 0.22);
}
.hs-search-split {
  width: 1px;
  height: 28px;
  background: #d7e2ee;
  flex-shrink: 0;
}
.hs-search input {
  flex: 1;
  border: 0;
  padding: 8px 10px;
  outline: none;
  min-width: 0;
  background: transparent;
  color: var(--hs-text);
  font-size: 16px;
  font-weight: 500;
  -webkit-appearance: none;
  appearance: none;
}
.hs-search input[type="search"]::-webkit-search-decoration,
.hs-search input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
.hs-search input::placeholder { color: #94a3b8; font-weight: 400; }
.hs-search button {
  background: var(--hs-grad-btn);
  color: #fff;
  border: 0;
  padding: 0 22px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  min-width: 84px;
  min-height: 42px;
  border-radius: 9px;
  -webkit-appearance: none;
  appearance: none;
}
.hs-search button:hover { background: linear-gradient(180deg, #2d63b5 0%, #143a75 100%); }
@media (max-width: 1280px) {
  .hs-items { grid-template-columns: repeat(3, 1fr); }
  .hs-nav > a { padding: 9px 9px; font-size: 0.84rem; }
  .hs-drop-btn { padding: 9px 9px; font-size: 0.84rem; }
  .hs-nav > a.is-active::after,
  .hs-drop-btn.is-active::after { left: 9px; right: 9px; }
  .hs-account-txt small { display: none; }
  .hs-grades a { font-size: 0.75rem; padding: 6px 4px; }
}
@media (max-width: 1100px) {
  .hs-nav { display: none; }
  .hs-nav-mask[hidden] { display: none; }
  body.nav-open { overflow: hidden; }
  body.nav-open .hs-nav-mask { display: block; }
  .hs-top {
    position: relative;
    z-index: 56;
    background: #fff;
  }
  body.nav-open .hs-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    left: 0;
    right: 0;
    top: calc(58px + env(safe-area-inset-top));
    bottom: 0;
    padding: 12px 16px calc(28px + env(safe-area-inset-bottom));
    background: #fff;
    z-index: 45;
    overflow-y: auto;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 16px 40px rgba(15, 42, 92, 0.12);
  }
  body.nav-open .hs-nav-label {
    display: block;
    margin: 18px 0 8px;
    padding: 0 4px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
  }
  body.nav-open .hs-nav-section:first-child .hs-nav-label { margin-top: 4px; }
  body.nav-open .hs-nav-grades-block {
    display: block;
    width: 100%;
    margin: 4px 0 8px;
    padding: 4px 0 14px;
    border-bottom: 1px solid var(--hs-line);
  }
  body.nav-open .hs-nav-grades {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  body.nav-open .hs-nav-grades a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 4px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--hs-navy);
    text-align: center;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    white-space: nowrap;
  }
  body.nav-open .hs-nav-grades a:hover {
    background: #e2e8f0;
    color: var(--hs-navy);
  }
  body.nav-open .hs-nav-grades a.is-active {
    background: var(--hs-navy);
    border-color: var(--hs-navy);
    color: #fff;
  }
  body.nav-open .hs-nav > a,
  body.nav-open .hs-drop-btn {
    min-height: 50px;
    font-size: 1.02rem;
    font-weight: 700;
    padding: 12px 10px;
    border-bottom: 1px solid #e8eef5;
    border-radius: 0;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    background: none;
  }
  body.nav-open .hs-drop { width: 100%; }
  body.nav-open .hs-drop-menu {
    position: static;
    border: 0;
    box-shadow: none;
    padding: 0 0 8px 8px;
    min-width: 0;
    background: #f8fafc;
    border-radius: 10px;
    margin: 0 0 8px;
  }
  body.nav-open .hs-drop-menu a {
    padding: 12px 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
  }
  body.nav-open .hs-nav > a,
  body.nav-open .hs-drop-btn { color: var(--hs-navy); }
  body.nav-open .hs-nav > a.is-active,
  body.nav-open .hs-drop-btn.is-active {
    color: var(--hs-blue);
    background: #eff6ff;
  }
  body.nav-open .hs-nav > a.is-active::after,
  body.nav-open .hs-drop-btn.is-active::after { display: none; }
  .hs-nav-mobileonly { display: flex; }
  .hs-nav-section.hs-nav-mobileonly { display: block; width: 100%; }
  .hs-auth,
  .hs-account { display: none; }
  .hs-burger { display: flex; position: relative; z-index: 55; }
  body.nav-open .hs-nav-user {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 10px;
    font-weight: 700;
    color: var(--hs-navy);
    border-bottom: 1px solid #e8eef5;
  }
  body.nav-open .hs-nav form.hs-nav-mobileonly { display: block; width: 100%; }
  body.nav-open .hs-nav-logout {
    width: 100%;
    min-height: 50px;
    font-size: 1.02rem;
    padding: 12px 10px;
    border: 0;
    border-bottom: 1px solid #e8eef5;
    background: none;
    color: var(--hs-navy);
    text-align: left;
    cursor: pointer;
    font-weight: 700;
    font-family: inherit;
  }
  .hs-items, .hs-news, .hs-tools, .hs-layout, .hs-table, .hs-pager, .hs-cards-4, .hs-edu-grid, .hs-post-more-grid, .hs-post-nav {
    grid-template-columns: 1fr 1fr;
  }
  .hs-spots { grid-template-columns: 1fr; }
  .hs-hub-grid { grid-template-columns: 1fr; }
  .hs-grades .hs-wrap { gap: 6px; }
  .hs-grades a {
    flex: 0 0 auto;
    min-width: 78px;
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.78rem;
  }
  .hs-searchform { width: 100%; }
  .hs-search {
    min-height: 50px;
    padding: 4px 4px 4px 12px;
  }
  .hs-hero-grid { grid-template-columns: 1fr; }
  .hs-hero-art { order: -1; width: min(100%, 340px); }
  .hs-hero-img { width: 100%; }
  .hs-features { grid-template-columns: 1fr 1fr; }
  .is-home .hs-lists > .hs-list { min-height: 0; }
  .hs-adbox { min-height: 250px; }
}
@media (max-width: 720px) {
  .hs-wrap { width: min(var(--hs-max), calc(100% - 20px)); }
  .hs-top { gap: 8px 10px; min-height: 56px; padding: 6px 0 8px; }
  .hs-logo img { width: 140px; height: 40px; }
  .hs-searchform { max-width: none; }
  .hs-search { min-height: 48px; padding-left: 10px; border-radius: 10px; }
  .hs-search-type { min-width: 88px; max-width: 102px; font-size: 0.8rem; height: 32px; line-height: 32px; }
  .hs-search button {
    padding: 0 16px;
    min-width: 68px;
    min-height: 38px;
    font-size: 0.86rem;
  }
  .hs-items {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

.hs-header { font-family: Inter, ui-sans-serif, system-ui, "Segoe UI", sans-serif; }
.hs-pref-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  margin-left: 6px;
  padding: 0 5px;
  border-radius: 999px;
  background: #fff;
  color: var(--hs-blue);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}
.hs-auth-register .hs-pref-badge { background: rgba(255,255,255,0.95); color: var(--hs-blue); }
.hs-grades a { flex: 0 0 auto; min-width: max-content; padding-inline: 12px; }
body.hs-lgs .hsfrat-ustbilgi,
body.hs-lgs .hsfrat-nav-mobil,
body.hs-lgs .hsfrat-mobil-menu-toggle { display: none !important; }
body.hs-lgs { padding-top: 0; }
body.hs-lgs .hsfrat-main-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
  min-height: 0 !important;
  background: var(--hs-bg);
  color: var(--hs-text);
  font-family: Inter, ui-sans-serif, system-ui, "Segoe UI", sans-serif;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: optional;
  src: url("/fonts/inter-latin.woff2") format("woff2");
}
.hs-skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--hs-blue);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 100;
}
.hs-skip:focus { left: 8px; }
.hs-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hs-searchform .hs-search input { flex: 1; }

/* Keep shell header above LGS page chrome */
body.hs-lgs .hs-header { position: sticky; top: 0; z-index: 1000; }
body.hs-lgs .hs-nav-mask { z-index: 990; }
body.hs-lgs .hs-search .hs-visually-hidden { display: none !important; }

/* Tercihlerim: LGS global a color override */
body.hs-lgs .hs-header a.hs-auth-register,
body.hs-lgs .hs-header .hs-auth-register {
  color: #fff !important;
  background: var(--hs-grad-btn) !important;
}
body.hs-lgs .hs-header a.hs-auth-register:hover {
  color: #fff !important;
  background: linear-gradient(180deg, #245498 0%, #143a75 100%) !important;
}
body.hs-lgs .hs-header .hs-auth-register .hs-pref-badge {
  background: #fff;
  color: var(--hs-blue) !important;
  -webkit-text-fill-color: var(--hs-blue) !important;
}

/* Hero + buttons (HangiSoru home language) */
.hs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
}
.hs-btn-primary {
  background: var(--hs-grad-btn);
  color: #fff !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 1px 2px rgba(18, 53, 102, 0.22);
}
.hs-btn-primary:hover {
  background: linear-gradient(180deg, #245498 0%, #143a75 100%);
  color: #fff !important;
}
.hs-btn-outline {
  background: #fff;
  border-color: var(--hs-blue);
  color: var(--hs-blue) !important;
}
.hs-btn-outline:hover { background: var(--hs-soft); }

.hs-lgs-hero.hs-hero,
.hs-hero {
  position: relative;
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.07), transparent 26%),
    linear-gradient(180deg, #f7faff 0%, #eef3fb 100%);
  color: var(--hs-navy);
  padding: 32px 0 28px;
  overflow: hidden;
  margin: 0 !important;
}
.hs-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  align-items: center;
  gap: 24px;
}
.hs-hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--hs-navy);
  font-family: Inter, ui-sans-serif, system-ui, "Segoe UI", sans-serif;
}
.hs-hero-copy h1 em {
  font-style: normal;
  color: var(--hs-blue);
}
.hs-hero-copy p {
  margin: 0 0 22px;
  max-width: 460px;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--hs-muted);
}
.hs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hs-hero .hs-btn {
  min-height: 46px;
  padding: 10px 16px;
}
.hs-hero .hs-btn svg { width: 18px; height: 18px; }
.hs-hero-art {
  display: flex;
  justify-content: center;
  width: min(100%, 480px);
  margin-inline: auto;
  aspect-ratio: 700 / 467;
}
.hs-hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 700 / 467;
  object-fit: contain;
  display: block;
}
.hs-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 18px;
  margin-top: 22px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e8eef6;
  border-radius: 6px;
  box-shadow: var(--hs-shadow-md);
  list-style: none;
}
.hs-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hs-feat-ico {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--hs-soft);
  color: var(--hs-blue);
  flex-shrink: 0;
}
.hs-feat-ico svg { width: 20px; height: 20px; }
.hs-features strong {
  display: block;
  font-size: 0.9rem;
  color: var(--hs-navy);
}
.hs-features small {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  color: var(--hs-muted);
  line-height: 1.35;
}
body.hs-lgs .hsfrat-arama-form-bolum { margin-top: 0; }
@media (max-width: 900px) {
  .hs-hero-grid { grid-template-columns: 1fr; }
  .hs-hero-art { order: -1; width: min(100%, 340px); }
  .hs-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .hs-features { grid-template-columns: 1fr; }
  .hs-hero { padding: 12px 0 18px; }
  .hs-hero-copy h1 { font-size: 1.65rem; }
}

/* Final overrides — must win over anasayfa/style */
body.hs-lgs a.hs-auth-register,
body.hs-lgs .hs-top-end a.hs-auth-register,
body.hs-lgs header.hs-header .hs-auth a.hs-auth-register {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
body.hs-lgs a.hs-auth-register .hs-pref-badge,
body.hs-lgs .hs-top-end a.hs-auth-register .hs-pref-badge,
body.hs-lgs header.hs-header .hs-auth a.hs-auth-register .hs-pref-badge,
body.hs-lgs .hs-nav-mobileonly .hs-pref-badge {
  color: var(--hs-blue) !important;
  -webkit-text-fill-color: var(--hs-blue) !important;
}
body.hs-lgs section.hs-hero.hs-lgs-hero {
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.07), transparent 26%),
    linear-gradient(180deg, #f7faff 0%, #eef3fb 100%) !important;
  padding: 32px 0 28px !important;
  margin: 0 !important;
  color: var(--hs-navy) !important;
}
body.hs-lgs .hs-lgs-hero .hs-hero-copy h1 { color: var(--hs-navy) !important; }
body.hs-lgs .hs-lgs-hero .hs-hero-copy h1 em { color: var(--hs-blue) !important; font-style: normal !important; }
body.hs-lgs .hs-lgs-hero .hs-btn-primary { color: #fff !important; -webkit-text-fill-color: #fff !important; }
body.hs-lgs .hs-lgs-hero .hs-btn-outline { color: var(--hs-blue) !important; -webkit-text-fill-color: var(--hs-blue) !important; }

/* Footer — HangiSoru shell */
body.hs-lgs .hsfrat-footer { display: none !important; }
.hs-footer {
  margin-top: 8px;
  background-color: #081526;
  background-image: linear-gradient(90deg, #1a3d6e 0%, #102848 38%, #081526 72%, #06101c 100%);
  color: #b7c3d4;
  padding: 44px 0 0;
  font-family: Inter, ui-sans-serif, system-ui, "Segoe UI", sans-serif;
}
.hs-footer a { text-decoration: none; }
.hs-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr 1fr;
  gap: 28px 32px;
  padding-bottom: 36px;
}
.hs-footer-grid--lgs {
  grid-template-columns: 1.45fr 1fr 1fr 1fr 1fr;
}
.hs-footer-logo {
  display: inline-block;
  margin: 0 0 14px;
}
.hs-footer-logo img {
  display: block;
  width: 148px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.hs-footer-brand p {
  margin: 0 0 16px;
  max-width: 248px;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #93a4bb;
}
.hs-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hs-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #8fa0b8;
  padding: 0;
  transition: color 180ms ease, border-color 180ms ease;
}
.hs-footer-social a:hover,
.hs-footer-social a:focus-visible {
  color: #5b8fd4;
  border-color: #5b8fd4;
}
.hs-footer-social svg { width: 15px; height: 15px; }
.hs-footer-col details { margin: 0; }
.hs-footer-col summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 12px;
  color: #eef3f9;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: default;
  pointer-events: none;
}
.hs-footer-col summary::-webkit-details-marker { display: none; }
.hs-footer-col summary::after { content: none; }
.hs-footer-links {
  display: grid;
  gap: 2px;
}
.hs-footer-links a,
.hs-footer-legal a {
  color: #b7c3d4;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.45;
  transition: color 180ms ease;
}
.hs-footer-links a {
  display: block;
  padding: 5px 0;
}
.hs-footer-links a:hover,
.hs-footer-legal a:hover,
.hs-footer-links a:focus-visible,
.hs-footer-legal a:focus-visible {
  color: #7eb0ef;
}
.hs-footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0 20px;
  font-size: 0.8rem;
  color: #8b9bb0;
}
.hs-footer-legal p { margin: 0; }
.hs-footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.hs-footer-legal-links a {
  display: inline;
  padding: 0;
  font-size: 0.8rem;
}
@media (max-width: 900px) {
  .hs-footer { padding-top: 28px; }
  .hs-footer-grid,
  .hs-footer-grid--lgs {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 8px;
  }
  .hs-footer-brand {
    padding-bottom: 16px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hs-footer-brand p { max-width: none; }
  .hs-footer-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hs-footer-col summary {
    min-height: 46px;
    margin: 0;
    cursor: pointer;
    pointer-events: auto;
  }
  .hs-footer-col summary::after {
    content: "+";
    font-size: 1.1rem;
    font-weight: 400;
    color: #8b9bb0;
    line-height: 1;
  }
  .hs-footer-col details[open] summary::after { content: "−"; }
  .hs-footer-links { padding: 0 0 12px; }
  .hs-footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 18px;
  }
}

/* ========== LGS homepage body — HangiSoru language ========== */
body.hs-lgs .hsfrat-konteyner {
  width: min(var(--hs-max), calc(100% - 40px)) !important;
  max-width: var(--hs-max) !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
}
body.hs-lgs .hsfrat-bolum-baslik,
body.hs-lgs .hsfrat-bolum-baslik h2,
body.hs-lgs .hsfrat-yorumlar-baslik h2,
body.hs-lgs .hsfrat-faq-metin h2,
body.hs-lgs .hsfrat-arama-form-baslik {
  color: var(--hs-navy) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem) !important;
  line-height: 1.25 !important;
  margin: 0 0 8px !important;
  text-align: left !important;
}
body.hs-lgs .hsfrat-bolum-altbaslik,
body.hs-lgs .hsfrat-yorumlar-baslik p,
body.hs-lgs .hsfrat-faq-metin > p,
body.hs-lgs .hsfrat-arama-form-altbaslik {
  color: var(--hs-muted) !important;
  font-size: 0.98rem !important;
  line-height: 1.55 !important;
  margin: 0 0 22px !important;
  max-width: 560px;
  text-align: left !important;
}
body.hs-lgs .hsfrat-bolum-baslik.hsfrat-fade-in,
body.hs-lgs .hsfrat-yorumlar-baslik,
body.hs-lgs .hsfrat-kurslar-baslik {
  text-align: left !important;
  margin-bottom: 22px !important;
}

/* Search form band */
body.hs-lgs .hsfrat-arama-form-bolum {
  background: #fff !important;
  padding: 36px 0 !important;
  margin: 0 !important;
  border-top: 1px solid #e8eef6;
  border-bottom: 1px solid #e8eef6;
}
body.hs-lgs .hsfrat-arama-form-icerik {
  background: #fff !important;
  border: 1px solid #e8eef6 !important;
  border-radius: 6px !important;
  box-shadow: var(--hs-shadow-md) !important;
  padding: 22px 24px !important;
}
body.hs-lgs .hsfrat-form-satir {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr auto !important;
  gap: 12px !important;
  align-items: stretch !important;
}
body.hs-lgs .hsfrat-select-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 48px !important;
  padding: 0 12px !important;
  background: #f8fafc !important;
  border: 1px solid var(--hs-line) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}
body.hs-lgs .hsfrat-form-ikon {
  color: var(--hs-blue) !important;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  box-shadow: none !important;
}
body.hs-lgs .hsfrat-form-select {
  flex: 1 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--hs-navy) !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  box-shadow: none !important;
  outline: none !important;
  height: 46px !important;
}
body.hs-lgs .hsfrat-arama-btn-form {
  min-width: 52px !important;
  min-height: 48px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: var(--hs-grad-btn) !important;
  color: #fff !important;
  box-shadow: 0 1px 2px rgba(18, 53, 102, 0.22) !important;
}
body.hs-lgs .hsfrat-arama-btn-form:hover {
  background: linear-gradient(180deg, #245498 0%, #143a75 100%) !important;
}

/* Features */
body.hs-lgs .hsfrat-ozellikler {
  background: var(--hs-bg) !important;
  padding: 48px 0 !important;
}
body.hs-lgs .hsfrat-ozellikler-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}
body.hs-lgs .hsfrat-ozellik-kart {
  background: #fff !important;
  border: 1px solid #e8eef6 !important;
  border-radius: 6px !important;
  box-shadow: var(--hs-shadow) !important;
  padding: 20px 18px !important;
  text-align: left !important;
  transition: border-color 160ms ease, box-shadow 160ms ease !important;
}
body.hs-lgs .hsfrat-ozellik-kart:hover {
  border-color: #c5d4ea !important;
  box-shadow: var(--hs-shadow-md) !important;
  transform: none !important;
}
body.hs-lgs .hsfrat-ozellik-ikon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 6px !important;
  display: grid !important;
  place-items: center !important;
  background: var(--hs-soft) !important;
  color: var(--hs-blue) !important;
  margin: 0 0 14px !important;
  box-shadow: none !important;
  font-size: 1.1rem !important;
}
body.hs-lgs .hsfrat-ozellik-baslik {
  color: var(--hs-navy) !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  margin: 0 0 8px !important;
  line-height: 1.35 !important;
}
body.hs-lgs .hsfrat-ozellik-aciklama {
  color: var(--hs-muted) !important;
  font-size: 0.86rem !important;
  line-height: 1.5 !important;
  margin: 0 0 14px !important;
}
body.hs-lgs .hsfrat-ozellik-link {
  color: var(--hs-blue) !important;
  font-weight: 600 !important;
  font-size: 0.86rem !important;
  text-decoration: none !important;
}
body.hs-lgs .hsfrat-ozellik-link:hover { color: var(--hs-blue-dark) !important; }

/* School type / course cards */
body.hs-lgs .hsfrat-kurslar {
  background: #fff !important;
  padding: 48px 0 !important;
  border-top: 1px solid #e8eef6;
}
body.hs-lgs .hsfrat-kurslar-baslik {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 12px !important;
}
body.hs-lgs .hsfrat-kurslar-sekmeler {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 0 4px !important;
}
body.hs-lgs .hsfrat-sekme-buton {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  border-radius: 6px !important;
  border: 1px solid var(--hs-line) !important;
  background: #fff !important;
  color: var(--hs-navy) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}
body.hs-lgs .hsfrat-sekme-buton.hsfrat-aktif,
body.hs-lgs .hsfrat-sekme-buton:hover {
  background: var(--hs-blue) !important;
  border-color: var(--hs-blue) !important;
  color: #fff !important;
}
body.hs-lgs .hsfrat-kurslar-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}
body.hs-lgs .hsfrat-kurs-kart {
  background: #fff !important;
  border: 1px solid #e8eef6 !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  box-shadow: var(--hs-shadow) !important;
  transition: border-color 160ms ease !important;
}
body.hs-lgs .hsfrat-kurs-kart:hover {
  border-color: #c5d4ea !important;
  transform: none !important;
  box-shadow: var(--hs-shadow-md) !important;
}
body.hs-lgs .hsfrat-kurs-resim {
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
  background: var(--hs-soft) !important;
}
body.hs-lgs .hsfrat-kurs-resim img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
body.hs-lgs .hsfrat-kurs-overlay {
  background: rgba(15, 42, 92, 0.35) !important;
}
body.hs-lgs .hsfrat-kurs-oynat-btn {
  background: var(--hs-grad-btn) !important;
  border-radius: 6px !important;
  width: 42px !important;
  height: 42px !important;
  box-shadow: none !important;
}
body.hs-lgs .hsfrat-kurs-icerik { padding: 14px 14px 16px !important; }
body.hs-lgs .hsfrat-kurs-baslik,
body.hs-lgs .hsfrat-kurs-baslik a {
  color: var(--hs-navy) !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
}
body.hs-lgs .hsfrat-kurs-baslik a:hover { color: var(--hs-blue) !important; }
body.hs-lgs .hsfrat-kurs-egitmen a,
body.hs-lgs .hsfrat-kurs-bilgi {
  color: var(--hs-muted) !important;
  font-size: 0.78rem !important;
}
body.hs-lgs .hsfrat-kurs-fiyat {
  color: var(--hs-blue) !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  margin: 8px 0 6px !important;
}
body.hs-lgs .hsfrat-yildiz { color: #f59e0b !important; }

/* Stats */
body.hs-lgs .hsfrat-istatistikler {
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.08), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #eef3fb 100%) !important;
  padding: 44px 0 !important;
  border-top: 1px solid #e8eef6;
}
body.hs-lgs .hsfrat-istatistikler-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
}
body.hs-lgs .hsfrat-istatistik-kart {
  background: #fff !important;
  border: 1px solid #e8eef6 !important;
  border-radius: 6px !important;
  box-shadow: var(--hs-shadow) !important;
  padding: 22px 16px !important;
  text-align: center !important;
}
body.hs-lgs .hsfrat-istatistik-sayi,
body.hs-lgs .hsfrat-istatistik-sayi.turuncu,
body.hs-lgs .hsfrat-istatistik-sayi.mor,
body.hs-lgs .hsfrat-istatistik-sayi.mavi,
body.hs-lgs .hsfrat-istatistik-sayi.yesil {
  color: var(--hs-blue) !important;
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
  font-weight: 800 !important;
  background: none !important;
  -webkit-text-fill-color: var(--hs-blue) !important;
}
body.hs-lgs .hsfrat-istatistik-etiket {
  color: var(--hs-muted) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  margin-top: 4px !important;
}

/* Comments — hide legacy bloated slider leftovers */
body.hs-lgs .hsfrat-yorumlar { display: none !important; }

/* Son yorumlar — kompakt profesyonel liste */
.hs-lgs-reviews {
  background: #fff;
  padding: 36px 0 40px;
  border-top: 1px solid #e8eef6;
}
.hs-lgs-reviews-head {
  margin-bottom: 14px;
}
.hs-lgs-reviews-head h2 {
  margin: 0 0 6px;
  color: var(--hs-navy);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.hs-lgs-reviews-head p {
  margin: 0;
  color: var(--hs-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}
.hs-lgs-reviews-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #e8eef6;
  border-radius: 6px;
  box-shadow: var(--hs-shadow);
  overflow: hidden;
}
.hs-lgs-review {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #eef3f8;
  transition: background 140ms ease;
}
.hs-lgs-reviews-list > li:last-child .hs-lgs-review { border-bottom: 0; }
.hs-lgs-review:hover { background: #f8fafc; }
.hs-lgs-review-av {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--hs-soft);
  color: var(--hs-blue);
  font-size: 0.88rem;
  font-weight: 800;
}
.hs-lgs-review-body {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 2px;
}
.hs-lgs-review-body strong {
  color: var(--hs-navy);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hs-lgs-review:hover .hs-lgs-review-body strong { color: var(--hs-blue); }
.hs-lgs-review-body span {
  color: var(--hs-muted);
  font-size: 0.82rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hs-lgs-review-go {
  flex-shrink: 0;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--hs-blue);
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.hs-lgs-review:hover .hs-lgs-review-go {
  background: var(--hs-blue);
  color: #fff;
  border-color: var(--hs-blue);
}
.hs-lgs-reviews-empty {
  padding: 18px 14px;
  color: var(--hs-muted);
  font-size: 0.9rem;
}
@media (max-width: 560px) {
  .hs-lgs-reviews { padding: 28px 0 32px; }
  .hs-lgs-review { padding: 11px 12px; gap: 10px; }
  .hs-lgs-review-go { display: none; }
}

/* CTA cards */
body.hs-lgs .hsfrat-cta-kartlar {
  background: var(--hs-bg) !important;
  padding: 40px 0 !important;
}
body.hs-lgs .hsfrat-cta-kartlar-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
}
body.hs-lgs .hsfrat-cta-kart {
  border-radius: 6px !important;
  border: 1px solid #e8eef6 !important;
  box-shadow: var(--hs-shadow) !important;
  padding: 24px !important;
  overflow: hidden !important;
}
body.hs-lgs .hsfrat-cta-kart.acik-mavi {
  background: linear-gradient(135deg, #1b4b94 0%, #143a75 100%) !important;
  border-color: transparent !important;
  color: #fff !important;
}
body.hs-lgs .hsfrat-cta-kart.beyaz {
  background: #fff !important;
}
body.hs-lgs .hsfrat-cta-kart.acik-mavi .hsfrat-cta-kart-baslik { color: #fff !important; }
body.hs-lgs .hsfrat-cta-kart.acik-mavi .hsfrat-cta-kart-desc { color: rgba(255,255,255,0.85) !important; }
body.hs-lgs .hsfrat-cta-kart.beyaz .hsfrat-cta-kart-baslik { color: var(--hs-navy) !important; }
body.hs-lgs .hsfrat-cta-kart.beyaz .hsfrat-cta-kart-desc { color: var(--hs-muted) !important; }
body.hs-lgs .hsfrat-cta-kart-baslik {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  margin: 0 0 10px !important;
  line-height: 1.3 !important;
}
body.hs-lgs .hsfrat-cta-kart-desc {
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
  margin: 0 0 18px !important;
}
body.hs-lgs .hsfrat-cta-kart-buton {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 42px !important;
  padding: 0 14px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  text-decoration: none !important;
}
body.hs-lgs .hsfrat-cta-kart.acik-mavi .hsfrat-cta-kart-buton {
  background: #fff !important;
  color: var(--hs-blue) !important;
}
body.hs-lgs .hsfrat-cta-kart.beyaz .hsfrat-cta-kart-buton {
  background: var(--hs-grad-btn) !important;
  color: #fff !important;
}

/* FAQ */
body.hs-lgs .hsfrat-faq-bolum {
  background: #fff !important;
  padding: 48px 0 56px !important;
  border-top: 1px solid #e8eef6;
}
body.hs-lgs .hsfrat-faq-icerik {
  display: grid !important;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.8fr) !important;
  gap: 28px !important;
  align-items: start !important;
}
body.hs-lgs .hsfrat-akordiyon-bolum {
  border: 1px solid #e8eef6 !important;
  border-radius: 6px !important;
  background: #fff !important;
  margin-bottom: 10px !important;
  overflow: hidden !important;
  box-shadow: none !important;
}
body.hs-lgs .hsfrat-akordiyon-baslik {
  color: var(--hs-navy) !important;
  font-weight: 650 !important;
  font-size: 0.95rem !important;
  padding: 14px 16px !important;
  background: #fff !important;
}
body.hs-lgs .hsfrat-akordiyon-icerik {
  border-top: 1px solid #eef3f8 !important;
  padding: 12px 16px 16px !important;
  color: var(--hs-muted) !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
  background: #fafcfe !important;
}
body.hs-lgs .hsfrat-akordiyon-ikon { color: var(--hs-blue) !important; }
body.hs-lgs .hsfrat-faq-istatistikler {
  display: grid !important;
  gap: 12px !important;
}
body.hs-lgs .hsfrat-faq-istatistik-oge {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  background: var(--hs-soft) !important;
  border: 1px solid #e8eef6 !important;
  border-radius: 6px !important;
  padding: 18px !important;
  box-shadow: none !important;
}
body.hs-lgs .hsfrat-faq-istatistik-ikon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 6px !important;
  display: grid !important;
  place-items: center !important;
  background: #fff !important;
  color: var(--hs-blue) !important;
  box-shadow: none !important;
}
body.hs-lgs .hsfrat-faq-istatistik-icerik h4 {
  color: var(--hs-navy) !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  margin: 0 0 2px !important;
}
body.hs-lgs .hsfrat-faq-istatistik-icerik p {
  color: var(--hs-muted) !important;
  margin: 0 !important;
  font-size: 0.85rem !important;
}

@media (max-width: 1100px) {
  body.hs-lgs .hsfrat-ozellikler-grid,
  body.hs-lgs .hsfrat-kurslar-grid,
  body.hs-lgs .hsfrat-istatistikler-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  body.hs-lgs .hsfrat-form-satir {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 720px) {
  body.hs-lgs .hsfrat-ozellikler-grid,
  body.hs-lgs .hsfrat-kurslar-grid,
  body.hs-lgs .hsfrat-istatistikler-grid,
  body.hs-lgs .hsfrat-cta-kartlar-grid,
  body.hs-lgs .hsfrat-faq-icerik,
  body.hs-lgs .hsfrat-form-satir {
    grid-template-columns: 1fr !important;
  }
  body.hs-lgs .hsfrat-arama-form-icerik { padding: 16px !important; }
  body.hs-lgs .hsfrat-ozellikler,
  body.hs-lgs .hsfrat-kurslar,
  body.hs-lgs .hsfrat-yorumlar,
  body.hs-lgs .hsfrat-faq-bolum { padding: 32px 0 !important; }
}

/* ========== Lise Taban Puanları hub ========== */
.hs-taban-page {
  background: var(--hs-bg);
  padding: 20px 0 48px;
  color: var(--hs-text);
  font-family: Inter, ui-sans-serif, system-ui, "Segoe UI", sans-serif;
}
.hs-taban-bc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 0.82rem;
  color: var(--hs-muted);
}
.hs-taban-bc a {
  color: var(--hs-blue);
  text-decoration: none;
  font-weight: 600;
}
.hs-taban-bc a:hover { text-decoration: underline; }
.hs-taban-head {
  margin: 0 0 22px;
  max-width: 720px;
}
.hs-taban-head h1 {
  margin: 0 0 10px;
  color: var(--hs-navy);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.hs-taban-head p {
  margin: 0 0 16px;
  color: var(--hs-muted);
  font-size: 1rem;
  line-height: 1.55;
}
.hs-taban-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hs-taban-ad {
  margin: 0 0 22px;
  min-height: 0;
  overflow: hidden;
}
.hs-okul-ad {
  margin: 18px 0 22px;
  min-height: 90px;
  overflow: hidden;
  text-align: center;
}
.hs-taban-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin: 0 0 12px;
}
.hs-taban-search {
  flex: 1 1 240px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--hs-line);
  border-radius: 6px;
  box-shadow: var(--hs-shadow);
}
.hs-taban-search svg {
  width: 18px;
  height: 18px;
  color: var(--hs-blue);
  flex-shrink: 0;
}
.hs-taban-search input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  color: var(--hs-navy);
  min-width: 0;
}
.hs-taban-hint {
  margin: 0;
  color: var(--hs-muted);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
}
.hs-taban-letters {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 18px;
  padding: 10px 0;
  background: linear-gradient(180deg, var(--hs-bg) 70%, rgba(245, 248, 252, 0));
}
body.hs-lgs .hs-header ~ * .hs-taban-letters,
.hs-taban-page .hs-taban-letters {
  top: 0;
}
.hs-taban-letters a,
.hs-taban-letters span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}
.hs-taban-letters a {
  background: #fff;
  border: 1px solid #e8eef6;
  color: var(--hs-navy);
}
.hs-taban-letters a:hover {
  border-color: var(--hs-blue);
  color: var(--hs-blue);
  background: var(--hs-soft);
}
.hs-taban-letters span.is-empty {
  color: #cbd5e1;
  border: 1px solid transparent;
}
.hs-taban-letter-anchor {
  grid-column: 1 / -1;
  height: 0;
  scroll-margin-top: 140px;
}
.hs-taban-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.hs-taban-card {
  background: #fff;
  border: 1px solid #e8eef6;
  border-radius: 6px;
  box-shadow: var(--hs-shadow);
  padding: 14px 14px 12px;
}
.hs-taban-card h2 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}
.hs-taban-card h2 a {
  color: var(--hs-navy);
  text-decoration: none;
}
.hs-taban-card h2 a:hover { color: var(--hs-blue); }
.hs-taban-chips {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hs-taban-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 4px;
  border: 1px solid #e2eaf4;
  background: #f8fafc;
  color: var(--hs-navy);
  font-size: 0.75rem;
  font-weight: 650;
  text-decoration: none;
  line-height: 1.2;
}
.hs-taban-chips a:hover {
  border-color: #bfdbfe;
  background: var(--hs-soft);
  color: var(--hs-blue);
}
.hs-taban-empty {
  margin: 18px 0 0;
  padding: 16px;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 6px;
  color: var(--hs-muted);
  text-align: center;
}
.hs-taban-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hs-taban-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--hs-navy);
  text-decoration: none;
  background: #fff;
  border: 1px solid #e8eef6;
  border-radius: 6px;
  box-shadow: var(--hs-shadow);
}
.hs-taban-row-ico {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--hs-blue);
  opacity: 0.85;
}
.hs-taban-row:hover {
  border-color: #bfdbfe;
  color: var(--hs-blue);
  background: var(--hs-soft);
}
.hs-taban-row:hover .hs-taban-row-ico {
  opacity: 1;
}
.hs-taban-simple .hs-taban-card h2 {
  margin: 0;
}
.hs-taban-cta {
  margin-top: 28px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid #e8eef6;
  border-radius: 6px;
  box-shadow: var(--hs-shadow-md);
}
.hs-taban-cta h2 {
  margin: 0 0 6px;
  color: var(--hs-navy);
  font-size: 1.15rem;
  font-weight: 800;
}
.hs-taban-cta > p {
  margin: 0 0 14px;
  color: var(--hs-muted);
  font-size: 0.92rem;
}
.hs-taban-cta-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.hs-taban-cta-row input {
  flex: 1;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--hs-line);
  border-radius: 6px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--hs-navy);
  background: #f8fafc;
}
.hs-taban-cta-row button {
  min-width: 88px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: var(--hs-grad-btn);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
}
.hs-taban-cta-row button:hover {
  background: linear-gradient(180deg, #245498 0%, #143a75 100%);
}
.hs-taban-seo {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #e8eef6;
  max-width: 52rem;
}
.hs-taban-seo h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--hs-navy);
  line-height: 1.3;
}
.hs-taban-seo h3 {
  margin: 22px 0 10px;
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--hs-navy);
  line-height: 1.35;
}
.hs-taban-seo p {
  margin: 0 0 12px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--hs-muted);
}
.hs-taban-seo p:last-child { margin-bottom: 0; }
.hs-taban-seo strong {
  color: var(--hs-navy);
  font-weight: 700;
}
.hs-taban-seo a {
  color: var(--hs-blue);
  font-weight: 650;
  text-decoration: none;
}
.hs-taban-seo a:hover {
  text-decoration: underline;
}
.hs-hub-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 300px;
  gap: 20px;
  align-items: start;
  margin-top: 8px;
}
.hs-hub-ad {
  position: sticky;
  top: 12px;
  width: 300px;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.hs-hub-ad .adsbygoogle {
  display: inline-block;
  width: 300px;
  height: 600px;
  background: #f8fafc;
  border: 1px solid #e8eef6;
  border-radius: 6px;
}
.hs-hub-main {
  min-width: 0;
}
.hs-list-ico {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--hs-blue);
  opacity: 0.88;
}
.hs-list-ico--school {
  width: 20px;
  height: 20px;
}
.hs-hub-row:hover .hs-list-ico,
.hs-taban-row:hover .hs-list-ico,
.hs-il-row:hover .hs-list-ico {
  opacity: 1;
}
.hs-il-row-main {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
.hs-il-row-text {
  min-width: 0;
  flex: 1 1 auto;
}
.hs-hub-row {
  justify-content: space-between;
  gap: 12px;
}
.hs-hub-row-label {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 700;
  line-height: 1.35;
}
.hs-hub-row-count {
  flex: 0 0 auto;
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--hs-blue);
  background: var(--hs-soft);
  border-radius: 4px;
  padding: 4px 8px;
  line-height: 1.2;
}
.hs-hub-row.is-empty-il {
  opacity: 0.55;
}
.hs-hub-row.is-empty-il .hs-hub-row-count {
  color: var(--hs-muted);
  background: #f1f5f9;
}
@media (max-width: 1200px) {
  .hs-hub-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .hs-hub-ad {
    display: none;
  }
}
@media (max-width: 720px) {
  .hs-hub-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .hs-hub-row-count {
    white-space: normal;
  }
}
.hs-eniyi-row-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.hs-eniyi-row-text strong {
  font-weight: 750;
  font-style: normal;
  color: inherit;
}
.hs-eniyi-row-text em {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--hs-muted);
  line-height: 1.35;
}
.hs-eniyi-rank-row {
  grid-template-columns: 36px minmax(0, 1fr) auto auto;
  align-items: center;
}
.hs-eniyi-rank-num {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--hs-soft);
  color: var(--hs-blue);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
}
@media (max-width: 720px) {
  .hs-eniyi-rank-row {
    grid-template-columns: 36px 1fr;
    grid-template-areas:
      "rank main"
      "rank stats"
      "rank actions";
  }
  .hs-eniyi-rank-num { grid-area: rank; align-self: start; margin-top: 2px; }
  .hs-eniyi-rank-row .hs-il-row-main { grid-area: main; }
  .hs-eniyi-rank-row .hs-il-stats { grid-area: stats; }
  .hs-eniyi-rank-row .hs-il-actions { grid-area: actions; }
}
@media (max-width: 1100px) {
  .hs-taban-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .hs-taban-page { padding: 14px 0 36px; }
  .hs-taban-grid { grid-template-columns: 1fr; }
  .hs-taban-letters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .hs-taban-letters::-webkit-scrollbar { display: none; }
  .hs-taban-letter-anchor { scroll-margin-top: 180px; }
  .hs-taban-cta-row { flex-direction: column; }
  .hs-taban-cta-row button { width: 100%; }
}

/* ========== İl / tür okul listesi ========== */
.hs-il-page {
  background: var(--hs-bg);
  padding: 20px 0 48px;
  color: var(--hs-text);
  font-family: Inter, ui-sans-serif, system-ui, "Segoe UI", sans-serif;
}
.hs-il-head {
  margin: 0 0 18px;
  max-width: 760px;
}
.hs-il-head h1 {
  margin: 0 0 10px;
  color: var(--hs-navy);
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.22;
}
.hs-il-head p {
  margin: 0;
  color: var(--hs-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
.hs-il-types {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 16px;
}
.hs-il-type {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid #e2eaf4;
  background: #fff;
  color: var(--hs-navy);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
  line-height: 1.2;
}
.hs-il-type:hover {
  border-color: #bfdbfe;
  background: var(--hs-soft);
  color: var(--hs-blue);
}
.hs-il-type.is-active {
  border-color: transparent;
  background: var(--hs-grad-btn);
  color: #fff;
}
.hs-il-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin: 0 0 14px;
  position: sticky;
  top: 0;
  z-index: 15;
  padding: 8px 0;
  background: linear-gradient(180deg, var(--hs-bg) 75%, rgba(245, 248, 252, 0));
}
.hs-il-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hs-il-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px 16px;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e8eef6;
  border-radius: 6px;
  box-shadow: var(--hs-shadow);
}
.hs-il-list-title {
  margin: 0 0 10px;
  color: var(--hs-navy);
  font-size: 1.05rem;
  font-weight: 800;
}
.hs-il-school {
  margin: 0 0 4px;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.3;
}
.hs-il-school a {
  color: var(--hs-navy);
  text-decoration: none;
}
.hs-il-school a:hover { color: var(--hs-blue); }
.hs-il-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  color: var(--hs-muted);
  font-size: 0.8rem;
}
.hs-il-stats {
  display: flex;
  gap: 14px;
  text-align: right;
}
.hs-il-stats > div {
  min-width: 72px;
}
.hs-il-stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 650;
  color: var(--hs-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}
.hs-il-stats strong {
  color: var(--hs-navy);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}
.hs-il-pref {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  border: 0;
  background: var(--hs-grad-btn);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
}
.hs-il-pref:hover:not(:disabled) {
  background: linear-gradient(180deg, #245498 0%, #143a75 100%);
}
.hs-il-pref.is-added,
.hs-il-pref:disabled.is-added {
  background: #059669;
  cursor: default;
}
.hs-il-empty {
  margin: 12px 0 0;
  padding: 16px;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 6px;
  color: var(--hs-muted);
  text-align: center;
}
.hs-il-empty a { color: var(--hs-blue); font-weight: 650; }
.hs-il-districts {
  margin-top: 28px;
  padding-top: 8px;
}
.hs-il-districts h2 {
  margin: 0 0 12px;
  color: var(--hs-navy);
  font-size: 1.05rem;
  font-weight: 800;
}
.hs-il-district-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hs-il-district-list a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 4px;
  border: 1px solid #e2eaf4;
  background: #f8fafc;
  color: var(--hs-navy);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}
.hs-il-district-list a:hover {
  border-color: #bfdbfe;
  background: var(--hs-soft);
  color: var(--hs-blue);
}
@media (max-width: 820px) {
  .hs-il-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "main actions"
      "stats stats";
  }
  .hs-il-row-main { grid-area: main; }
  .hs-il-actions { grid-area: actions; align-self: start; }
  .hs-il-stats {
    grid-area: stats;
    justify-content: flex-start;
    text-align: left;
    padding-top: 4px;
    border-top: 1px solid #f1f5f9;
  }
}
@media (max-width: 720px) {
  .hs-il-page { padding: 14px 0 36px; }
  .hs-il-types {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .hs-il-types::-webkit-scrollbar { display: none; }
  .hs-il-type { flex: 0 0 auto; }
}


/* ========== Okul detay sayfası ========== */
.hs-okul-page {
  padding: 22px 0 46px;
  background: var(--hs-bg);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--hs-text);
}

.hs-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------- Sayfa başı */
.hs-okul-head {
  margin: 0 0 18px;
}
.hs-okul-head h1 {
  margin: 0 0 8px;
  color: var(--hs-navy);
  font-size: clamp(1.35rem, 2.7vw, 1.95rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hs-okul-subline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--hs-muted);
  font-size: 0.92rem;
}
.hs-okul-subline span + span::before {
  content: "·";
  margin-right: 8px;
  color: var(--hs-line);
}

/* Özet rozetleri */
.hs-okul-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}
.hs-okul-pill {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--hs-line);
  border-radius: var(--hs-radius);
  box-shadow: var(--hs-shadow);
}
.hs-okul-pill.is-soft {
  background: var(--hs-soft);
}
.hs-okul-pill-label {
  display: block;
  margin-bottom: 4px;
  color: var(--hs-muted);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hs-okul-pill-value {
  display: block;
  color: var(--hs-navy);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.2;
}
.hs-okul-pill.is-soft .hs-okul-pill-value {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Aksiyon satırı */
.hs-okul-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hs-okul-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--hs-line);
  border-radius: var(--hs-radius);
  background: #fff;
  color: var(--hs-blue);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.hs-okul-btn:hover {
  background: var(--hs-soft);
  border-color: var(--hs-blue-hi);
}
.hs-okul-btn-primary {
  background: var(--hs-grad-btn);
  border-color: var(--hs-blue-dark);
  color: #fff;
}
.hs-okul-btn-primary:hover {
  background: linear-gradient(180deg, #245498 0%, #143a75 100%);
  color: #fff;
}
.hs-okul-btn.is-added,
.hs-okul-btn:disabled {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #047857;
  cursor: default;
}

/* ------------------------------------------------------------------- Kartlar */
.hs-okul-card {
  margin: 0 0 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--hs-line);
  border-radius: var(--hs-radius);
  box-shadow: none;
}
.hs-okul-card h2 {
  margin: 0 0 12px;
  color: var(--hs-navy);
  font-size: 1.02rem;
  font-weight: 700;
}
.hs-okul-card h3 {
  margin: 0 0 10px;
  color: var(--hs-navy);
  font-size: 0.95rem;
  font-weight: 700;
}
.hs-okul-empty {
  margin: 0;
  padding: 16px;
  background: var(--hs-bg);
  border-radius: var(--hs-radius);
  color: var(--hs-muted);
  font-size: 0.92rem;
}

.hs-okul-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.hs-okul-grid > .hs-okul-card {
  margin: 0;
}

/* --------------------------------------------------------------- Künye listesi */
.hs-okul-dl {
  margin: 0;
}
.hs-okul-dl-row {
  display: grid;
  grid-template-columns: minmax(120px, 38%) 1fr;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid #e6edf6;
}
.hs-okul-dl-row:first-child {
  border-top: 0;
  padding-top: 0;
}
.hs-okul-dl dt {
  margin: 0;
  color: var(--hs-muted);
  font-size: 0.86rem;
  font-weight: 600;
}
.hs-okul-dl dd {
  margin: 0;
  color: var(--hs-navy);
  font-size: 0.93rem;
  font-weight: 600;
  word-break: break-word;
}
.hs-okul-dd-note {
  display: block;
  margin-top: 4px;
  color: var(--hs-muted);
  font-size: 0.79rem;
  font-weight: 400;
  line-height: 1.5;
}

/* -------------------------------------------------------------------- Galeri */
.hs-okul-photo {
  margin: 0 0 10px;
  overflow: hidden;
  border-radius: var(--hs-radius);
  background: var(--hs-bg);
}
.hs-okul-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.hs-okul-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.hs-okul-thumb {
  padding: 0;
  width: 72px;
  height: 54px;
  overflow: hidden;
  border: 1px solid var(--hs-line);
  border-radius: var(--hs-radius);
  background: none;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.hs-okul-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hs-okul-thumb:hover {
  border-color: var(--hs-blue-hi);
}
.hs-okul-thumb.is-active {
  border-color: var(--hs-blue);
  box-shadow: 0 0 0 2px rgba(27, 75, 148, 0.18);
}

.hs-okul-notes {
  display: grid;
  gap: 8px;
}
.hs-okul-note {
  margin: 0;
  padding: 11px 13px;
  background: var(--hs-soft);
  border-left: 3px solid var(--hs-blue);
  border-radius: 0 var(--hs-radius) var(--hs-radius) 0;
  color: var(--hs-navy);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ----------------------------------------------------------------- Programlar */
.hs-okul-program-list {
  display: grid;
  gap: 10px;
}
.hs-okul-program {
  padding: 13px 15px;
  border: 1px solid var(--hs-line);
  border-radius: var(--hs-radius);
  background: #fcfdff;
}
.hs-okul-program-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.hs-okul-program-name {
  color: var(--hs-navy);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}
a.hs-okul-program-name:hover {
  color: var(--hs-blue);
  text-decoration: underline;
}
.hs-okul-program-code {
  padding: 4px 10px;
  background: var(--hs-soft);
  border: 1px solid #dbe6f7;
  border-radius: 999px;
  color: var(--hs-blue);
  font-size: 0.79rem;
  white-space: nowrap;
}
.hs-okul-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}
.hs-okul-chip {
  padding: 4px 10px;
  background: var(--hs-bg);
  border: 1px solid #e6edf6;
  border-radius: var(--hs-radius);
  color: var(--hs-muted);
  font-size: 0.79rem;
}
.hs-okul-chip strong {
  color: var(--hs-navy);
}
.hs-okul-program-hint {
  margin: 10px 0 0;
  color: var(--hs-muted);
  font-size: 0.83rem;
  line-height: 1.6;
}

/* ------------------------------------------------------- İstatistik + grafik */
.hs-okul-stats-note {
  margin: -4px 0 12px;
  color: var(--hs-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
.hs-okul-stats h3 {
  margin: 0 0 8px;
  color: var(--hs-navy);
  font-size: 0.88rem;
  font-weight: 700;
}
.hs-okul-stats-tables,
.hs-okul-stats-split,
.hs-okul-stats-charts {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.hs-okul-stats--2tables .hs-okul-stats-tables {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hs-okul-stats--2tables .hs-okul-stats-charts {
  grid-template-columns: 1fr;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e8eef6;
}
.hs-okul-stats--split .hs-okul-stats-split {
  grid-template-columns: minmax(240px, 0.95fr) minmax(280px, 1.05fr);
  align-items: stretch;
}
.hs-okul-stats--split .hs-okul-table-wrap,
.hs-okul-stats--split .hs-okul-chart {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.hs-okul-stats--split .hs-okul-table-scroll {
  flex: 1;
}
.hs-okul-stats--split .hs-okul-chart-box {
  flex: 1 1 auto;
  height: auto;
  min-height: 140px;
  max-height: none;
}
.hs-okul-stats--split .hs-okul-chart-box canvas {
  max-height: none;
}
.hs-okul-stats--split .hs-okul-stats-charts {
  grid-template-columns: 1fr;
  margin-top: 14px;
}
.hs-okul-stats--stack .hs-okul-stats-tables,
.hs-okul-stats--stack .hs-okul-stats-charts {
  grid-template-columns: 1fr;
}
.hs-okul-table-wrap {
  min-width: 0;
}
.hs-okul-table-scroll {
  overflow-x: auto;
  border: 1px solid #c5d4e8;
  border-radius: 6px;
  background: #fff;
}
.hs-okul-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.hs-okul-table th,
.hs-okul-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid #d7e2f0;
  border-right: 1px solid #e2eaf4;
}
.hs-okul-table th:last-child,
.hs-okul-table td:last-child {
  border-right: 0;
}
.hs-okul-table thead th {
  background: #e4eef9;
  color: var(--hs-navy);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  border-bottom: 1px solid #c5d4e8;
}
.hs-okul-table tbody th {
  color: var(--hs-navy);
  font-weight: 700;
  background: #f5f8fc;
  width: 4.5rem;
}
.hs-okul-table tbody td {
  color: var(--hs-navy);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.hs-okul-table tbody tr:nth-child(even) td {
  background: #f8fafc;
}
.hs-okul-table tbody tr:nth-child(even) th {
  background: #eef3f9;
}
.hs-okul-table tbody tr:last-child th,
.hs-okul-table tbody tr:last-child td {
  border-bottom: 0;
}
.hs-okul-chart {
  min-width: 0;
}
.hs-okul-chart-box {
  position: relative;
  height: 168px;
  max-height: 168px;
  padding: 6px 8px 2px;
  border: 1px solid #c5d4e8;
  border-radius: 6px;
  background: #fff;
}
.hs-okul-chart-box canvas {
  width: 100% !important;
  height: 100% !important;
  max-height: 156px;
}

/* --------------------------------------------------------------- Metin blokları */
.hs-okul-about p {
  margin: 0 0 10px;
  color: var(--hs-text);
  font-size: 0.95rem;
  line-height: 1.75;
}
.hs-okul-about p:last-child {
  margin-bottom: 0;
}
.hs-okul-about a {
  color: var(--hs-blue);
  font-weight: 600;
  text-decoration: none;
}
.hs-okul-about a:hover {
  text-decoration: underline;
}

.hs-okul-bilgi-body {
  color: var(--hs-text);
  font-size: 0.93rem;
  line-height: 1.75;
}
.hs-okul-bilgi-body p {
  margin: 0 0 10px;
}
.hs-okul-bilgi-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--hs-radius);
}
.hs-okul-bilgi-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.hs-okul-bilgi-body th,
.hs-okul-bilgi-body td {
  padding: 7px 10px;
  border: 1px solid #e6edf6;
}
.hs-okul-bilgi-source {
  margin: 12px 0 0;
  color: var(--hs-muted);
  font-size: 0.8rem;
}
.hs-okul-bilgi-source a {
  color: var(--hs-blue);
}

.hs-okul-more {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 12px;
  padding: 0 16px;
  border: 1px solid var(--hs-line);
  border-radius: var(--hs-radius);
  background: #fff;
  color: var(--hs-blue);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}
.hs-okul-more:hover {
  background: var(--hs-soft);
  border-color: var(--hs-blue-hi);
}

/* ------------------------------------------------------------------ İletişim */
.hs-okul-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}
.hs-okul-contact-item {
  padding: 12px 14px;
  background: var(--hs-bg);
  border: 1px solid #e6edf6;
  border-radius: var(--hs-radius);
}
.hs-okul-contact-label {
  display: block;
  margin-bottom: 4px;
  color: var(--hs-muted);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hs-okul-contact-item a,
.hs-okul-contact-value {
  color: var(--hs-navy);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.hs-okul-contact-item a:hover {
  color: var(--hs-blue);
  text-decoration: underline;
}

/* --------------------------------------------------------------------- Video */
.hs-okul-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--hs-radius);
  background: #0b1a33;
  aspect-ratio: 16 / 9;
}
.hs-okul-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------------------------------------------------------------- Yıldız oyu */
.hs-okul-rating {
  overflow: visible;
}
.hs-okul-rate {
  position: relative;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 4px;
  overflow: visible;
  line-height: 1;
}
.hs-okul-rate input {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.hs-okul-rate label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  color: #cbd5e1;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  overflow: visible;
  transition: color 0.12s ease;
}
.hs-okul-rate label span[aria-hidden="true"] {
  display: block;
  line-height: 1;
  font-size: 24px;
}
.hs-okul-rate input:checked ~ label,
.hs-okul-rate label:hover,
.hs-okul-rate label:hover ~ label {
  color: #f5a524;
}
.hs-okul-rate input:focus-visible + label {
  outline: 2px solid var(--hs-blue);
  outline-offset: 2px;
  border-radius: 4px;
}
.hs-okul-rating-summary {
  margin: 10px 0 0;
  color: var(--hs-muted);
  font-size: 0.88rem;
}
.hs-okul-rating-summary strong {
  color: var(--hs-navy);
}
.hs-okul-rating-summary .avgrat,
.hs-okul-rating-summary .totalrat {
  color: var(--hs-navy);
  font-weight: 700;
}

/* ---------------------------------------------------------- Benzer okullar */
.hs-okul-similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.hs-okul-similar-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 13px 15px;
  border: 1px solid var(--hs-line);
  border-radius: var(--hs-radius);
  background: #fcfdff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.hs-okul-similar-item:hover {
  border-color: var(--hs-blue-hi);
  box-shadow: var(--hs-shadow-md);
}
.hs-okul-similar-item h3 {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}
.hs-okul-similar-item h3 a {
  color: var(--hs-navy);
  text-decoration: none;
}
.hs-okul-similar-item h3 a:hover {
  color: var(--hs-blue);
  text-decoration: underline;
}
.hs-okul-similar-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: auto 0 0;
}
.hs-okul-similar-stats span {
  padding: 3px 9px;
  background: var(--hs-bg);
  border: 1px solid #e6edf6;
  border-radius: var(--hs-radius);
  color: var(--hs-muted);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}
.hs-okul-similar-stats strong {
  color: var(--hs-navy);
}
.hs-okul-similar-more {
  margin: 12px 0 0;
  font-size: 0.88rem;
}
.hs-okul-similar-more a {
  color: var(--hs-blue);
  font-weight: 600;
  text-decoration: none;
}
.hs-okul-similar-more a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------------------------- Yorumlar */
.hs-okul-comments-count {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 9px;
  background: var(--hs-soft);
  border-radius: 999px;
  color: var(--hs-blue);
  font-size: 0.76rem;
  font-weight: 600;
  vertical-align: middle;
}
.hs-okul-comments-intro {
  margin: -6px 0 16px;
  color: var(--hs-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.hs-okul-form {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: var(--hs-bg);
  border: 1px solid #e6edf6;
  border-radius: var(--hs-radius);
}
.hs-okul-field {
  display: grid;
  gap: 5px;
}
.hs-okul-field label {
  color: var(--hs-navy);
  font-size: 0.85rem;
  font-weight: 600;
}
.hs-okul-field input[type="text"],
.hs-okul-field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--hs-line);
  border-radius: var(--hs-radius);
  background: #fff;
  color: var(--hs-text);
  font: inherit;
  font-size: 0.92rem;
}
.hs-okul-field textarea {
  min-height: 120px;
  resize: vertical;
}
.hs-okul-field input:focus,
.hs-okul-field textarea:focus {
  outline: none;
  border-color: var(--hs-blue);
  box-shadow: 0 0 0 3px rgba(27, 75, 148, 0.12);
}
.hs-okul-field small {
  color: var(--hs-muted);
  font-size: 0.76rem;
}
.hs-okul-form-msg:not(:empty) {
  padding: 11px 13px;
  border-radius: var(--hs-radius);
  font-size: 0.88rem;
  line-height: 1.55;
}
.hs-okul-form-msg.is-ok {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.hs-okul-form-msg.is-err {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.hs-okul-comment-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.hs-okul-comment {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid #e6edf6;
  border-radius: var(--hs-radius);
  background: #fff;
}
.hs-okul-comment-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--hs-grad-btn);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}
.hs-okul-comment-body {
  min-width: 0;
}
.hs-okul-comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 5px;
}
.hs-okul-comment-meta strong {
  color: var(--hs-navy);
  font-size: 0.9rem;
}
.hs-okul-comment-meta span {
  color: var(--hs-muted);
  font-size: 0.78rem;
}
.hs-okul-comment-text {
  margin: 0;
  color: var(--hs-text);
  font-size: 0.91rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

/* ------------------------------------------------------------------- Sınavlı / Sınavsız hub */
.hs-sinav-page .hs-sinav-toggle {
  margin: 0 0 16px;
}
.hs-sinav-page .hs-taban-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  min-height: 88px;
}
.hs-sinav-page .hs-taban-card h2 {
  margin: 0;
}
.hs-sinav-count {
  margin: 0;
}
.hs-sinav-count a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  background: var(--hs-soft);
  color: var(--hs-blue);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}
.hs-sinav-count a:hover {
  background: #dbeafe;
}
.hs-tur-page .hs-taban-card.is-empty-il {
  opacity: 0.55;
}

/* ------------------------------------------------------------------- Okul Ara */
.hs-ara-page {
  padding: 18px 0 48px;
}
.hs-ara-head {
  margin: 0 0 18px;
}
.hs-ara-head h1 {
  margin: 0 0 8px;
  color: var(--hs-navy);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
}
.hs-ara-head p {
  margin: 0;
  max-width: 52rem;
  color: var(--hs-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.hs-ara-filters {
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid #e2eaf4;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--hs-shadow);
}
.hs-ara-filters-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.hs-ara-filters-grid--extra {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eef2f7;
}
.hs-ara-filters-grid--more {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 10px;
}
.hs-ara-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.hs-ara-field span {
  color: var(--hs-navy);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hs-ara-field input,
.hs-ara-field select {
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid #d5e0ee;
  border-radius: 6px;
  background: #f8fafc;
  color: var(--hs-navy);
  font: inherit;
  font-size: 0.9rem;
}
.hs-ara-field input:focus,
.hs-ara-field select:focus {
  outline: 2px solid #93c5fd;
  outline-offset: 1px;
  border-color: #60a5fa;
  background: #fff;
}
.hs-ara-more {
  margin-top: 10px;
  border-top: 1px solid #eef2f7;
  padding-top: 8px;
}
.hs-ara-more > summary {
  cursor: pointer;
  color: var(--hs-blue);
  font-size: 0.88rem;
  font-weight: 700;
  list-style: none;
  user-select: none;
}
.hs-ara-more > summary::-webkit-details-marker { display: none; }
.hs-ara-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.hs-ara-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
  align-items: start;
}
.hs-ara-main {
  min-width: 0;
}
.hs-ara-aside {
  position: sticky;
  top: 88px;
}
.hs-ara-ad {
  min-height: 250px;
  padding: 8px;
  border: 1px solid #e2eaf4;
  border-radius: 8px;
  background: #fff;
}
.hs-ara-meta {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #eef6ff;
  color: var(--hs-navy);
  font-size: 0.88rem;
  line-height: 1.5;
}
.hs-ara-meta--warn {
  background: #fff7ed;
  color: #9a3412;
}
.hs-ara-loading {
  margin: 0;
  padding: 28px 12px;
  text-align: center;
  color: var(--hs-muted);
  font-size: 0.95rem;
}
.hs-ara-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hs-ara-badge {
  margin: 0 0 4px;
  color: #c2410c;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hs-ara-pager {
  margin-top: 16px;
}
.hs-ara-pager ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.hs-ara-pager button,
.hs-ara-pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid #d5e0ee;
  border-radius: 6px;
  background: #fff;
  color: var(--hs-navy);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}
.hs-ara-pager button:hover {
  border-color: #93c5fd;
  background: #eff6ff;
}
.hs-ara-pager .is-active span {
  border-color: var(--hs-navy);
  background: var(--hs-navy);
  color: #fff;
  cursor: default;
}
.hs-ara-pager .is-disabled span {
  opacity: 0.4;
  cursor: default;
}

@media (max-width: 1100px) {
  .hs-ara-filters-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hs-ara-filters-grid .hs-ara-field--grow,
  .hs-ara-filters-grid > .hs-ara-field:first-child {
    grid-column: 1 / -1;
  }
  .hs-ara-filters-grid--extra {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hs-ara-filters-grid--more {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .hs-ara-layout {
    grid-template-columns: 1fr;
  }
  .hs-ara-aside {
    position: static;
    order: 2;
  }
  .hs-ara-ad {
    min-height: 120px;
  }
}
@media (max-width: 640px) {
  .hs-ara-page {
    padding: 12px 0 36px;
  }
  .hs-ara-filters {
    padding: 12px;
  }
  .hs-ara-filters-grid,
  .hs-ara-filters-grid--extra,
  .hs-ara-filters-grid--more {
    grid-template-columns: 1fr 1fr;
  }
  .hs-ara-filters-grid > .hs-ara-field:first-child {
    grid-column: 1 / -1;
  }
  .hs-ara-filter-actions .hs-btn {
    flex: 1 1 auto;
  }
}

/* ------------------------------------------------------------------- Responsive */
@media (max-width: 900px) {
  .hs-okul-grid {
    grid-template-columns: 1fr;
  }
  .hs-okul-stats--2tables .hs-okul-stats-tables,
  .hs-okul-stats--split .hs-okul-stats-split {
    grid-template-columns: 1fr;
  }
  .hs-okul-chart-box {
    height: 156px;
    max-height: 156px;
  }
}
@media (max-width: 640px) {
  .hs-okul-page {
    padding: 14px 0 32px;
  }
  .hs-okul-card {
    padding: 14px 12px;
  }
  .hs-okul-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hs-okul-cta .hs-okul-btn {
    flex: 1 1 100%;
  }
  .hs-okul-dl-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .hs-okul-comment {
    grid-template-columns: 1fr;
  }
  .hs-okul-comment-avatar {
    display: none;
  }
}

/* Sticky tercihlerim rail */
.hs-pref-rail {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 44px;
  padding: 14px 9px;
  background: #0f2a5c;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 0;
  border-radius: 12px 0 0 12px;
  box-shadow: -6px 8px 24px rgba(15, 42, 92, 0.18);
  text-decoration: none;
  transition: background 160ms ease, box-shadow 160ms ease, padding 160ms ease;
}
.hs-pref-rail:hover {
  background: #143a75;
  color: #fff;
  box-shadow: -8px 10px 28px rgba(15, 42, 92, 0.22);
}
.hs-pref-rail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.hs-pref-rail-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.hs-pref-rail .hs-pref-rail-badge {
  margin-left: 0;
  min-width: 20px;
  height: 20px;
  background: #fff;
  color: #0f2a5c !important;
  -webkit-text-fill-color: #0f2a5c !important;
}
.hs-pref-rail.is-empty .hs-pref-rail-badge[hidden] { display: none; }
body.nav-open .hs-pref-rail { display: none; }
@media (max-width: 720px) {
  .hs-pref-rail {
    top: auto;
    bottom: calc(18px + env(safe-area-inset-bottom));
    transform: none;
    flex-direction: row;
    gap: 6px;
    min-width: 0;
    padding: 11px 12px;
    border-radius: 999px 0 0 999px;
  }
  .hs-pref-rail-label { display: none; }
}

/* Tercihlerim page */
.hs-pref-page {
  padding: 18px 0 48px;
}
.hs-pref-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 24px;
  margin: 10px 0 14px;
  flex-wrap: wrap;
}
.hs-pref-head h1 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
  font-weight: 800;
  color: var(--hs-navy);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.hs-pref-head p {
  margin: 0;
  max-width: 52ch;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}
.hs-pref-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hs-pref-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.hs-pref-btn svg { width: 16px; height: 16px; }
.hs-pref-btn-primary {
  background: var(--hs-grad-btn);
  color: #fff;
}
.hs-pref-btn-primary:hover { color: #fff; filter: brightness(1.05); }
.hs-pref-btn-ghost {
  background: #fff;
  border-color: #dbe4ef;
  color: var(--hs-navy);
}
.hs-pref-btn-ghost:hover {
  border-color: #93c5fd;
  background: #f8fbff;
  color: var(--hs-blue);
}
.hs-pref-count {
  margin: 0 0 12px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #64748b;
}
.hs-pref-list {
  display: grid;
  gap: 8px;
}
.hs-pref-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto auto;
  gap: 12px 14px;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 12px;
  box-shadow: var(--hs-shadow);
}
.hs-pref-row-ord {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: var(--hs-blue);
  font-size: 0.78rem;
  font-weight: 800;
}
.hs-pref-row-main {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
.hs-pref-row-main .hs-list-ico {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #64748b;
  flex-shrink: 0;
}
.hs-pref-school {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}
.hs-pref-school a {
  color: var(--hs-navy);
  text-decoration: none;
}
.hs-pref-school a:hover { color: var(--hs-blue); }
.hs-pref-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  color: #64748b;
  font-size: 0.78rem;
}
.hs-pref-meta span + span::before {
  content: "·";
  margin-right: 10px;
  color: #cbd5e1;
}
.hs-pref-stats {
  display: flex;
  gap: 14px;
  text-align: right;
}
.hs-pref-stats > div {
  min-width: 64px;
}
.hs-pref-stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 2px;
}
.hs-pref-stats strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--hs-navy);
  font-variant-numeric: tabular-nums;
}
.hs-pref-remove {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #fecaca;
  background: #fff;
  color: #b91c1c;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.hs-pref-remove:hover {
  background: #fef2f2;
}
.hs-pref-remove:disabled {
  opacity: 0.6;
  cursor: wait;
}
.hs-pref-empty {
  padding: 28px 20px;
  text-align: center;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
}
.hs-pref-empty strong {
  display: block;
  margin-bottom: 6px;
  color: var(--hs-navy);
  font-size: 1.02rem;
}
.hs-pref-empty p {
  margin: 0 0 14px;
  color: #64748b;
  font-size: 0.92rem;
}
@media (max-width: 860px) {
  .hs-pref-row {
    grid-template-columns: 28px minmax(0, 1fr);
  }
  .hs-pref-stats {
    grid-column: 2;
    justify-content: flex-start;
    text-align: left;
  }
  .hs-pref-actions {
    grid-column: 2;
  }
}
@media print {
  .hs-pref-rail { display: none !important; }
}

/* ========== Yabancı dil liseleri ========== */
.hs-dil-page {
  padding: 18px 0 40px;
}
.hs-dil-note {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid #fde68a;
  border-radius: 10px;
  background: #fffbeb;
  color: #92400e;
  font-size: 0.92rem;
  line-height: 1.55;
}
.hs-dil-filters {
  margin-bottom: 14px;
}
.hs-ara-pager a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid #d5e0ee;
  border-radius: 6px;
  background: #fff;
  color: var(--hs-navy);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}
.hs-ara-pager a:hover {
  border-color: #93c5fd;
  background: #eff6ff;
}
