/* ============================================================
   SIMGETEK — Ortak bilesenler (header · footer · buton · kart)
   Tum olculer Figma "Son Hali" sayfasindan birebir alinmistir.
   ============================================================ */

/* ------------------------------------------------------------
   HEADER   Figma: 1440x89 · #041E42 · logo 180x49 @ (96,20)
            nav Mont 500/16/19.5 · gap 24 · sag kenar 96
   ------------------------------------------------------------ */
.header {
  position: relative;
  z-index: 60;
  height: 89px;
  background: var(--color-navy);
  color: var(--color-white);
}

.header--sticky { position: sticky; top: 0; }

/* Ic sayfalarda header, kahraman bolumunun UZERINE biner (Figma'da ikisi de
   y=0'da). body'ye has-overlay-header sinifi verilir.
   Ortak katmanda durmali: her sayfa grubu kendi CSS'ini yuklüyor. */
.has-overlay-header .header {
  position: absolute;
  inset-inline: 0;
  top: 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo { display: block; flex: 0 0 auto; }
.header__logo img { width: 180px; height: 49px; object-fit: contain; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__link {
  font-size: 16px;
  line-height: 19.5px;
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease);
}
.header__link:hover,
.header__link[aria-current="page"] { color: var(--color-sky); }

/* Ana menu ogeleri — acilir menu tetikleyicisi. Oge header boyunca uzanir
   (align-self: stretch): panel top:100% ile header'in alt kenarindan sarkar
   ve tetikleyiciden panele gecerken hover kopmaz. */
.header__nav--primary { align-self: stretch; }
.header__item { position: relative; display: flex; align-items: center; align-self: stretch; }

/* Dil secici — Figma: gap 11, ayirici 1px x 14px, pasif dil #ADADAD */
.header__lang { display: flex; align-items: center; gap: 11px; }
.header__lang-sep { width: 1px; height: 14px; background: currentColor; opacity: .9; }
.header__lang a { font-size: 16px; line-height: 19.5px; font-weight: 500; }
.header__lang a[aria-current="true"] { color: var(--color-white); }
.header__lang a:not([aria-current="true"]) { color: #ADADAD; }
.header__lang a:not([aria-current="true"]):hover { color: var(--color-white); }

/* Mobil menu butonu */
.header__burger {
  display: none;
  width: 24px; height: 24px;
  color: var(--color-white);
}
.header__burger svg { width: 100%; height: 100%; }


/* Gorseli olmayan slot — tasarimda 43 yerde 256x256'lik dama tahtasi
   placeholder'i var. Onu buyutup basmak yerine notr bir doku gosteriyoruz.
   Gercek gorseller gelince bu sinif kaldirilacak. */
.img-missing {
  background: repeating-conic-gradient(#dfe4ec 0% 25%, #eef1f6 0% 50%) 0 0 / 24px 24px;
}


/* ------------------------------------------------------------
   MEGA MENU   Header'in altina acilan tam genislikte panel
   ------------------------------------------------------------ */
/* Acilir menu — Figma MENU 2 (2386:13981) overlay'leri 2390:14081 / 2386:13980:
   beyaz #FFF, r11, golgesiz/kontursuz; header'in alt kenarindan sarkar.
   Ilk madde ustten 25, madde adimi 42 (metin 20 + 22), altta 37; sol ic
   bosluk 20, sag ~56 (Figma 52-61). Panelin sol kenari tetikleyici metnin
   20px solunda -> madde metinleri tetikleyiciyle hizali. Maddeler Mont
   500/16/19.5 lacivert. (Eski hali: panel tetikleyici genisliginde kaliyor,
   metin disari tasiyordu.) */
.megamenu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 165px;
  width: max-content;
  padding: 14px 56px 26px 20px;
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: 11px;
  z-index: 55;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.megamenu[data-open="true"] { opacity: 1; visibility: visible; transform: none; }

.megamenu__grid { display: flex; flex-direction: column; }
.megamenu__link {
  display: block;
  padding: 11px 0;                 /* 19.5 + 22 = 41.5 ~ Figma adimi 42 */
  font-size: 16px;
  line-height: 19.5px;
  font-weight: 500;
  color: var(--color-navy);
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease);
}
.megamenu__link:hover { color: var(--color-blue); }
.megamenu__link[data-placeholder="true"] { opacity: .72; }


/* ------------------------------------------------------------
   BUTONLAR
   Figma birincil: #041E42 · pad 10/16 · Mont 600/16/19.5 · beyaz
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: var(--text-button-l-size);
  line-height: var(--text-button-l-lh);
  font-weight: var(--text-button-l-weight);
  border-radius: 0;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              transform var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--color-navy); color: var(--color-white); }
.btn--primary:hover { background: var(--color-blue); }

.btn--light { background: var(--color-white); color: var(--color-navy); }
.btn--light:hover { background: var(--color-sky); }

.btn--outline {
  background: transparent;
  color: var(--color-white);
  box-shadow: inset 0 0 0 1px currentColor;
}
.btn--outline:hover { background: rgba(255, 255, 255, .1); }

.btn[disabled], .btn[aria-disabled="true"] {
  opacity: .45;
  pointer-events: none;
}

/* Metin bagi — "Tümünü Gör", "İncele" */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-navy);
  transition: gap var(--dur) var(--ease), color var(--dur-fast) var(--ease);
}
.link-more:hover { gap: 12px; color: var(--color-blue); }
.link-more svg { width: 1em; height: 1em; flex: 0 0 auto; }


