@charset "UTF-8";
/* ── Page Hero ── */
.ph {
  background: var(--navy);
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
}

.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
}

.ph::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -80px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 65%);
  pointer-events: none;
}

.ph-inner {
  position: relative;
  z-index: 2;
}

.ph-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 18px;
}

.ph-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(147, 197, 253, 0.8);
  flex-shrink: 0;
}

.ph-title {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.ph-title em {
  font-style: normal;
  background: linear-gradient(110deg, #60A5FA, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ph-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.58);
  max-width: 560px;
  line-height: 1.75;
}

.ph-blob {
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1), transparent 70%);
  pointer-events: none;
}

/* ── Breadcrumb ── */
.bc {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.bc a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  transition: var(--ease);
}

.bc a:hover {
  color: rgba(147, 197, 253, 0.9);
}

.bc-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
}

.bc-cur {
  font-size: 0.78rem;
  color: rgba(147, 197, 253, 0.85);
  font-weight: 600;
}

/* ── Content Section ── */
.cs {
  padding: 90px 0;
}

.cs-alt {
  background: var(--bg);
}

.cs-white {
  background: var(--white);
}

.cs-navy {
  background: var(--navy);
}

.cs-dark {
  background: #070F26;
}

/* ── Section Header ── */
.sh {
  margin-bottom: 56px;
}

.sh.center {
  text-align: center;
}

.sh.center .tl {
  margin-left: auto;
  margin-right: auto;
}

/* ── Info Card ── */
.ic {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  padding: 32px 28px;
  height: 100%;
  transition: var(--ease);
  box-shadow: var(--sh-sm);
}

.ic:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(37, 99, 235, 0.2);
}

.ic-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 20px;
  transition: var(--ease);
}

.ic:hover .ic-icon {
  background: var(--blue);
  color: #fff;
}

.ic h5 {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.ic p {
  font-size: 0.86rem;
  line-height: 1.72;
  margin: 0;
}

/* ── Person Card ── */
.pc {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--ease);
  box-shadow: var(--sh-sm);
  text-align: center;
}

.pc:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
  border-color: rgba(37, 99, 235, 0.18);
}

.pc-img {
  height: 220px;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-img--square {
  aspect-ratio: 1/1;
  height: auto;
  width: 100%;
  position: relative;
}

.pc-img--square:not(:has(img)) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-img--square img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.pc:hover .pc-img img {
  transform: scale(1.06);
}

.pc-av {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto;
}

.pc-body {
  padding: 22px 20px 26px;
}

.pc-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.pc-name {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pc-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.pc-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pc-s {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.85rem;
  transition: var(--ease);
}

.pc-s:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ── Timeline ── */
.tl-wrap {
  position: relative;
  padding-left: 40px;
}

.tl-wrap::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--cyan));
}

.tl-item {
  position: relative;
  margin-bottom: 44px;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.tl-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.tl-head {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.tl-text {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── Stat Box ── */
.sb2 {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: var(--ease);
}

.sb2:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.sb2-num {
  font-family: var(--fd);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(110deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sb2-lab {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 6px;
}

/* ── Org Chart ── */
.org-wrap {
  overflow-x: auto;
  padding: 20px 0;
}

.org-level {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.org-connector {
  display: flex;
  justify-content: center;
  height: 40px;
  position: relative;
}

.org-connector::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--border);
}

.org-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 22px;
  text-align: center;
  min-width: 180px;
  box-shadow: var(--sh-sm);
  transition: var(--ease);
}

.org-box:hover {
  border-color: var(--blue);
  box-shadow: var(--sh-md);
}

.org-box.top {
  background: var(--navy);
  border-color: var(--navy);
}

.org-box.top .ob-title {
  color: #fff;
}

.org-box.top .ob-sub {
  color: rgba(255, 255, 255, 0.55);
}

.ob-icon {
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 8px;
}

.org-box.top .ob-icon {
  color: rgba(147, 197, 253, 0.85);
}

.ob-title {
  font-family: var(--fd);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.ob-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ── Ortaklarımız kurum bölümü ── */
.ally-aim img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ally-aim-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: var(--bg-2);
  color: var(--navy);
  font-size: 3rem;
}

/* ── Job Card ── */
.jc {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  padding: 28px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--ease);
  box-shadow: var(--sh-sm);
  margin-bottom: 16px;
}

.jc:hover {
  box-shadow: var(--sh-lg);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateX(4px);
}

.jc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--blue);
  flex-shrink: 0;
}

.jc-body {
  flex: 1;
}

.jc-dept {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}

.jc-title {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.jc-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.jc-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(37, 99, 235, 0.07);
  color: var(--blue);
  border: 1px solid rgba(37, 99, 235, 0.13);
}

.jc-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.jc-action {
  flex-shrink: 0;
  align-self: center;
}

