:root {
  --ebso-cookie-primary: #1e376e;
  --ebso-cookie-primary-dark: #15274e;
  --ebso-cookie-accent: #ffc107;
  --ebso-cookie-ink: #1a212b;
  --ebso-cookie-muted: #728197;
  --ebso-cookie-border: #d9e0ea;
  --ebso-cookie-soft: #f6f8fb;
}

.ebso-cookie-modal-open { overflow: hidden; }
.ebso-cookie-banner[hidden], .ebso-cookie-backdrop[hidden], .ebso-cookie-modal[hidden], .ebso-cookie-view[hidden] { display: none !important; }

.ebso-cookie-banner,
.ebso-cookie-backdrop,
.ebso-cookie-modal {
  box-sizing: border-box;
  font-family: Lexend, Arial, sans-serif;
}

.ebso-cookie-banner *,
.ebso-cookie-modal * { box-sizing: border-box; }

.ebso-cookie-banner {
  position: fixed;
  z-index: 2147483000;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: calc(100vw - 48px);
  max-width: 1180px;
  margin: 0;
  padding: 24px;
  transform: translateX(-50%);
  border: 1px solid var(--ebso-cookie-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(15, 39, 75, .2);
  color: var(--ebso-cookie-ink);
}

.ebso-cookie-banner__copy { max-width: 670px; }

.ebso-cookie-banner__title,
.ebso-cookie-modal__title {
  margin: 0 0 7px;
  color: var(--ebso-cookie-ink);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
}

.ebso-cookie-banner__text,
.ebso-cookie-modal__intro,
.ebso-cookie-category__description,
.ebso-cookie-inventory__intro,
.ebso-cookie-group__description {
  margin: 0;
  color: var(--ebso-cookie-muted);
  font-size: .9rem;
  line-height: 1.6;
}

.ebso-cookie-banner__policy {
  display: inline-block;
  margin-top: 8px;
  color: var(--ebso-cookie-primary);
  font-size: .85rem;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ebso-cookie-banner__actions {
  display: grid;
  flex: 0 0 305px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ebso-cookie-banner__actions .ebso-cookie-btn--primary { grid-column: 1 / -1; }

.ebso-cookie-modal__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.ebso-cookie-btn,
.ebso-cookie-close {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  font: 650 .86rem/1.3 Lexend, Arial, sans-serif;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.ebso-cookie-btn:focus-visible,
.ebso-cookie-close:focus-visible,
.ebso-cookie-tab:focus-visible,
.ebso-cookie-filter:focus-visible,
.ebso-cookie-inventory-link:focus-visible,
.ebso-cookie-search input:focus-visible,
.ebso-cookie-table-wrap:focus-visible,
.ebso-cookie-switch input:focus-visible + .ebso-cookie-switch__track,
.ebso-cookie-banner__policy:focus-visible {
  outline: 3px solid rgba(255, 193, 7, .45);
  outline-offset: 2px;
}

.ebso-cookie-btn--primary { background: var(--ebso-cookie-primary); color: #fff; }
.ebso-cookie-btn--primary:hover { background: var(--ebso-cookie-primary-dark); }
.ebso-cookie-btn--secondary { border-color: var(--ebso-cookie-border); background: var(--ebso-cookie-soft); color: var(--ebso-cookie-ink); }
.ebso-cookie-btn--secondary:hover { background: #eceff4; }
.ebso-cookie-btn--outline { border-color: var(--ebso-cookie-primary); background: #fff; color: var(--ebso-cookie-primary); }
.ebso-cookie-btn--outline:hover { background: #eef3fb; }

.ebso-cookie-backdrop {
  position: fixed;
  z-index: 2147483500;
  inset: 0;
  background: rgba(13, 25, 49, .62);
  backdrop-filter: blur(2px);
}

.ebso-cookie-modal {
  position: fixed;
  z-index: 2147483600;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: min(940px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 32px));
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 90px rgba(0, 0, 0, .3);
  color: var(--ebso-cookie-ink);
}

.ebso-cookie-modal__header,
.ebso-cookie-modal__footer {
  flex: 0 0 auto;
  padding: 20px 24px;
}

.ebso-cookie-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--ebso-cookie-border);
}

.ebso-cookie-close {
  min-height: 36px;
  padding: 7px 11px;
  border-color: var(--ebso-cookie-border);
  background: var(--ebso-cookie-soft);
  color: var(--ebso-cookie-ink);
}

.ebso-cookie-gpc { display: block; margin-top: 4px; color: var(--ebso-cookie-primary); font-weight: 650; }

.ebso-cookie-tabs {
  display: flex;
  flex: 0 0 auto;
  gap: 4px;
  padding: 10px 24px 0;
  border-bottom: 1px solid var(--ebso-cookie-border);
  background: #fafbfd;
}

.ebso-cookie-tab {
  position: relative;
  min-height: 42px;
  padding: 8px 14px 11px;
  border: 0;
  background: transparent;
  color: var(--ebso-cookie-muted);
  font: 650 .87rem/1.3 Lexend, Arial, sans-serif;
  cursor: pointer;
}

.ebso-cookie-tab::after {
  position: absolute;
  right: 12px;
  bottom: -1px;
  left: 12px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: transparent;
  content: "";
}

.ebso-cookie-tab--active { color: var(--ebso-cookie-ink); }
.ebso-cookie-tab--active::after { background: var(--ebso-cookie-accent); }

.ebso-cookie-modal__body {
  min-height: 0;
  padding: 20px 24px;
  overflow-y: auto;
}

.ebso-cookie-modal__footer { border-top: 1px solid var(--ebso-cookie-border); }
.ebso-cookie-category-list { display: grid; gap: 12px; }

.ebso-cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--ebso-cookie-border);
  border-radius: 12px;
  background: #fff;
}

.ebso-cookie-category--necessary { background: #f5f8fb; }
.ebso-cookie-category__copy { min-width: 0; }
.ebso-cookie-category__title { display: block; margin-bottom: 3px; color: var(--ebso-cookie-ink); font-size: .95rem; }

.ebso-cookie-required {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: #eaf6ed;
  color: #23713b;
  font-size: .68rem;
  font-weight: 700;
  white-space: nowrap;
}

.ebso-cookie-switch { position: relative; flex: 0 0 auto; width: 46px; height: 26px; cursor: pointer; }
.ebso-cookie-switch input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.ebso-cookie-switch__track { display: block; width: 100%; height: 100%; border-radius: 999px; background: #cbd4e1; transition: background .2s; }

.ebso-cookie-switch__track::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .18);
  content: "";
  transition: transform .2s;
}

.ebso-cookie-switch input:checked + .ebso-cookie-switch__track { background: var(--ebso-cookie-primary); }
.ebso-cookie-switch input:checked + .ebso-cookie-switch__track::after { transform: translateX(20px); }

.ebso-cookie-inventory-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 14px;
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: var(--ebso-cookie-primary);
  font: 650 .84rem/1.3 Lexend, Arial, sans-serif;
  cursor: pointer;
}

.ebso-cookie-inventory-link::after { margin-left: 7px; content: "→"; }
.ebso-cookie-inventory__intro { margin-bottom: 16px; }

.ebso-cookie-inventory__toolbar {
  display: grid;
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--ebso-cookie-border);
  border-radius: 12px;
  background: #fafbfd;
}

.ebso-cookie-search { display: grid; gap: 6px; }
.ebso-cookie-search__label { color: var(--ebso-cookie-ink); font-size: .78rem; font-weight: 650; }

.ebso-cookie-search input {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid #cbd4e1;
  border-radius: 9px;
  background: #fff;
  color: var(--ebso-cookie-ink);
  font: 400 .84rem/1.4 Lexend, Arial, sans-serif;
}

.ebso-cookie-inventory__filters { display: flex; flex-wrap: wrap; gap: 7px; }

.ebso-cookie-filter {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--ebso-cookie-border);
  border-radius: 999px;
  background: #fff;
  color: var(--ebso-cookie-muted);
  font: 650 .72rem/1.3 Lexend, Arial, sans-serif;
  cursor: pointer;
}