/* ------------------------------------------------------------
   FOOTER

   Masaustu (Figma 2322:11594, 1440x420, #041E42)
     logo    164x106 @ (96, 44)
     kolonlar 992x304 @ (405, 21) · row gap 40
     sosyal  106x24  @ (1236, 341) · gap 16
     ayirici 1246px  @ (96, 377)
     alt satir @ (96, 389) · linkler gap 53 · telif saga hizali
     dekor    213x216 @ (-26, 217)

   Mobil (Figma 2398:14994 -> Footer Mobil, 390x964)
     kolonlar 2'li grid @ (25, 18) · sutunlar 186px / 155px · satir arasi 16
     kolon linkleri Mont 400/13/15.85 · gap 5   (masaustunde 14/17.07 · gap 8)
     logo 164x106 @ (113, 774) · ortali
     yasal satir @ (42, 897) Mont 400/10/12.19 · telif @ (94, 921)

   Sosyal ikonlar + dil secici DOM'da Iletisim kolonunun icinde; masaustunde
   CSS ile sag alta tasiniyor. Tek DOM, iki duzen, icerik tekrari yok.
   ------------------------------------------------------------ */
.footer {
  position: relative;
  height: 420px;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
}

.footer__decor {
  position: absolute;
  left: -26px;
  top: 217px;
  width: 213px;
  height: 216px;
  /* Simgetek marka deseni — Figma "Vector 338" (%22 opaklik SVG'de gomulu) */
  background: url("../assets/icons/decor-diamond.svg") no-repeat center / contain;
  pointer-events: none;
}

.footer__brand {
  position: absolute;
  left: var(--page-pad);
  top: 44px;
  width: 164px;
}
.footer__brand img { width: 164px; height: 106px; object-fit: contain; }

.footer__top {
  position: relative;
  padding: 21px 43px 0 405px;
}
.footer__cols { display: flex; gap: 40px; }

.footer__col { display: flex; flex-direction: column; }
.footer__col-title {
  font-size: 16px;
  line-height: 19.5px;
  font-weight: 600;
  color: var(--color-sky);
  margin-bottom: 7px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
/* display:block sart: satir ici birakilirsa <li>'nin devraldigi 19.5px
   satir yuksekligi baglantinin 17.07px'ini ezer ve her satirda +2.43px
   birikir — 10 ogeli kolonda ~24px kaymaya yol acar. */
.footer__col li { display: block; }
.footer__col a {
  display: block;
  font-size: 14px;
  line-height: 17.07px;
  font-weight: 400;
  color: var(--color-white);
  transition: color var(--dur-fast) var(--ease);
}
.footer__col a:hover { color: var(--color-sky); }

/* Figma'daki kolon genislikleri ve dikey bosluklari (birebir) */
.footer__col--kurumsal        { width: 97px; }
.footer__col--uretim          { width: 110px; }
.footer__col--uretim .footer__col-title { margin-bottom: 6px; }
.footer__col--urunler         { width: 127px; }
.footer__col--entegre-cozumler{ width: 150px; }
.footer__col--entegre-cozumler .footer__col-title { margin-bottom: 8px; }
.footer__col--projeler        { width: 168px; }
.footer__col--projeler .footer__col-title { margin-bottom: 8px; }
.footer__col--projeler ul     { gap: 5px; }
.footer__col--iletisim        { width: 140px; }
.footer__col--iletisim .footer__col-title { margin-bottom: 15px; }

/* Sosyal + dil blogu — masaustunde sag alta mutlak konumlu */
.footer__aside {
  position: absolute;
  right: 98px;
  top: 341px;
}
.footer__social { display: flex; gap: 16px; }
.footer__social a { width: 24px; height: 24px; color: var(--color-white); }
.footer__social svg { width: 24px; height: 24px; }
.footer__social a:hover { color: var(--color-sky); }
/* Dil secici yalniz mobil tasarimda var */
.footer__lang { display: none; }

.footer__rule {
  position: relative;
  height: 1px;
  background: var(--color-white);
  margin: 52px var(--page-pad) 0;
}

.footer__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  /* 11px: Figma'da ayirici bir LINE (0 yukseklik, 1px kontur); bizde
     1px'lik gercek eleman oldugu icin bosluk 1 azaltiliyor. */
  padding: 11px var(--page-pad) 0;
}
.footer__legal { display: flex; gap: 53px; flex-wrap: wrap; }
.footer__bottom a,
.footer__copy {
  font-size: 12px;
  line-height: 14.63px;
  font-weight: 400;
  color: var(--color-white);
}
.footer__bottom a { transition: color var(--dur-fast) var(--ease); }
.footer__bottom a:hover { color: var(--color-sky); }