/* ── Company Card ── */
.cc {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  padding: 28px 24px;
  height: 100%;
  transition: var(--ease);
  box-shadow: var(--sh-sm);
}

.cc:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(37, 99, 235, 0.2);
}

.cc-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cc-sector {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 5px;
}

.cc-name {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.cc-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.cc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-lt);
}

.cc-since {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cc-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--ease);
}

.cc-link:hover {
  gap: 8px;
  color: var(--blue);
}

/* ── Filter Bar ── */
.fb2 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.fb2 button {
  font-family: var(--fb);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--ease);
}

.fb2 button:hover, .fb2 button.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ── Form ── */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  box-shadow: var(--sh-md);
}

.form-label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-control, .form-select {
  font-family: var(--fb);
  font-size: 0.88rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--text-dark);
  transition: var(--ease);
}

.form-control:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* ── Download Card ── */
.dc {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--ease);
  box-shadow: var(--sh-sm);
  margin-bottom: 12px;
}

.dc:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--sh-md);
}

.dc-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--blue);
  flex-shrink: 0;
}

.dc-body {
  flex: 1;
}

.dc-title {
  font-family: var(--fd);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}

.dc-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.dc-btn {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: var(--ease);
}

.dc-btn:hover {
  gap: 9px;
  color: var(--blue);
}

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--sh-lg);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  color: #fff;
}

.ci-item {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}
.ci-item:last-child {
  margin-bottom: 0;
}

.ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(147, 197, 253, 0.9);
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 3px;
}

.ci-val {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.ci-val a {
  color: rgba(147, 197, 253, 0.85);
}
.ci-val a:hover {
  color: #fff;
}

/* ── CTA Strip ── */
.cta-strip {
  background: linear-gradient(110deg, var(--navy), var(--navy-mid));
  border-radius: var(--r-lg);
  padding: 50px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent 65%);
}

.cta-strip h3 {
  font-family: var(--fd);
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: 0.92rem;
}

.cta-strip-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ── Accordion override ── */
.accordion-item {
  background: var(--white);
  border: 1px solid var(--border-lt) !important;
  border-radius: var(--r-md) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button {
  font-family: var(--fb);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white) !important;
  box-shadow: none !important;
  padding: 18px 22px;
}

.accordion-button:not(.collapsed) {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.04) !important;
}

.accordion-button::after {
  filter: none;
}

.accordion-body {
  font-size: 0.87rem;
  line-height: 1.78;
  color: var(--text-body);
  padding: 18px 22px 20px;
}

/* ── Table ── */
.tbl {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.87rem;
}

.tbl thead th {
  background: var(--navy);
  color: #fff;
  font-family: var(--fd);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 18px;
}

.tbl thead th:first-child {
  border-radius: var(--r-sm) 0 0 0;
}

.tbl thead th:last-child {
  border-radius: 0 var(--r-sm) 0 0;
}

.tbl tbody tr {
  transition: var(--ease);
}

.tbl tbody tr:hover {
  background: rgba(37, 99, 235, 0.04);
}

.tbl tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-lt);
  color: var(--text-body);
  vertical-align: middle;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .cs {
    padding: 64px 0;
  }
  .cta-strip {
    flex-direction: column;
    text-align: center;
  }
  .cta-strip-btns {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .ph {
    padding: 80px 0 50px;
  }
  .form-wrap {
    padding: 28px 20px;
  }
}
/* ── Navbar CTA sizing (Hemen Başvurun + Giriş) ── */
.btn-smish {
  padding: 10px 20px !important;
  font-size: 0.82rem !important;
  border-radius: 10px !important;
  gap: 6px !important;
}

/* Navbar "Giriş" (navy arka plan) */
.btn-navy {
  background: var(--navy) !important;
  color: #fff !important;
  border: 1.5px solid var(--navy) !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--fb);
  font-weight: 700;
  -webkit-transition: var(--ease);
  transition: var(--ease);
}

.btn-navy:hover {
  background: var(--navy-mid) !important;
  color: #fff !important;
  border-color: var(--navy-mid) !important;
}

/* Navbar CTA alanında butonları her sayfada sabit hizala */
#nav .d-flex.gap-2.ms-lg-3.mt-3.mt-lg-0.align-items-center {
  flex-wrap: wrap;
}

#nav .d-flex.gap-2.ms-lg-3.mt-3.mt-lg-0.align-items-center .btn-smish {
  min-height: 40px;
  line-height: 1.1;
}

#nav .d-flex.gap-2.ms-lg-3.mt-3.mt-lg-0.align-items-center .dropdown-toggle::after {
  margin-left: 0.45rem;
  vertical-align: middle;
}