.ebso-cookie-filter--active { border-color: var(--ebso-cookie-primary); background: #eef3fb; color: var(--ebso-cookie-primary-dark); }
.ebso-cookie-inventory__summary, .ebso-cookie-inventory__empty { margin: 12px 0 0; color: var(--ebso-cookie-muted); font-size: .76rem; }
.ebso-cookie-inventory__list { display: grid; gap: 18px; margin-top: 11px; }

.ebso-cookie-group { overflow: hidden; border: 1px solid var(--ebso-cookie-border); border-radius: 12px; }
.ebso-cookie-group__header { padding: 14px 16px; border-bottom: 1px solid var(--ebso-cookie-border); background: var(--ebso-cookie-soft); }

.ebso-cookie-group__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 3px;
  color: var(--ebso-cookie-ink);
  font-size: .94rem;
  font-weight: 700;
}

.ebso-cookie-group__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 23px;
  height: 23px;
  padding: 0 7px;
  border-radius: 999px;
  background: #e4eaf3;
  color: var(--ebso-cookie-primary);
  font-size: .68rem;
}

.ebso-cookie-table-wrap { max-width: 100%; overflow-x: auto; }

.ebso-cookie-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--ebso-cookie-ink);
  font-size: .75rem;
  line-height: 1.5;
}