/* ------------------------------------------------------------
   Tablet (768-1199) — Figma'da tasarlanmadi, turetildi.
   Kolonlar 3'e duser, logo akisa girer.
   ------------------------------------------------------------ */
/* ------------------------------------------------------------
   Ara genislikler (768-1439) — Figma'da TASARLANMADI, turetildi.

   Masaustu ana menusu 870px yer istiyor; logo (180) + dil (80) +
   sayfa dolgusu (192) ile birlikte ~1370px'in altinda satira sigmiyor
   ve sayfaya yatay kaydirma ekliyordu. Iki kademe:
     1280-1439 : menu 14px/aralik 14 ile sikistirilir, sigar
     < 1280    : mobil cekmece (hamburger) devreye girer
   ------------------------------------------------------------ */
@media (min-width: 1280px) and (max-width: 1439px) {
  .header__nav--primary { gap: 14px; }
  .header__link { font-size: 14px; }
  .header__lang { gap: 8px; }
}

@media (max-width: 1279px) {
  .header__nav--primary { display: none; }
  .header__burger { display: block; }
}

/* ------------------------------------------------------------
   Mobil cekmece (hamburger menusu) — Figma'da TASARLANMADI, turetildi.
   Burger'in gorundugu her genislikte (<1280) kullanilir. Kabuk mobil
   header'in devami: lacivert, 52px ust serit, logo ve kapat ikonu burger
   ile ayni yerde. Gruplar Footer Mobil'deki bes grup; baslik header
   baglanti stili (Mont 500/16 beyaz), alt maddeler footer stili
   (Mont 400/14). Sagdan kayar; 768+ genislikte 400px panel + karartma.
   Print'te base.css gizler.
   ------------------------------------------------------------ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(4, 30, 66, .55);
  visibility: hidden;
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0, 0, .58, 1), visibility 300ms;
}
.drawer[data-open="true"] { visibility: visible; opacity: 1; }
.drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  background: var(--color-navy);
  color: var(--color-white);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0, 0, .58, 1);
}
.drawer[data-open="true"] .drawer__panel { transform: none; }
.drawer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 16px;
}
.drawer__bar .header__logo img { width: 120px; height: 32px; }
.drawer__close {
  width: 24px; height: 24px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-white);
  cursor: pointer;
}
.drawer__close svg { width: 100%; height: 100%; }
.drawer__nav { padding: 8px 16px 32px; }
.drawer__groups, .drawer__list, .drawer__utility { list-style: none; margin: 0; padding: 0; }
.drawer__group + .drawer__group,
.drawer__utility { border-top: 1px solid rgba(255, 255, 255, .15); }
.drawer__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  border: 0;
  background: none;
  color: var(--color-white);
  font: inherit;
  font-size: 16px;
  line-height: 19.5px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.drawer__toggle svg {
  width: 20px; height: 20px;
  flex: 0 0 auto;
  transition: transform 200ms cubic-bezier(0, 0, .58, 1);
}
.drawer__toggle[aria-expanded="true"] { color: var(--color-sky); }
.drawer__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer__list { padding: 0 0 12px 16px; display: flex; flex-direction: column; gap: 4px; }
.drawer__list[hidden] { display: none; }   /* display:flex UA'nin [hidden] kuralini ezmesin */
.drawer__list a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  line-height: 17.07px;
  font-weight: 400;
  color: var(--color-white);
}
.drawer__list .drawer__all { font-weight: 600; color: var(--color-sky); }
.drawer__utility { margin-top: 8px; padding-top: 8px; }
.drawer__link {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  line-height: 19.5px;
  font-weight: 500;
  color: var(--color-white);
}
.drawer__link[aria-current="page"] { color: var(--color-sky); }
.drawer__nav .header__lang { display: flex; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .15); }

