:root {
  --navy: #003b73;
  --blue: #006fb9;
  --cyan: #39a6d8;
  --logo-cyan: #20a8c0;
  --deep-blue: #012c56;
  --midnight: #071b34;
  --red: #d8212a;
  --ink: #142033;
  --muted: #68788d;
  --line: #dbe5ef;
  --soft: #f2f6fa;
  --white: #fff;
  --shadow: 0 22px 55px rgba(5, 30, 60, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.header-ribbon {
  color: rgba(255, 255, 255, 0.9);
  background: var(--midnight);
  font-size: 12px;
  font-weight: 700;
}

.top-strip__inner {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 7px 0;
}

.top-strip__inner span:first-child {
  margin-right: auto;
  color: #b9dfff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(1, 44, 86, 0.12);
  backdrop-filter: blur(16px);
}

.masthead {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 248px;
}

.brand__mark {
  width: 100px;
  height: 100px;
}

.brand__text {
  display: grid;
  gap: 2px;
  color: var(--deep-blue);
  line-height: 1.1;
}

.brand__text strong {
  font-size: 19px;
  font-weight: 900;
}

.brand__text small {
  max-width: 250px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-ataturk {
  width: 100px;
  height: 82px;
  object-fit: contain;
  flex: 0 0 auto;
  margin-left: 2px;
}

.ticker {
  background: var(--red);
  color: var(--white);
}

.ticker__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 42px;
}

.ticker__label {
  flex: 0 0 auto;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ticker__viewport {
  position: relative;
  flex: 1 1 auto;
  height: 100%;
  overflow: hidden;
}

.ticker__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.ticker__item.is-active {
  transform: translateY(0);
  opacity: 1;
}

.ticker__item.is-leaving {
  transform: translateY(-100%);
  opacity: 0;
}

.ticker__item a,
.ticker__item span {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticker__item a:hover {
  text-decoration: underline;
}

.nav-cluster {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
  flex: 1 1 auto;
  min-width: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
  padding: 5px;
  color: var(--deep-blue);
  font-size: 13px;
  font-weight: 850;
  background: rgba(0, 59, 115, 0.06);
  border: 1px solid rgba(0, 59, 115, 0.08);
  border-radius: 999px;
}

.main-nav a,
.main-nav .main-nav__label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--white);
  background: var(--navy);
}

.main-nav .main-nav__label {
  color: var(--muted);
  cursor: default;
}

.main-nav__item {
  position: relative;
}

.main-nav__caret {
  font-size: 10px;
  opacity: 0.65;
}

.main-nav__dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  padding-top: 12px;
  z-index: 70;
}

.main-nav__item:hover .main-nav__dropdown,
.main-nav__item:focus-within .main-nav__dropdown {
  display: block;
}

.main-nav__panel {
  position: relative;
  min-width: 262px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(5, 30, 60, 0.22);
  display: grid;
  gap: 2px;
}

.main-nav__panel::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 26px;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}

.main-nav__panel a,
.main-nav__panel .main-nav__label {
  display: flex;
  min-height: 0;
  padding: 12px 16px;
  border-radius: 9px;
  color: var(--deep-blue);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  justify-content: flex-start;
}

.main-nav__panel a:hover {
  color: var(--white);
  background: var(--navy);
}

.main-nav__panel .main-nav__label {
  color: var(--muted);
  cursor: default;
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 50px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle__bar {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--deep-blue);
  transition: transform 0.25s, opacity 0.2s;
}

.site-header.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.main-nav__expand {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

.online-menu {
  position: relative;
  flex: 0 0 auto;
}

.online-menu__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #b3121b);
  box-shadow: 0 12px 24px rgba(216, 33, 42, 0.24);
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 36px;
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 300ms, background 300ms, color 300ms;
}

.button--primary {
  color: #1a3654;
  background: #ffb950;
}

.button--secondary {
  color: #1a3654;
  background: #3dcae2;
}

.button--primary:hover,
.button--secondary:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  color: #1a3654;
  text-decoration: none;
}

.button:disabled,
.button[disabled] {
  opacity: 0.55;
  box-shadow: none;
  cursor: not-allowed;
}

.online-menu__panel {
  position: absolute;
  right: 0;
  top: 100%;
  display: none;
  width: 290px;
  margin-top: 0;
  padding: 22px 10px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  background-clip: padding-box;
  z-index: 80;
}

.online-menu:hover .online-menu__panel,
.online-menu:focus-within .online-menu__panel {
  display: grid;
}

.online-menu__panel a,
.online-menu__panel .main-nav__label {
  padding: 13px 14px;
  border-radius: 10px;
  color: var(--deep-blue);
  font-weight: 800;
}

.online-menu__panel a:hover {
  background: var(--soft);
}

.online-menu__panel .main-nav__label {
  color: var(--muted);
  cursor: default;
}

.header-search {
  position: relative;
  flex: 0 0 auto;
}

.header-search__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 59, 115, 0.12);
  border-radius: 999px;
  background: rgba(0, 59, 115, 0.06);
  color: var(--navy);
  cursor: pointer;
}

.header-search__toggle:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.header-search__form {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  display: none;
  align-items: center;
  gap: 6px;
  width: 320px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 80;
}