.ebso-cookie-table th,
.ebso-cookie-table td {
  padding: 11px 13px;
  border-bottom: 1px solid #edf1f5;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.ebso-cookie-table th { background: #fff; color: var(--ebso-cookie-muted); font-size: .69rem; font-weight: 700; text-transform: uppercase; }
.ebso-cookie-table th:first-child, .ebso-cookie-table td:first-child { width: 21%; }
.ebso-cookie-table th:nth-child(2), .ebso-cookie-table td:nth-child(2) { width: 41%; }
.ebso-cookie-table th:nth-child(3), .ebso-cookie-table td:nth-child(3) { width: 18%; }
.ebso-cookie-table th:last-child, .ebso-cookie-table td:last-child { width: 20%; }
.ebso-cookie-table tbody tr:last-child td { border-bottom: 0; }

.ebso-cookie-table__name {
  padding: 2px 5px;
  border-radius: 5px;
  background: #eef3fb;
  color: var(--ebso-cookie-primary-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .7rem;
  white-space: normal;
}

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

@media (max-width: 767.98px) {
  .ebso-cookie-banner {
    bottom: 12px;
    display: block;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    padding: 18px;
    overflow-y: auto;
    border-radius: 14px;
  }

  .ebso-cookie-banner__actions { display: grid; grid-template-columns: 1fr; margin-top: 16px; }
  .ebso-cookie-banner__actions .ebso-cookie-btn--primary { grid-column: auto; }
  .ebso-cookie-banner__actions .ebso-cookie-btn { width: 100%; }
  .ebso-cookie-modal__header, .ebso-cookie-modal__footer { padding: 16px; }
  .ebso-cookie-tabs { padding-right: 16px; padding-left: 16px; }
  .ebso-cookie-modal__body { padding: 16px 12px 16px 16px; }
  .ebso-cookie-modal__footer { display: grid; grid-template-columns: 1fr; }
  .ebso-cookie-category { align-items: flex-start; }
  .ebso-cookie-table-wrap { scrollbar-width: thin; }
}

@media (prefers-reduced-motion: reduce) {
  .ebso-cookie-btn,
  .ebso-cookie-switch__track,
  .ebso-cookie-switch__track::after { transition: none; }
}

.ebso-consent-embed {
  position: relative;
  min-height: 152px;
  overflow: hidden;
  border: 1px solid var(--ebso-cookie-border);
  border-radius: 12px;
  background: linear-gradient(135deg, #f7f9fc, #edf2f8);
  font-family: Lexend, Arial, sans-serif;
}

.ebso-consent-embed__gate {
  display: flex;
  min-height: inherit;
  padding: 24px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ebso-consent-embed__gate-inner { max-width: 520px; }
.ebso-consent-embed__gate strong { display: block; margin-bottom: 7px; color: var(--ebso-cookie-primary-dark); font-size: .92rem; }
.ebso-consent-embed__gate p { margin: 0 0 14px; color: var(--ebso-cookie-muted); font-size: .76rem; line-height: 1.6; }

.ebso-consent-embed__gate button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--ebso-cookie-primary);
  border-radius: 8px;
  background: #fff;
  color: var(--ebso-cookie-primary);
  font: 650 .74rem/1.3 Lexend, Arial, sans-serif;
  cursor: pointer;
}

.ebso-consent-embed__gate button:hover { background: #eaf0f9; }
.ebso-consent-embed__content { display: none; }
.ebso-consent-embed--allowed { min-height: 0; overflow: visible; border: 0; background: transparent; }
.ebso-consent-embed--allowed > .ebso-consent-embed__gate { display: none; }
.ebso-consent-embed--allowed > .ebso-consent-embed__content { display: block; }

.ebso-consent-embed--video { min-height: 320px; }
.ebso-consent-embed--map { min-height: 480px; margin: 3rem 0; }
.ebso-consent-embed--map .ebso-consent-embed__content .gMap { margin-top: 0 !important; }

@media (max-width: 767.98px) {
  .ebso-consent-embed__gate { padding: 20px; }
  .ebso-consent-embed--video { min-height: 220px; }
}

/* Çerez politikası sayfası */
.ebso-cookie-policy {
  background: #f4f7fb;
  color: var(--ebso-cookie-ink);
  font-family: Lexend, Arial, sans-serif;
}

/* Politika sayfasında sabit menüyü akışta tut; genel sticky kuralının
   hero'yu örtmesini ve footer öncesinde yapay bir boşluk oluşturmasını önle. */
body.cookie-policy-page #stickymenu,
body.cookie-policy-page #stickymenu.sticky {
  position: sticky;
  top: 0;
}

body.cookie-policy-page #stickymenu.sticky + .ebso-cookie-policy {
  top: auto;
  margin-top: 0;
  margin-bottom: 0;
}

.ebso-cookie-policy *,
.ebso-cookie-policy *::before,
.ebso-cookie-policy *::after { box-sizing: border-box; }

.ebso-cookie-policy__hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 84px;
  background:
    radial-gradient(circle at 88% 12%, rgba(79, 116, 189, .38), transparent 30%),
    linear-gradient(135deg, #0d1d3a 0%, #17366f 100%);
  color: #fff;
}

.ebso-cookie-policy__hero::after {
  position: absolute;
  right: -110px;
  bottom: -225px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(255, 255, 255, .035), 0 0 0 108px rgba(255, 255, 255, .025);
  content: "";
}

.ebso-cookie-policy__hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 80px;
  align-items: end;
}