@media (min-width: 768px) {
  .drawer__panel { width: 400px; box-shadow: -8px 0 32px rgba(0, 0, 0, .3); }
}
@media (min-width: 1280px) {
  .drawer { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .drawer, .drawer__panel, .drawer__toggle svg { transition: none; }
}

@media (max-width: 1199px) {
  .footer { height: auto; padding-bottom: 24px; }
  .footer__brand { position: static; margin: 24px auto 0; }
  .footer__top { padding: 24px var(--page-pad) 0; }
  .footer__cols { flex-wrap: wrap; gap: 28px 32px; }
  .footer__col,
  .footer__col--kurumsal, .footer__col--uretim, .footer__col--urunler,
  .footer__col--entegre-cozumler, .footer__col--projeler, .footer__col--iletisim {
    width: calc(33.333% - 22px);
  }
  .footer__aside { position: static; margin-top: 24px; }
  .footer__social { justify-content: flex-start; }
  .footer__rule { margin-top: 24px; }
}


/* ------------------------------------------------------------
   Mobil kabuk (<768px) — Figma mobil tasarimina gore
   ------------------------------------------------------------ */
@media (max-width: 767px) {
  /* HEADER — Figma: 390x52, ic 358x32, logo 120x32, menu 24x24 */
  .header { height: 52px; }
  .header__logo img { width: 120px; height: 32px; }
  .header__nav--primary { display: none; }
  .header__burger { display: block; }

  /* FOOTER */
  .footer { height: auto; padding-bottom: 31px; }
  .footer__decor { display: none; }

  .footer__top { padding: 18px 25px 0; }
  /* Figma: 1. sutun x=25, 2. sutun x=211 -> 165px iz + 21px bosluk.
     Metin sarma genisligini de Figma'daki metin kutularina yaklastirir. */
  .footer__cols {
    display: grid;
    grid-template-columns: 165px 155px;
    column-gap: 21px;
    row-gap: 16px;
  }
  .footer__col,
  .footer__col--kurumsal, .footer__col--uretim, .footer__col--urunler,
  .footer__col--entegre-cozumler, .footer__col--projeler, .footer__col--iletisim {
    width: auto;
  }
  .footer__col-title,
  .footer__col--uretim .footer__col-title,
  .footer__col--entegre-cozumler .footer__col-title,
  .footer__col--projeler .footer__col-title,
  .footer__col--iletisim .footer__col-title { margin-bottom: 8px; }
  .footer__col ul,
  .footer__col--projeler ul { gap: 5px; }
  .footer__col a { font-size: 13px; line-height: 15.85px; }
  /* Figma'da her kolonun metin kutusu farkli genislikte ve Entegre kolonu
     13px yerine 14px kullaniyor. Bu tutarsizliklar satir sayisini, o da
     kolon yuksekligini degistirdigi icin birebir aktariliyor.
     (Tasarimciya bildirilecek — bkz. teslim notlari.) */
  /* Kurumsal kolonu Figma'da 112px; ama oradaki metin yazım hatalı
     ("Sosyal Sorululuk"). Doğru yazım 112'ye sığmayıp satır kırıyor ve
     kolonu 14px uzatıyordu. 140'a çıkarıldı: "Sosyal Sorumluluk" tek
     satır, "KVKK ve İş Etiği Kuralları" tasarımdaki gibi iki satır. */
  .footer__col--kurumsal        a { max-width: 140px; }
  .footer__col--uretim          a { max-width: 155px; }
  .footer__col--urunler         a { max-width: 144px; }
  .footer__col--entegre-cozumler a { max-width: 150px; font-size: 14px; line-height: 17.07px; }
  .footer__col--projeler        a { max-width: 151px; }
  .footer__col--iletisim        a { max-width: 129px; }
  .footer__col--iletisim .footer__aside { margin-top: 8px; }

  .footer__brand { position: static; margin: 32px auto 0; }

  .footer__aside {
    position: static;
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 26px;
  }
  .footer__social a, .footer__social svg { width: 20px; height: 20px; }
  .footer__lang {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    line-height: 15.85px;
    font-weight: 600;
    color: var(--color-white);
  }
  .footer__lang svg { width: 16px; height: 16px; }
  .footer__flag {
    width: 19px; height: 12px;
    background: linear-gradient(#E30A17, #E30A17);
    border-radius: 1px;
    flex: 0 0 auto;
  }

  .footer__rule { display: none; }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 17px 25px 0;
    text-align: center;
  }
  .footer__legal { gap: 6px; justify-content: center; }
  .footer__bottom a, .footer__copy { font-size: 10px; line-height: 12.19px; }
}

/* 390 altı Figma'da tasarlanmadı; kural "390 düzeni akışkan küçülür".
   Footer bunu yapmıyordu: sabit 165/155 iz + 25px kenar dolgusu 391px
   yer istiyor, 320'de ikinci kolon viewport dışına taşıp SİTENİN HER
   SAYFASINDA yatay kaydırma üretiyordu. İzler oranı koruyarak akışkan. */
@media (max-width: 389px) {
  .footer__top,
  .footer__bottom { padding-inline: 16px; }
  .footer__cols {
    grid-template-columns: minmax(0, 165fr) minmax(0, 155fr);
    column-gap: 16px;
  }
  .footer__col--kurumsal a, .footer__col--uretim a, .footer__col--urunler a,
  .footer__col--entegre-cozumler a, .footer__col--projeler a,
  .footer__col--iletisim a { max-width: 100%; }
}


/* ------------------------------------------------------------
   BLOG KARTI  —  Figma: 350x440
     gorsel (kapak) · alt panel 350x183 @ y=257 · #041E42 @ %38
     etiket cipi 115x37 @ (31,18) · #9BCBEB @ %52
     tarih 14/17.07 w500 · baslik 20/24.38 w500 · ozet 16/19.5 w400
     "Devamı" 16/32 w500  (Figma temel stili Albert, karakter
     override'i Montserrat — override kazaniyor)
   ------------------------------------------------------------ */
.blogcard {
  position: relative;
  display: block;
  width: 350px;
  height: 440px;
  overflow: hidden;
  color: #000;
  isolation: isolate;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.blogcard:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(4, 30, 66, .22); }

.blogcard__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
/* KONTRAST NOTU — tasarim burada siyah metni lacivert %38 ortu uzerine
   koyuyor. Sonuc kart gorseline bagli:
     acik tonlu foto  -> ~8:1   (AA gecer)
     orta tonlu foto  -> ~4.0:1 (AA'nin biraz altinda)
     koyu tonlu foto  -> ~1.9:1 (okunmaz)
   Gorseller henuz gelmedi. Tasarima birebir uyuyoruz; kart gorselleri
   ACIK TONLU secilmeli. Koyu gorsel kullanilacaksa asagidaki iki satiri
   acmak yeterli (ortu koyulasir, metin beyaza doner) — tasarimcinin onayi
   gerektiren gorunur bir degisiklik oldugu icin varsayilan degil. */
.blogcard__panel {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 183px;
  background: rgba(4, 30, 66, .38);
  z-index: -1;
}
/* .blogcard__panel { background: rgba(4, 30, 66, .72); } */
/* .blogcard { color: #fff; } */
.blogcard__chip {
  position: absolute;
  left: 31px; top: 18px;
  min-width: 115px;
  padding: 10px;
  text-align: center;
  background: rgba(155, 203, 235, .52);
  font-size: 14px; line-height: 17.07px; font-weight: 500;
}
.blogcard__meta {
  position: absolute;
  left: 31px; right: 31px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
}
.blogcard__date  { font-size: 14px; line-height: 17.07px; font-weight: 500; margin-bottom: 5px; }
.blogcard__title { font-size: 20px; line-height: 24.38px; font-weight: 500; margin-bottom: 9px; }
.blogcard__text  { font-size: 16px; line-height: 19.5px; font-weight: 400; margin-bottom: 5px;
                   display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blogcard__more  { font-size: 16px; line-height: 32px; font-weight: 500; text-decoration: underline;
                   text-underline-offset: 3px; }


/* ------------------------------------------------------------
   KIRINTI YOLU — Urunler ve Entegre Cozumler sayfalari paylasiyor.
   Konumlandirma sayfa CSS'inde; burada yalnizca yapisi ve tipografisi.
   ------------------------------------------------------------ */
.crumbs ol { display: flex; flex-wrap: nowrap; align-items: center; gap: 4px; }
.crumbs li { display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.crumbs a, .crumbs span {
  font-size: 13px;
  line-height: 15.85px;
  font-weight: 400;
  color: var(--color-white);
}
.crumbs a:hover { text-decoration: underline; }
.crumbs li + li::before { content: "›"; color: var(--color-white); opacity: .8; }