.header-search.is-open .header-search__form {
  display: flex;
}

.header-search__form input {
  flex: 1 1 auto;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}

.header-search__form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
}

.search-hero {
  padding: 56px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--midnight), var(--blue));
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 22px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.search-box input {
  flex: 1 1 auto;
  min-width: 0;
  height: 52px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
}

.search-box input:focus {
  outline: none;
}

.search-box button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
}

.search-msg,
.search-count {
  margin-top: 22px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.search-msg+.search-count {
  margin-top: 8px;
  font-weight: 600;
  opacity: 0.92;
}

.search-results {
  padding: 0 0 80px;
}

.search-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 28px 0 8px;
  border-bottom: 1px solid var(--line);
}

.search-tab {
  padding: 12px 22px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.search-tab:hover {
  color: var(--navy);
}

.search-tab.is-active {
  color: var(--navy);
  border-bottom-color: var(--red);
}

.search-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-list.is-active {
  display: block;
}

.search-list li {
  padding: 18px 20px;
}

.search-list li:nth-child(odd) {
  background: var(--soft);
  border-radius: 10px;
}

.search-list li a {
  font-size: 17px;
  font-weight: 800;
  color: var(--red);
}

.search-list li a:hover {
  text-decoration: underline;
}

.search-list__excerpt {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--midnight);
}

.hero__media {
  width: 100%;
  height: clamp(300px, 45.4vw, 660px);
  background: url("/static/img/img.ecaa73c2fbbb.jpeg") no-repeat center / cover;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 0;
  color: var(--deep-blue);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

h3 {
  color: var(--deep-blue);
}

.quick-access {
  margin-top: 40px;
}

.quick-access__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid rgba(0, 59, 115, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-access a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 24px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: transform 180ms ease, background 180ms ease;
}

.quick-access a:hover {
  background: var(--logo-cyan);
  transform: translateY(-2px);
}

.quick-access a:hover strong {
  color: var(--white);
}

.quick-access a:last-child {
  border-right: 0;
}

.quick-access strong {
  color: var(--deep-blue);
  font-size: 19px;
  line-height: 1.3;
  transition: color 180ms ease;
}

.section {
  padding: 92px 0;
}

.section--muted {
  background: linear-gradient(180deg, var(--soft), #fff);
}

.section__header {
  margin-bottom: 30px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(5, 30, 60, 0.06);
}

.info-card p {
  color: var(--muted);
  font-weight: 800;
}

.info-card a {
  color: var(--blue);
  font-weight: 900;
}

.section__more {
  display: inline-block;
  margin-top: 6px;
  color: var(--blue);
  font-weight: 800;
}

.section__more:hover {
  text-decoration: underline;
}

.child-list {
  padding: 30px 0 60px;
}

.duyuru-listesi {
  padding: 30px 0;
}

.duyuru-listesi ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.duyuru-listesi li {
  position: relative;
  top: 0;
  padding: 30px;
  border-radius: 4px;
  background: #ffb950;
  color: #3f3f3f;
  font-size: 16px;
  transition: top 300ms;
}

.duyuru-listesi li + li {
  margin-top: 15px;
}

.duyuru-listesi li:hover {
  top: -10px;
}

.duyuru-listesi p {
  margin: 0 0 10px;
  color: #3f3f3f;
  font-size: 18px;
  line-height: 28px;
}

.duyuru-listesi .icerik-satir {
  display: block;
  width: auto;
  margin-left: 0;
}

.duyuru-listesi .icerik-sutun {
  grid-column: auto;
}

.duyuru-listesi .btn_orange,
.duyuru-listesi .btn_blue {
  display: inline-block;
  width: auto;
  min-width: 201px;
  max-width: none;
  margin-top: 0;
  padding: 16px 36px;
  border-radius: 4px;
  background: #3dcae2;
  color: #1a3654;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  transition: box-shadow 300ms;
}

.duyuru-listesi .btn_orange:hover,
.duyuru-listesi .btn_blue:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
  color: #1a3654;
  text-decoration: none;
}

.duyuru-tarih {
  margin-top: 10px;
  color: #3f3f3f;
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 640px) {
  .duyuru-listesi li {
    padding: 20px;
  }

  .duyuru-listesi .btn_orange,
  .duyuru-listesi .btn_blue {
    min-width: 0;
  }
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.content-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(5, 30, 60, 0.06);
  transition: transform 0.15s, box-shadow 0.15s;
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(5, 30, 60, 0.13);
}

.content-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  background: var(--soft);
  overflow: hidden;
}

.content-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card__placeholder {
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 2px;
  opacity: 0.5;
}

.content-card__body {
  display: grid;
  gap: 8px;
  padding: 18px 20px 22px;
}

.content-card__date {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.content-card__body h3 {
  font-size: 17px;
  line-height: 1.35;
  color: var(--ink);
}

.content-card__body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .content-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .content-card-grid {
    grid-template-columns: 1fr;
  }
}

.feature-band {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: start;
  padding: 40px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(5, 30, 60, 0.08);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-list a {
  min-height: 86px;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  background: var(--soft);
  color: var(--deep-blue);
  font-weight: 900;
}

.page-hero {
  padding: 82px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--midnight), var(--blue));
}