/* Mobilde CTA butonlarını daha okunur hizala */
@media (max-width: 575px) {
  #nav .d-flex.gap-2.ms-lg-3.mt-3.mt-lg-0.align-items-center {
    width: 100%;
    gap: 8px !important;
  }
  #nav .d-flex.gap-2.ms-lg-3.mt-3.mt-lg-0.align-items-center > a,
  #nav .d-flex.gap-2.ms-lg-3.mt-3.mt-lg-0.align-items-center .dropdown {
    width: 100%;
  }
  #nav .d-flex.gap-2.ms-lg-3.mt-3.mt-lg-0.align-items-center .btn-smish {
    width: 100%;
    justify-content: center;
  }
}
/* ── Haber detay içeriği ── */
.news-body {
  font-size: 1.05rem;
  line-height: 1.85;
}

.news-body p {
  margin-bottom: 1rem;
}

.news-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-md);
  margin: 1rem 0;
}

.news-body h2, .news-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.news-list-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid var(--border-lt);
  box-shadow: var(--sh-sm);
}

.news-list-meta__count {
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
}

.news-list-meta__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.news-category-filter a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--fb);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: var(--ease);
}
.news-category-filter a:hover, .news-category-filter a.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.nc-featured {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: var(--ease);
}
.nc-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: rgba(37, 99, 235, 0.22);
}
@media (min-width: 992px) {
  .nc-featured {
    flex-direction: row;
    min-height: 320px;
  }
}

.nc-featured__link {
  z-index: 2;
}

@media (min-width: 992px) {
  .nc-featured__media {
    width: 48%;
    height: auto;
    min-height: 320px;
    flex-shrink: 0;
  }
}

@media (min-width: 992px) {
  .nc-featured__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }
}
.nc-featured__body .ntitle {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}
.nc-featured__body .nexc {
  font-size: 0.92rem;
}

.news-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-empty {
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--r-lg);
}

.news-empty__icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  font-size: 1.75rem;
}

.news-pagination .pagination {
  gap: 0.35rem;
}
.news-pagination .page-link {
  border-radius: 50px;
  min-width: 2.5rem;
  text-align: center;
  border: 1.5px solid var(--border);
  color: var(--text-body);
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  transition: var(--ease);
}
.news-pagination .page-item.active .page-link {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.news-pagination .page-link:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
  color: var(--blue);
}

.news-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
}

.news-detail-lead {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: var(--bg-2);
}
.news-detail-lead img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-detail-aside {
  position: sticky;
  top: 6rem;
  padding: 1.35rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
}

.news-detail-aside__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.news-detail-aside__item {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-lt);
}
.news-detail-aside__item:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-detail-aside__key {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.news-detail-aside__val {
  font-weight: 600;
  color: var(--navy);
}

.news-detail-aside__cat {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}
.news-detail-aside__cat:hover {
  background: var(--blue);
  color: #fff;
}

.news-detail-aside__actions {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-lt);
}

@media (max-width: 991.98px) {
  .news-detail-aside {
    position: static;
  }
}
.err404-code {
  font-family: var(--fd);
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(110deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}

.err404-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.err404-links-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.err404-link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-body);
  font-size: 0.84rem;
  font-weight: 600;
  transition: var(--ease);
}
.err404-link:hover {
  color: var(--blue);
  border-color: rgba(37, 99, 235, 0.25);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}

/* ── Yasal sayfalar (sol menü + içerik) ── */
.legal-page-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.legal-page-nav {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  padding: 20px 16px;
  box-shadow: var(--sh-sm);
}

.legal-page-nav__title {
  font-family: var(--fd);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding: 0 8px;
}

.legal-page-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--text-body);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--ease);
}
.legal-page-nav__link i {
  font-size: 1.05rem;
  color: var(--blue);
  opacity: 0.85;
}
.legal-page-nav__link:hover {
  background: rgba(37, 99, 235, 0.06);
  color: var(--navy);
}
.legal-page-nav__link.is-active {
  background: rgba(37, 99, 235, 0.1);
  color: var(--navy);
  box-shadow: inset 3px 0 0 var(--blue);
}

.legal-page-content__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.legal-page-content__body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
}
.legal-page-content__body h2, .legal-page-content__body h3, .legal-page-content__body h4 {
  font-family: var(--fd);
  color: var(--navy);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.legal-page-content__body p {
  margin-bottom: 1rem;
}
.legal-page-content__body ul, .legal-page-content__body ol {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

@media (max-width: 991.98px) {
  .legal-page-nav {
    position: static;
    margin-bottom: 8px;
  }
  .legal-page-nav__link.is-active {
    box-shadow: none;
    border-left: 3px solid var(--blue);
  }
}
.legal-content-modal {
  border: none;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
}

.legal-content-modal .modal-body {
  max-height: min(62vh, 520px);
  overflow-y: auto;
}

.contact-kvkk-link:hover,
.contact-kvkk-link:focus {
  color: var(--navy) !important;
  text-decoration: underline !important;
}