.ebso-cookie-policy__eyebrow,
.ebso-cookie-policy__section-kicker {
  display: block;
  color: #d6a924;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ebso-cookie-policy__hero h1 {
  max-width: 760px;
  margin: 11px 0 18px;
  color: #fff;
  font-size: clamp(2.45rem, 5vw, 4.65rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.ebso-cookie-policy__lead {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1rem, 1.65vw, 1.18rem);
  line-height: 1.75;
}

.ebso-cookie-policy__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
}

.ebso-cookie-policy__primary-action,
.ebso-cookie-policy__outline-action {
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 9px;
  font: 650 .95rem/1.3 Lexend, Arial, sans-serif;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.ebso-cookie-policy__primary-action {
  background: #fff;
  box-shadow: 0 8px 24px rgba(4, 16, 39, .18);
  color: var(--ebso-cookie-primary);
}

.ebso-cookie-policy__primary-action:hover { transform: translateY(-1px); background: #f4f7fb; }

.ebso-cookie-policy__text-link {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .4);
  text-underline-offset: 5px;
}

.ebso-cookie-policy__text-link:hover { color: #fff; text-decoration-color: #fff; }

.ebso-cookie-policy__meta {
  margin: 0;
  padding: 0 0 0 24px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.ebso-cookie-policy__meta div + div { margin-top: 19px; }
.ebso-cookie-policy__meta dt { margin-bottom: 3px; color: rgba(255, 255, 255, .65); font-size: .8rem; font-weight: 500; text-transform: uppercase; }
.ebso-cookie-policy__meta dd { margin: 0; color: #fff; font-size: 1rem; font-weight: 650; }

.ebso-cookie-policy__container {
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}

.ebso-cookie-policy__site-switch {
  display: flex;
  width: max-content;
  max-width: calc(100% - 24px);
  margin: -27px auto 48px;
  padding: 6px;
  overflow-x: auto;
  border: 1px solid var(--ebso-cookie-border);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(18, 42, 82, .13);
  white-space: nowrap;
}

.ebso-cookie-policy__site-switch span,
.ebso-cookie-policy__site-switch a {
  display: inline-flex;
  min-height: 40px;
  padding: 8px 14px;
  align-items: center;
  border-radius: 8px;
  font-size: 1rem;
}

.ebso-cookie-policy__site-switch span { color: var(--ebso-cookie-muted); }
.ebso-cookie-policy__site-switch a { color: var(--ebso-cookie-primary); font-weight: 700; text-decoration: none; }
.ebso-cookie-policy__site-switch a:hover { background: #f2f5fa; }
.ebso-cookie-policy__site-switch a.is-active { background: var(--ebso-cookie-primary); color: #fff; }

.ebso-cookie-policy__principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 62px;
  overflow: hidden;
  border: 1px solid var(--ebso-cookie-border);
  border-radius: 15px;
  background: #fff;
}

.ebso-cookie-policy__principles article {
  min-height: 148px;
  padding: 25px;
  align-items: flex-start;
}

.ebso-cookie-policy__principles article + article { border-left: 1px solid var(--ebso-cookie-border); }
.ebso-cookie-policy__principles h2 { margin: 0 0 8px; color: var(--ebso-cookie-primary-dark); font-size: 1.125rem; line-height: 1.45; }
.ebso-cookie-policy__principles p { margin: 0; color: var(--ebso-cookie-muted); font-size: 1rem; line-height: 1.65; }

.ebso-cookie-policy__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(42px, 7vw, 100px);
  max-width: 1130px;
  margin: 0 auto;
  align-items: start;
}

.ebso-cookie-policy__toc {
  position: sticky;
  top: 126px;
  display: grid;
  padding: 18px 0;
  border-top: 2px solid var(--ebso-cookie-primary);
  border-bottom: 1px solid var(--ebso-cookie-border);
}

.ebso-cookie-policy__toc strong { margin-bottom: 11px; color: var(--ebso-cookie-primary-dark); font-size: 1rem; font-weight: 700; }
.ebso-cookie-policy__toc a { padding: 9px 0; color: var(--ebso-cookie-muted); font-size: 1rem; font-weight: 700; line-height: 1.45; text-decoration: none; }
.ebso-cookie-policy__toc a:hover { color: var(--ebso-cookie-primary); }
.ebso-cookie-policy__content { min-width: 0; }

.ebso-cookie-policy__section {
  scroll-margin-top: 125px;
  padding: 0 0 56px;
  border-bottom: 1px solid var(--ebso-cookie-border);
}

.ebso-cookie-policy__section + .ebso-cookie-policy__section { padding-top: 56px; }
.ebso-cookie-policy__section:last-child { border-bottom: 0; }
.ebso-cookie-policy__section-kicker { margin-bottom: 9px; color: #8c6c0c; }
.ebso-cookie-policy__section h2 { margin: 0 0 20px; color: var(--ebso-cookie-primary-dark); font-size: clamp(1.45rem, 2.6vw, 2rem); letter-spacing: -.025em; line-height: 1.25; }
.ebso-cookie-policy__section > p,
.ebso-cookie-policy__section-heading p { margin: 0 0 16px; color: #53647c; font-size: 1rem; line-height: 1.75; }
.ebso-cookie-policy__section > p:last-child { margin-bottom: 0; }
.ebso-cookie-policy__section a { color: var(--ebso-cookie-primary); font-size: 1rem; font-weight: 700; text-underline-offset: 3px; }

.ebso-cookie-policy__definition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 25px;
}

.ebso-cookie-policy__definition-grid article {
  padding: 20px;
  border: 1px solid var(--ebso-cookie-border);
  border-radius: 11px;
  background: #fff;
}

.ebso-cookie-policy__definition-grid h3 { margin: 0 0 7px; color: var(--ebso-cookie-primary-dark); font-size: 1.05rem; }
.ebso-cookie-policy__definition-grid p { margin: 0; color: var(--ebso-cookie-muted); font-size: .95rem; line-height: 1.7; }

.ebso-cookie-policy__section--answer {
  margin-top: 56px;
  padding: 36px !important;
  border: 0;
  border-radius: 16px;
  background: var(--ebso-cookie-primary-dark);
  color: #fff;
}

.ebso-cookie-policy__section--answer .ebso-cookie-policy__section-kicker { color: #e0b73c; }
.ebso-cookie-policy__section--answer h2 { color: #fff; }
.ebso-cookie-policy__answer-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 38px; }
.ebso-cookie-policy__answer-main { padding-right: 35px; border-right: 1px solid rgba(255, 255, 255, .18); }
.ebso-cookie-policy__answer-main strong { display: block; margin-bottom: 11px; color: #fff; font-size: 1.125rem; }
.ebso-cookie-policy__answer-main p { margin: 0; color: rgba(255, 255, 255, .78); font-size: 1rem; line-height: 1.75; }
.ebso-cookie-policy__answer-grid ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.ebso-cookie-policy__answer-grid li { position: relative; padding-left: 23px; color: rgba(255, 255, 255, .84); font-size: .95rem; line-height: 1.6; }
.ebso-cookie-policy__answer-grid li::before { position: absolute; top: 3px; left: 0; color: #e0b73c; content: "✓"; font-weight: 700; }

.ebso-cookie-policy__section-heading {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 26px;
}

.ebso-cookie-policy__section-heading h2 { margin-bottom: 12px; }
.ebso-cookie-policy__section-heading p { max-width: 620px; margin-bottom: 0; }
.ebso-cookie-policy__outline-action { flex: 0 0 auto; border-color: var(--ebso-cookie-primary); background: transparent; color: var(--ebso-cookie-primary); }
.ebso-cookie-policy__outline-action:hover { background: #eaf0f9; }

.ebso-cookie-policy__category {
  overflow: hidden;
  border: 1px solid var(--ebso-cookie-border);
  border-radius: 13px;
  background: #fff;
}

.ebso-cookie-policy__category + .ebso-cookie-policy__category { margin-top: 18px; }
.ebso-cookie-policy__category > header { display: flex; gap: 22px; padding: 22px; align-items: flex-start; justify-content: space-between; border-bottom: 1px solid var(--ebso-cookie-border); background: #f9fafc; }
.ebso-cookie-policy__category h3 { margin: 0 0 6px; color: var(--ebso-cookie-primary-dark); font-size: 1.125rem; }
.ebso-cookie-policy__category header p { max-width: 600px; margin: 0; color: var(--ebso-cookie-muted); font-size: .95rem; line-height: 1.65; }

.ebso-cookie-policy__badge {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff1ca;
  color: #765900;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}

.ebso-cookie-policy__badge--required { background: #e8f3ec; color: #267044; }
.ebso-cookie-policy__table-wrap { max-width: 100%; overflow-x: auto; }
.ebso-cookie-policy__category table { width: 100%; min-width: 760px; border-collapse: collapse; table-layout: fixed; color: var(--ebso-cookie-ink); font-size: .9rem; line-height: 1.6; }
.ebso-cookie-policy__category th,
.ebso-cookie-policy__category td { padding: 14px 16px; border-bottom: 1px solid #edf1f5; text-align: left; vertical-align: top; overflow-wrap: anywhere; }
.ebso-cookie-policy__category th { background: #fff; color: var(--ebso-cookie-muted); font-size: .8rem; letter-spacing: .035em; text-transform: uppercase; }
.ebso-cookie-policy__category th:first-child,
.ebso-cookie-policy__category td:first-child { width: 20%; }
.ebso-cookie-policy__category th:nth-child(2),
.ebso-cookie-policy__category td:nth-child(2) { width: 40%; }
.ebso-cookie-policy__category th:nth-child(3),
.ebso-cookie-policy__category td:nth-child(3) { width: 21%; }
.ebso-cookie-policy__category th:last-child,
.ebso-cookie-policy__category td:last-child { width: 19%; }
.ebso-cookie-policy__category tbody tr:last-child td { border-bottom: 0; }
.ebso-cookie-policy__category code { padding: 3px 6px; border-radius: 5px; background: #edf2fa; color: var(--ebso-cookie-primary-dark); font-size: .875rem; }
.ebso-cookie-policy__category td strong,
.ebso-cookie-policy__category td span { display: block; }
.ebso-cookie-policy__category td strong { color: var(--ebso-cookie-primary-dark); font-size: .9rem; }
.ebso-cookie-policy__category td span { margin-top: 3px; color: var(--ebso-cookie-muted); font-size: .825rem; }

.ebso-cookie-policy__contact-card {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1px;
  margin: 25px 0;
  overflow: hidden;
  border: 1px solid var(--ebso-cookie-border);
  border-radius: 12px;
  background: var(--ebso-cookie-border);
}

.ebso-cookie-policy__contact-card div { min-width: 0; padding: 18px; background: #fff; }
.ebso-cookie-policy__contact-card span { display: block; margin-bottom: 6px; color: var(--ebso-cookie-muted); font-size: .8rem; text-transform: uppercase; }
.ebso-cookie-policy__contact-card strong,
.ebso-cookie-policy__contact-card a { color: var(--ebso-cookie-primary-dark); font-size: 1rem; font-weight: 700; line-height: 1.6; overflow-wrap: anywhere; }
.ebso-cookie-policy__muted { padding-left: 15px; border-left: 3px solid #d6a924; color: var(--ebso-cookie-muted) !important; font-size: .95rem !important; }

.ebso-cookie-policy__primary-action:focus-visible,
.ebso-cookie-policy__outline-action:focus-visible,
.ebso-cookie-policy__site-switch a:focus-visible,
.ebso-cookie-policy__toc a:focus-visible,
.ebso-cookie-policy__text-link:focus-visible,
.ebso-cookie-policy__table-wrap:focus-visible {
  outline: 3px solid rgba(255, 193, 7, .52);
  outline-offset: 3px;
}

@media (max-width: 991.98px) {
  .ebso-cookie-policy__hero { padding: 58px 0 72px; }
  .ebso-cookie-policy__hero-grid { grid-template-columns: minmax(0, 1fr) 280px; gap: 42px; }
  .ebso-cookie-policy__principles { grid-template-columns: 1fr; }
  .ebso-cookie-policy__principles article { min-height: 0; }
  .ebso-cookie-policy__principles article + article { border-top: 1px solid var(--ebso-cookie-border); border-left: 0; }
  .ebso-cookie-policy__layout { grid-template-columns: 1fr; }
  .ebso-cookie-policy__toc { position: static; grid-template-columns: repeat(2, 1fr); column-gap: 24px; }
  .ebso-cookie-policy__toc strong { grid-column: 1 / -1; }
}

@media (max-width: 767.98px) {
  .ebso-cookie-policy__hero { padding: 42px 0 62px; }
  .ebso-cookie-policy__hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .ebso-cookie-policy__hero h1 { font-size: 2.5rem; }
  .ebso-cookie-policy__meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 17px 0 0; border-top: 1px solid rgba(255, 255, 255, .2); border-left: 0; }
  .ebso-cookie-policy__meta div + div { margin-top: 0; }
  .ebso-cookie-policy__meta div:last-child { grid-column: 1 / -1; }
  .ebso-cookie-policy__site-switch { justify-content: flex-start; margin-bottom: 34px; }
  .ebso-cookie-policy__site-switch span { display: none; }
  .ebso-cookie-policy__principles { margin-bottom: 42px; }
  .ebso-cookie-policy__principles article { padding: 20px; }
  .ebso-cookie-policy__toc { grid-template-columns: 1fr; }
  .ebso-cookie-policy__toc strong { grid-column: auto; }
  .ebso-cookie-policy__section { padding-bottom: 42px; }
  .ebso-cookie-policy__section + .ebso-cookie-policy__section { padding-top: 42px; }
  .ebso-cookie-policy__definition-grid { grid-template-columns: 1fr; }
  .ebso-cookie-policy__section--answer { margin-top: 42px; padding: 26px !important; }
  .ebso-cookie-policy__answer-grid { grid-template-columns: 1fr; gap: 25px; }
  .ebso-cookie-policy__answer-main { padding: 0 0 25px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .ebso-cookie-policy__section-heading { display: block; }
  .ebso-cookie-policy__outline-action { width: 100%; margin-top: 8px; }
  .ebso-cookie-policy__category > header { display: block; }
  .ebso-cookie-policy__badge { display: inline-block; margin-top: 14px; }
  .ebso-cookie-policy__contact-card { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .ebso-cookie-policy__primary-action,
  .ebso-cookie-policy__outline-action { transition: none; }
}