.page-hero h1 {
  margin-bottom: 12px;
}

.content-page {
  max-width: 900px;
  padding: 58px 0 90px;
  line-height: 1.8;
}

.content-page a,
.duyuru-listesi a {
  color: #c9222c;
}

.content-page a:hover,
.duyuru-listesi a:hover {
  color: #3dcae2;
}

.content-page a.btn_orange,
.content-page a.btn_blue,
.content-page a.btn_white,
.content-page a.document_href,
.content-page a.kredi_link,
.content-page a.dokuman {
  color: #1a3654;
}

.content-page .tabbed-nav li a,
.content-page .tabbed-nav li a:hover {
  color: #0d243c;
}

.sayfa-hero {
  width: 100vw;
  height: 272px;
  margin: -58px 0 46px calc(50% - 50vw);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.icerik-satir {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 30px;
  align-items: start;
  width: min(1140px, calc(100vw - 40px));
  margin-left: calc(450px - min(570px, 50vw - 20px));
}

.icerik-satir--kapak {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(24px, calc(50vw - 570px));
  padding-right: max(24px, calc(50vw - 570px));
  align-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.content-page .icerik-satir--kapak h1,
.content-page .icerik-satir--kapak h2 {
  margin: 0;
  color: var(--white);
  text-align: center;
}

.icerik-sutun {
  min-width: 0;
  grid-column: span 12;
}

.icerik-sutun--1 { grid-column: span 1; }
.icerik-sutun--2 { grid-column: span 2; }
.icerik-sutun--3 { grid-column: span 3; }
.icerik-sutun--4 { grid-column: span 4; }
.icerik-sutun--5 { grid-column: span 5; }
.icerik-sutun--6 { grid-column: span 6; }
.icerik-sutun--7 { grid-column: span 7; }
.icerik-sutun--8 { grid-column: span 8; }
.icerik-sutun--9 { grid-column: span 9; }
.icerik-sutun--10 { grid-column: span 10; }
.icerik-sutun--11 { grid-column: span 11; }
.icerik-sutun--12 { grid-column: span 12; }

.icerik-sutun > :first-child {
  margin-top: 0;
}

.icerik-sutun > :last-child {
  margin-bottom: 0;
}

.content-page .icerik-sutun img {
  max-width: 100%;
  height: auto;
}

.sayfa-hero--bant {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.content-page--hub {
  padding-bottom: 0;
}

.content-page--with-yurt-tabs {
  padding-bottom: 38px;
}

.yurt-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
  padding: 0 0 80px;
}

@media (max-width: 620px) {
  .yurt-buttons {
    grid-template-columns: 1fr;
  }
}

.content-page .sayfa-hero--bant h1 {
  width: min(1140px, calc(100vw - 40px));
  margin: 0;
  color: var(--white);
  font-size: 36px;
  font-weight: 600;
  text-align: left;
}

.content-page .color_white {
  color: var(--white);
}

.liste-filtre {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin: 0 0 28px;
}

.liste-filtre__etiket {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.liste-filtre button {
  padding: 6px 12px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: background 180ms, color 180ms;
}

.liste-filtre button:hover {
  background: var(--soft);
}

.liste-filtre button.is-active {
  background: var(--logo-cyan);
  color: var(--white);
  font-weight: 700;
}

.dokuman-listesi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.medya-listesi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.medya-listesi--video {
  grid-template-columns: repeat(2, 1fr);
}

.medya-oge {
  margin: 0;
}

.medya-oge[hidden] {
  display: none;
}

.medya-oge > a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.medya-oge img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 250ms;
}

.medya-listesi--video .medya-oge img {
  aspect-ratio: 16 / 9;
}

.medya-oge > a:hover img {
  transform: scale(1.04);
}

.medya-oge figcaption {
  margin-top: 10px;
  color: var(--deep-blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 940px) {
  .medya-listesi {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .medya-listesi,
  .medya-listesi--video {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dokuman {
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 18px 88px 18px 20px;
  position: relative;
  border: 1px solid var(--navy);
  border-radius: 4px;
  color: #1a3654;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  transition: background 300ms, color 300ms;
}

.dokuman:hover {
  background: #1a3654;
  color: var(--white);
}

.dokuman::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 72px;
  height: 100%;
  background: url("/uploads/frontend-img/download-icon-docs.svg") no-repeat center / 18px auto;
}

.dokuman:hover::after {
  filter: brightness(0) invert(1);
}

.dokuman[hidden] {
  display: none;
}

@media (max-width: 940px) {
  .dokuman-listesi {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .dokuman-listesi {
    grid-template-columns: 1fr;
  }
}

.icerik-satir--panel {
  position: relative;
  gap: 0;
  align-items: stretch;
  margin-top: -40px;
}

.sayfa-hero + .icerik-satir--panel {
  margin-top: -86px;
}

.icerik-satir--panel > .icerik-sutun {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px;
}

.icerik-satir--panel > .icerik-sutun--9 {
  padding: 65px 65px 65px 15px;
}

@media (max-width: 640px) {
  .icerik-satir--panel > .icerik-sutun--9 {
    padding: 20px;
  }
}

.icerik-satir--kartlar > .icerik-sutun > div {
  position: relative;
  height: 100%;
}

.icerik-satir--kartlar .kredi_link {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.content-page .icerik-satir--kartlar h5 {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  color: #1a3654;
  font-size: 18px;
}

.content-page .icerik-satir--kartlar h5 img {
  height: 64px;
  margin-right: 15px;
}

.content-page .tabbed-nav {
  margin: 50px 0;
  text-align: center;
}

.content-page .tabbed-nav ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(13, 36, 60, 0.48);
  list-style: none;
}

.content-page .tabbed-nav li {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

.content-page .tabbed-nav li a {
  position: relative;
  display: block;
  padding: 10px 15px;
  color: #0d243c;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  opacity: 0.48;
  text-decoration: none;
}

.content-page .tabbed-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #0d243c;
  transition: width 300ms;
}

.content-page .tabbed-nav li a:hover,
.content-page .tabbed-nav li.active a {
  opacity: 1;
  text-decoration: none;
}

.content-page .tabbed-nav li a:hover::after,
.content-page .tabbed-nav li.active a::after {
  width: 100%;
}

.content-page .yurt_tablolari td {
  border: 0;
}

.content-page .yurt_tablolari tr:first-child td {
  color: #878787;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.content-page .yurt_tablolari tr:nth-child(2) td:nth-child(2),
.content-page .yurt_tablolari tr:nth-child(2) td:nth-child(3),
.content-page .yurt_tablolari tr:nth-child(2) td:nth-child(4) {
  border-bottom: 1px solid #1a3654;
}

.content-page .item_desc {
  color: #3f3f3f;
  font-size: 14px;
  line-height: 22px;
}

.content-page .image-gallery-isotope {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.content-page .image-gallery-isotope .grid-sizer {
  display: none;
}

.content-page .image-gallery-isotope .grid-item {
  height: 186px;
  overflow: hidden;
  border-radius: 4px;
}

.content-page .image-gallery-isotope .grid-item--width2 {
  grid-column: span 2;
  height: 388px;
}

.content-page .image-gallery-isotope .item-image,
.content-page .image-gallery-isotope .item-image a {
  display: block;
  height: 100%;
}

.content-page .image-gallery-isotope img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms;
}

.content-page .image-gallery-isotope .grid-item:hover img {
  transform: scale(1.2);
}

@media (max-width: 940px) {
  .content-page .image-gallery-isotope {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-page .image-gallery-isotope .grid-item,
  .content-page .image-gallery-isotope .grid-item--width2 {
    height: 200px;
  }
}

.content-page .color_white a {
  color: #fff;
}

.content-page .color_blue {
  color: #3dcae2;
}

.content-page .color_orange {
  color: #ffb950;
}

/* Eski editorden gelen sari metinleri beyaz zeminde okunabilir tut. */
.content-page [style*="color: #ffff00"],
.content-page [style*="color:#ffff00"] {
  padding: 0 0.12em;
  border-radius: 2px;
  background: #fff1a6;
  box-shadow: 0 1px 3px rgba(13, 36, 60, 0.2);
  color: #5f4800 !important;
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.content-page .f_size_14,
.content-page .f_size_14 a {
  font-size: 14px;
  line-height: 22px;
}

.content-page .f_size_16 {
  font-size: 16px;
}

.content-page .f_size_32 {
  font-size: 32px;
  line-height: 44px;
}

.content-page .f_size_44 {
  font-size: 44px;
}

.content-page .f_size_60 {
  font-size: 60px;
  line-height: 64px;
}

.content-page .f_weight_400 {
  font-weight: 400;
}

.content-page .f_weight_600,
.content-page .b_f_weight_600 {
  font-weight: 600;
}

.content-page .f_weight_700,
.content-page .b_f_weight_700 {
  font-weight: 700;
}

.content-page .b_f_weight_800 {
  font-weight: 800;
}

@media (max-width: 1440px) {
  .content-page .f_size_60 {
    font-size: 40px;
    line-height: 44px;
  }
}

@media (max-width: 768px) {
  .content-page .f_size_32 {
    font-size: 22px;
    line-height: 34px;
  }

  .content-page .f_size_60 {
    font-size: 30px;
    line-height: 34px;
  }
}

.content-page .docs_cont {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.content-page .document_href {
  position: relative;
  display: flex;
  flex: 0 0 calc(33.3333% - 20px);
  max-width: calc(33.3333% - 20px);
  flex-direction: column;
  justify-content: center;
  min-height: 84px;
  margin: 10px;
  padding: 14px 86px 14px 20px;
  border-radius: 4px;
  background: #3dcae2;
  text-decoration: none;
  transition: box-shadow 300ms;
}

.content-page .document_href:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}

.content-page .document_href .doc_item {
  display: block;
}

.content-page .document_href .document_title {
  display: inline-block;
  vertical-align: middle;
  color: #1a3654;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.content-page .document_href .download_icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 72px;
  height: 100%;
  border-radius: 4px;
  background: #ffb950;
}

.content-page .document_href .download_icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 20px;
  transform: translate3d(-50%, -50%, 0);
}

.content-page .docs_cont.docs_all .document_href {
  border: 1px solid var(--navy);
  background: transparent;
}

.content-page .docs_cont.docs_all .download_icon {
  background: transparent;
}

@media (max-width: 768px) {
  .content-page .document_href {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .content-page .document_href {
    flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}

.akordeon__oge {
  margin: 15px 0;
}

.akordeon__oge summary {
  position: relative;
  padding: 20px 56px 20px 30px;
  border-radius: 4px;
  background: #f3f3f3;
  color: #0a396b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
  transition: background 300ms, color 300ms;
}

.akordeon__oge summary::-webkit-details-marker {
  display: none;
}

.akordeon__oge summary::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 300ms;
}

.akordeon__oge summary:hover,
.akordeon__oge[open] summary {
  background: #1a3654;
  color: var(--white);
}

.akordeon__oge[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.akordeon__icerik {
  padding: 22px 30px 6px;
}

.akordeon__icerik > :first-child {
  margin-top: 0;
}

@media (max-width: 640px) {
  .akordeon__oge summary {
    padding: 20px 40px 20px 15px;
    font-size: 17px;
  }

  .akordeon__oge summary::after {
    right: 14px;
  }

  .akordeon__icerik {
    padding: 20px 15px 6px;
  }
}

.content-page h1 {
  max-width: none;
  margin-bottom: 34px;
  color: var(--deep-blue);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.content-page h2 {
  margin-bottom: 16px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
}

.content-page h3 {
  margin-bottom: 14px;
  font-size: 19px;
  font-weight: 700;
}

.content-page h5 {
  font-size: 16px;
}

.content-page .btn_orange {
  display: inline-block;
  width: 100%;
  min-width: 201px;
  max-width: 201px;
  margin-top: 12px;
  padding: 16px 36px;
  border-radius: 4px;
  background: #ffb950;
  color: #1a3654;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  transition: box-shadow 300ms;
}

.content-page .btn_orange:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
  color: #1a3654;
  text-decoration: none;
}

@media (max-width: 768px) {
  .content-page .btn_orange {
    min-width: 0;
    max-width: none;
  }
}

@media (min-width: 1441px) {
  .sayfa-hero {
    height: 412px;
  }
}

@media (max-width: 940px) {
  .icerik-satir {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .icerik-satir {
    grid-template-columns: 1fr;
  }

  .icerik-sutun {
    grid-column: span 1;
  }
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 8px 0;
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s, opacity 0.2s;
}

.video-thumb:hover img {
  transform: scale(1.04);
  opacity: 0.85;
}

.video-thumb__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(216, 33, 42, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.video-thumb__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #fff;
}

.video-gallery figure {
  margin: 0;
}

.video-gallery figcaption {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
}

@media (max-width: 720px) {
  .video-gallery {
    grid-template-columns: 1fr;
  }
}

.galeri {
  margin: 18px 0 8px;
}

.galeri__pencere {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.galeri__serit {
  display: flex;
  height: 100%;
  gap: 10px;
  transition: transform 350ms ease;
}

.galeri__slayt {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.galeri__slayt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.galeri__oynat {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.galeri__oynat::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  background: url("/uploads/frontend-img/play-btn.svg") no-repeat center / contain;
  transform: translate(-50%, -50%);
}

.galeri__kucukler {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.galeri__kucukler::-webkit-scrollbar {
  display: none;
}

.galeri__kucuk {
  position: relative;
  flex: 0 0 calc(100% / 6);
  height: 125px;
  padding: 0;
  border: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.galeri__kucuk::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 200ms;
}

.galeri__kucuk.is-active::before {
  opacity: 0;
}

.galeri__kucuk--video::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  background: url("/uploads/frontend-img/play-btn.svg") no-repeat center / contain;
  transform: translate(-50%, -50%);
}

.galeri__kucuk.is-active.galeri__kucuk--video::after {
  display: none;
}

@media (max-width: 940px) {
  .galeri__pencere {
    height: 320px;
  }

  .galeri__oynat::after {
    width: 50px;
    height: 50px;
  }

  .galeri__kucuk {
    flex: 0 0 calc(100% / 4);
    height: 80px;
  }
}

@media (max-width: 640px) {
  .galeri__pencere {
    height: 250px;
  }

  .galeri__kucuk {
    flex: 0 0 calc(100% / 3);
    height: 65px;
  }
}

.content-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0 8px;
}

.content-gallery a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: var(--soft);
}

.content-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}

.content-gallery a:hover img {
  transform: scale(1.05);
}

@media (max-width: 720px) {
  .content-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.aysis-frame {
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.aysis-frame iframe {
  display: block;
  width: 100%;
  min-height: 640px;
  border: 0;
}

.doc-downloads {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.doc-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-weight: 700;
}

.doc-link:hover {
  border-color: var(--blue);
  background: var(--white);
}

.doc-link__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 34px;
  border-radius: 7px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.surec-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 18px 0;
}

.surec-link {
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.surec-link:hover {
  border-color: var(--blue);
  background: var(--white);
}

.surec-link strong {
  font-size: 18px;
  color: var(--navy);
}

.surec-link span {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 560px) {
  .surec-links {
    grid-template-columns: 1fr;
  }
}

.bagis-form {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}

.bagis-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: end;
}

.bagis-form__grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.bagis-form__row {
  display: grid;
  gap: 6px;
}

.bagis-form label {
  font-weight: 700;
  color: var(--ink);
}

.bagis-form input,
.bagis-form select {
  height: 50px;
  padding: 0 14px;
  font-size: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  font-family: inherit;
}

.bagis-form input:focus,
.bagis-form select:focus {
  outline: none;
  border-color: var(--blue);
}

.bagis-form input[readonly] {
  background: var(--soft);
  color: var(--navy);
  font-weight: 700;
}

.bagis-card {
  margin: 6px 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  display: grid;
  gap: 16px;
}

.bagis-card legend {
  padding: 0 8px;
  font-weight: 900;
  color: var(--navy);
}

.bagis-card__types {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.bagis-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.bagis-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
}

.bagis-form .button--primary {
  justify-self: start;
  min-height: 54px;
  padding: 0 40px;
  font-size: 17px;
}

.bagis-form__note {
  color: var(--muted);
  font-size: 14px;
}

.bagis-sonuc {
  max-width: 620px;
  margin: 0 auto 24px;
  padding: 32px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.bagis-sonuc--ok {
  background: #e7f6ec;
  border-color: rgba(28, 122, 62, 0.3);
}

.bagis-sonuc--err {
  background: #fdecdf;
  border-color: rgba(197, 69, 10, 0.3);
}

@media (max-width: 560px) {

  .bagis-form__grid,
  .bagis-form__grid--3 {
    grid-template-columns: 1fr;
  }
}

.sorgu-form {
  display: grid;
  gap: 16px;
  max-width: 620px;
  margin: 0 auto 28px;
  padding: 30px 32px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.sorgu-form__row {
  display: grid;
  gap: 6px;
}

.sorgu-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sorgu-form label {
  font-weight: 700;
  color: var(--ink);
}

.sorgu-form input {
  height: 50px;
  padding: 0 16px;
  font-size: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.sorgu-form input:focus {
  outline: none;
  border-color: var(--blue);
}

.sorgu-form__or {
  text-align: center;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 13px;
}

.sorgu-form .button--primary {
  justify-self: start;
  min-height: 52px;
  padding: 0 36px;
  font-size: 17px;
}

.sorgu-msg {
  margin: 16px 0;
  font-size: 16px;
  font-weight: 700;
}

.sorgu-msg--err {
  color: var(--red);
}

.sorgu-card {
  margin: 16px 0;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.sorgu-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.sorgu-card__head strong {
  font-size: 18px;
  color: var(--navy);
}

.sorgu-card__tc {
  color: var(--muted);
  font-weight: 700;
}

.sorgu-table {
  width: 100%;
  border-collapse: collapse;
}

.sorgu-table th,
.sorgu-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.sorgu-table th {
  font-size: 14px;
  color: var(--muted);
}

.sorgu-table .ta-right {
  text-align: right;
}

.dekont-form {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 2px dashed var(--line);
}

.dekont-form__head h3 {
  margin: 0;
  font-size: 16px;
  color: var(--navy);
}

.dekont-form__head p {
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.dekont-table th,
.dekont-table td {
  padding: 9px 12px;
}

.dekont-table tbody tr:hover td {
  background: var(--soft);
}

.dekont-table__sec {
  width: 44px;
  text-align: center;
}

.dekont-table__sec input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--navy);
}

.dekont-form__alt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.dekont-form__uyari {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 560px) {
  .sorgu-form__grid {
    grid-template-columns: 1fr;
  }

  .sorgu-table th,
  .sorgu-table td {
    padding: 8px 6px;
    font-size: 13px;
  }
}

.aysis-box {
  display: grid;
  justify-items: center;
  gap: 22px;
  max-width: 620px;
  margin: 12px auto 0;
  padding: 40px 32px;
  text-align: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.aysis-box p {
  margin: 0;
  font-size: 18px;
  color: var(--ink);
}

.aysis-box .button--primary {
  padding: 0 30px;
  min-height: 54px;
  font-size: 17px;
  text-decoration: none;
}

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.86);
  background: var(--midnight);
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 32px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.footer-sekmeler {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
  margin-bottom: 18px;
}

.footer-sekmeler button {
  padding: 0 0 6px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: rgba(255, 255, 255, 0.6);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: color 200ms, border-color 200ms;
}

.footer-sekmeler button:hover {
  color: var(--white);
}

.footer-sekmeler button.is-active {
  color: var(--white);
  border-bottom-color: #ffb950;
}

.footer-sekme p {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
}

.footer-sekme a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-sekme a:hover {
  color: #ffb950;
}

.footer-yan {
  display: grid;
  align-content: start;
  gap: 18px;
  justify-items: end;
}

.footer-bagis {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 4px;
  background: #ffb950;
  color: #1a3654;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  transition: box-shadow 300ms;
}

.footer-bagis:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
  color: #1a3654;
}

.footer-sosyal {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-sosyal a {
  display: block;
  opacity: 0.85;
  transition: opacity 200ms;
}

.footer-sosyal a:hover {
  opacity: 1;
}

.footer-yan .footer-newsletter {
  justify-self: stretch;
}

.footer-telif {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-telif p {
  margin: 0;
  font-size: 13px;
  line-height: 22px;
}

.footer-telif a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-telif a:hover {
  color: #ffb950;
}

@media (max-width: 940px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-yan {
    justify-items: start;
  }
}

@media (max-width: 1120px) {
  .masthead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px 16px;
    padding: 14px 0;
  }

  .header-ataturk {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }

  .nav-cluster {
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
  }

  .main-nav {
    overflow-x: auto;
    max-width: calc(100vw - 32px);
  }
}

@media (max-width: 920px) {
  .quick-access {
    margin-top: 28px;
  }

  .quick-access__grid,
  .card-grid,
  .feature-band,
  .feature-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-strip__inner {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 7px 14px;
  }

  .top-strip__inner span:first-child {
    flex-basis: 100%;
  }

  .brand {
    min-width: 0;
  }

  .brand__mark {
    width: 56px;
    height: 56px;
  }

  .brand__text strong {
    font-size: 16px;
  }

  .brand__text small {
    max-width: 210px;
    font-size: 10px;
  }

  .header-ataturk {
    width: 92px;
    height: 76px;
    margin: 0;
  }

  .nav-cluster {
    align-items: stretch;
    flex-direction: column;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    overflow: visible;
    border-radius: 14px;
  }

  .main-nav a,
  .main-nav .main-nav__label {
    justify-content: center;
    padding: 0 8px;
    font-size: 13px;
  }

  .online-menu__button {
    width: 100%;
  }

  .online-menu__panel {
    left: 0;
    right: auto;
    width: 100%;
  }

  h1 {
    font-size: 42px;
  }

  .hero__media {
    height: clamp(240px, 56vw, 380px);
  }
}

.messages {
  display: grid;
  gap: 10px;
  margin: 18px auto 0;
}

.message {
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--ink);
}

.message--success {
  border-color: #b8e0c2;
  background: #eafaef;
  color: #1c6b35;
}

.message--error {
  border-color: #f3c2c5;
  background: #fdeced;
  color: #a4151c;
}

.message--info {
  border-color: #b9d8ee;
  background: #eaf4fb;
  color: #0b4c7a;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.req {
  color: var(--red);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-info .content-page {
  max-width: none;
  padding: 0 0 24px;
}

.contact-meta {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-meta li {
  display: grid;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-meta strong {
  color: var(--navy);
}

.contact-meta span {
  color: var(--muted);
}

.form-card {
  display: grid;
  gap: 16px;
  padding: 32px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-card h2 {
  margin: 0;
  font-size: 24px;
  color: var(--navy);
}

.field {
  display: grid;
  gap: 6px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--soft);
  font: inherit;
  color: var(--ink);
}

.field input:focus,
.field textarea:focus,
.newsletter-form input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 111, 185, 0.18);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field--check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.field--check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.field--check label {
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
}

.field-error,
.form-error {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.form-card .button {
  justify-self: start;
  padding: 0 32px;
}

.footer-newsletter form {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 0 14px;
  height: 48px;
  border-radius: 4px;
  border: 0;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

.newsletter-form .button {
  min-height: 48px;
  padding: 0 26px;
  white-space: nowrap;
}

.newsletter-consent {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.location-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.location-card__map {
  line-height: 0;
}

.location-card__map iframe {
  width: 100%;
  height: 240px;
  border: 0;
}

.location-card__body {
  padding: 24px 26px 28px;
}

.location-card__body h2 {
  margin: 0 0 16px;
  font-size: 22px;
  color: var(--navy);
}

.location-meta {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-meta li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 10px;
  align-items: start;
}

.location-meta strong {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.location-meta span {
  color: var(--ink);
}

.location-meta a {
  color: var(--blue);
}

@media (max-width: 920px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {

  .contact-layout,
  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1240px) {
  .masthead {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
    min-height: 0;
    padding: 12px 0;
  }

  .header-ataturk {
    display: none;
  }

  .brand {
    order: 1;
    min-width: 0;
  }

  .nav-toggle {
    display: flex;
    order: 2;
  }

  .nav-cluster {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 4px;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.nav-open .nav-cluster {
    display: flex;
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: none;
    overflow: visible;
    padding: 4px;
    font-size: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  .main-nav__item {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .main-nav>.main-nav__item:last-child {
    border-bottom: 0;
  }

  .main-nav__item>a,
  .main-nav__item>.main-nav__label {
    flex: 1 1 0;
    min-width: 0;
    justify-content: flex-start;
    min-height: 54px;
    padding: 0 10px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 800;
  }

  .main-nav__item>a:hover {
    color: var(--deep-blue);
    background: transparent;
  }

  .main-nav__caret {
    display: none;
  }

  .main-nav__expand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 52px;
    height: 54px;
    border: 0;
    border-left: 1px solid var(--line);
    background: transparent;
    color: var(--blue);
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .main-nav__item.is-expanded .main-nav__expand {
    transform: rotate(180deg);
  }

  .main-nav__dropdown {
    position: static;
    display: none;
    flex-basis: 100%;
    width: 100%;
    padding-top: 0;
    z-index: auto;
  }

  .main-nav__item.is-expanded .main-nav__dropdown {
    display: block;
  }

  .main-nav__panel {
    min-width: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: var(--soft);
    padding: 6px;
    gap: 2px;
  }

  .main-nav__panel::before {
    display: none;
  }

  .main-nav__panel a,
  .main-nav__panel .main-nav__label {
    min-height: 48px;
    padding: 0 14px 0 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    justify-content: flex-start;
  }

  .online-menu {
    width: 100%;
  }

  .online-menu__button {
    width: 100%;
  }

  .online-menu__panel {
    position: static;
    display: grid;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }

  .header-search {
    order: -1;
    width: 100%;
  }

  .header-search__toggle {
    display: none;
  }

  .header-search__form {
    position: static;
    display: flex;
    width: 100%;
    box-shadow: none;
  }
}

.dorm-strip {
  padding: 44px 0 36px;
  border-bottom: 1px solid var(--line);
}

.dorm-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dorm-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 18px 12px;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dorm-strip__item img {
  width: 86px;
  height: 86px;
}

.dorm-strip__item span {
  font-size: 17px;
  color: var(--ink);
}

.dorm-strip__item strong {
  color: var(--navy);
}

.dorm-strip__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .dorm-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .dorm-strip__grid {
    grid-template-columns: 1fr;
  }
}

html {
  overflow-x: clip;
}

[id] {
  scroll-margin-top: 200px;
}

.content-page .yurt-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -40px;
  padding: 300px 24px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.yurt-tanitim {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 64px;
}

.yurt-tanitim--turuncu {
  background: #ffb950;
}

.yurt-tanitim--petrol {
  background: #254857;
}

.yurt-tanitim--acik {
  background: #f1f1f1;
}

.yurt-tanitim__ikon {
  flex: 0 0 190px;
  text-align: center;
}

.content-page .yurt-tanitim__ikon img {
  width: 150px;
  height: auto;
  margin: 0;
}

.content-page .yurt-tanitim__icerik h1 {
  font-size: 34px;
  color: #1a3654;
  margin: 0 0 16px;
}

.yurt-tanitim__icerik p {
  color: #1a3654;
  margin: 0 0 14px;
}

.yurt-tanitim--petrol .yurt-tanitim__icerik h1,
.yurt-tanitim--petrol .yurt-tanitim__icerik p {
  color: var(--white);
}

.yurt-tanitim__butonlar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 10px;
}

.content-page .btn_white,
.content-page .btn_blue {
  display: inline-block;
  border-radius: 4px;
  color: #1a3654;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 300ms, background 300ms, color 300ms;
}

.content-page .btn_white {
  padding: 20px;
  background: var(--white);
}

.content-page .btn_blue {
  padding: 16px 36px;
  background: #3dcae2;
}

.content-page .btn_white:hover {
  background: #1a3654;
  color: var(--white);
  text-decoration: none;
}

.content-page .btn_blue:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
  color: #1a3654;
  text-decoration: none;
}

.content-gallery__video {
  position: relative;
}

.content-gallery__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-gallery__play::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 26px solid var(--white);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  margin-left: 6px;
}

.content-gallery__play::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.yurt-iletisim {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 36px 0;
}

.yurt-iletisim__baslik {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #1a3654;
}

.content-page .yurt-iletisim__baslik img {
  margin: 0;
}

.yurt-iletisim__kutu p {
  margin: 0 0 8px;
}

.yurt-iletisim__kutu a {
  color: var(--red);
}

.yurt-harita {
  margin: 8px 0 24px;
}

.yurt-harita iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .content-page .yurt-hero {
    padding-top: 180px;
  }

  .yurt-tanitim {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
    gap: 20px;
  }

  .yurt-tanitim__butonlar {
    justify-content: center;
  }

  .yurt-iletisim {
    grid-template-columns: 1fr;
  }
}

.menu-page__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.menu-page__nav strong {
  font-size: 18px;
  color: var(--navy);
}

.menu-page__nav-link {
  font-weight: 600;
  color: var(--blue);
}

.menu-page__nav-link:hover {
  text-decoration: underline;
}

.menu-page__section {
  margin-bottom: 40px;
}

.menu-page__section h2 {
  color: var(--navy);
  margin-bottom: 14px;
}

.menu-page__table-wrap {
  overflow-x: auto;
}

.menu-page__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.menu-page__table th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 10px 14px;
}

.menu-page__table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.menu-page__table td:first-child {
  white-space: nowrap;
  font-weight: 600;
  color: var(--navy);
}

.menu-page__table tbody tr:nth-child(even) {
  background: var(--soft);
}

.menu-page__day {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}

.menu-page__empty {
  padding: 22px;
  background: var(--soft);
  border-radius: 10px;
  color: var(--muted);
}

.menu-page__back {
  font-weight: 600;
  color: var(--blue);
}

.menu-page__back:hover {
  text-decoration: underline;
}
