:root {
  --navy: #003c54;
  --navy-dark: #002333;
  --navy-2: #002d3f;
  --navy-3: #045270;
  --brand: #008da5;
  --brand-dark: #006477;
  --brand-soft: #e6f7fa;
  --red: #e85a4f;
  --red-dark: #c73e33;
  --red-soft: #fdeceb;
  --gold: #f4a261;
  --gold-soft: #fdf4ec;
  --paper: #f4f8fa;
  --card: #ffffff;
  --ink: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --font-head: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Albert Sans", "Segoe UI", sans-serif;
  --font-serif: "Merriweather", Georgia, serif;
  --shadow: 0 4px 20px rgba(0, 60, 84, 0.06);
  --shadow-lift: 0 14px 36px rgba(0, 60, 84, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
}

h1, h2, h3, h4, .font-head {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--red);
}

/* Kapsayıcı */
.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 0;
  font-family: var(--font-head);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-red {
  background: var(--red);
  color: #ffffff;
}
.btn-red:hover {
  background: var(--red-dark);
  color: #ffffff;
}

.btn-teal {
  background: var(--brand);
  color: #ffffff;
}
.btn-teal:hover {
  background: var(--brand-dark);
  color: #ffffff;
}

.btn-navy {
  background: var(--navy);
  color: #ffffff;
}
.btn-navy:hover {
  background: var(--navy-3);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-ghost-white {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost-white:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
}

/* Topbar */
.tpd-topbar {
  background: var(--navy-dark);
  color: #94a3b8;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.tpd-topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}
.tpd-topbar a {
  color: #cbd5e1;
}
.tpd-topbar a:hover {
  color: #ffffff;
}

/* Brand Header Bar */
.tpd-header-main {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.tpd-brand-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.tpd-logo-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tpd-logo-emblem {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--navy-2), var(--brand));
  border: 2px solid var(--brand);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 141, 165, 0.25);
  flex-shrink: 0;
}
.tpd-title-box h1 {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--navy);
  line-height: 1.15;
  text-transform: uppercase;
}
.tpd-title-box p {
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Main Navbar Navigation Ribbon */
.tpd-nav-ribbon {
  background: var(--navy);
  box-shadow: 0 4px 14px rgba(0, 60, 84, 0.15);
  position: sticky;
  top: 0;
  z-index: 50;
}
.tpd-nav-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.tpd-nav-item {
  position: relative;
}
.tpd-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
}
.tpd-nav-link:hover, .tpd-nav-item:hover > .tpd-nav-link, .tpd-nav-link.active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-bottom-color: var(--brand);
}

/* Dropdown Menu */
.tpd-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 12px 30px rgba(0, 60, 84, 0.18);
  border-top: 3px solid var(--brand);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 100;
}
.tpd-nav-item:hover .tpd-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.tpd-dropdown-item {
  display: block;
  padding: 9px 18px;
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
  border-bottom: 1px solid #f1f5f9;
}
.tpd-dropdown-item:last-child {
  border-bottom: 0;
}
.tpd-dropdown-item:hover {
  background: var(--brand-soft);
  color: var(--brand);
  padding-left: 22px;
}

/* TPD Hero / Slider */
.tpd-hero-slider {
  position: relative;
  background: var(--navy);
  min-height: 440px;
  overflow: hidden;
}
.tpd-slide-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--navy-dark) 42%, rgba(0, 60, 84, 0.78) 75%, rgba(0, 60, 84, 0.35));
  z-index: 2;
}

/* Hızlı Erişim Kutuları (Quick Access Buttons) */
.tpd-quick-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--navy);
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.tpd-quick-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-left-color: var(--brand);
}
.tpd-quick-box .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.tpd-quick-box:hover .icon-wrap {
  background: var(--brand);
  color: #ffffff;
}

/* Sekmeli Haber & Basın Yapısı */
.tpd-tabs-bar {
  display: flex;
  border-bottom: 2px solid var(--line);
  gap: 24px;
  margin-bottom: 24px;
}
.tpd-tab-btn {
  background: transparent;
  border: 0;
  padding: 12px 4px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}
.tpd-tab-btn:hover {
  color: var(--navy);
}
.tpd-tab-btn.active {
  color: var(--brand);
}
.tpd-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  border-radius: 3px 3px 0 0;
}

/* Haber Listesi Elemanı */
.tpd-news-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s ease;
}
.tpd-news-item:last-child {
  border-bottom: 0;
}
.tpd-news-date-badge {
  width: 62px;
  height: 62px;
  background: var(--navy);
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tpd-news-date-badge .day {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
}
.tpd-news-date-badge .month {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Prose İçerik Metinleri */
.prose-c h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin: 1.2rem 0 0.6rem;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--brand-soft);
}
.prose-c h3 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  margin: 1rem 0 0.4rem;
}
.prose-c p {
  margin: 0.8rem 0;
  line-height: 1.75;
  color: #334155;
}
.prose-c ul {
  margin: 0.8rem 0 0.8rem 1.4rem;
  list-style-type: disc;
  color: #334155;
}
.prose-c li {
  margin-bottom: 4px;
}

/* Komisyon & Çalışma Grubu Etiketleri */
.tpd-branch-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  box-shadow: 0 2px 6px rgba(0, 60, 84, 0.04);
  transition: all 0.2s ease;
  text-align: center;
}
.tpd-branch-badge:hover {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .tpd-header-main {
    padding: 10px 0;
  }
  .tpd-title-box h1 {
    font-size: 16px;
  }
}

/* Haberler ve Görsel Thumbları */
.object-cover {
  object-fit: cover;
  object-position: top;
}

