/* Yayın sitesi (ziyaretçi vitrin) — açık tema */
:root {
  --t-bg: #f0f4fa;
  --t-surface: #ffffff;
  --t-text: #1a2332;
  --t-muted: #5c6b7e;
  --t-border: #d8e0ec;
  --t-accent: #1565c0;
  --t-accent2: #0d9488;
  --t-topbar-bg: #0d2137;
  --t-foot-bg: #0d2137;
  --t-wrap: 1120px;
  --t-font: "Plus Jakarta Sans", system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-padding-top: 7rem;
  overflow-x: hidden;
  max-width: 100%;
}

.tanitim-body {
  margin: 0;
  font-family: var(--t-font);
  background: var(--t-bg);
  color: var(--t-text);
  line-height: 1.55;
  overflow-x: hidden;
  max-width: 100%;
}

.tanitim-body a {
  color: var(--t-accent);
}

.t-wrap {
  box-sizing: border-box;
  max-width: var(--t-wrap);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Üst şerit */
.t-topbar {
  background: var(--t-topbar-bg);
  color: #e2e8f0;
  font-size: 0.82rem;
}

.t-topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  min-height: 2.35rem;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.t-topbar__slogan {
  margin: 0;
  font-weight: 600;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  font-family: "Segoe Print", "Lucida Handwriting", "Bradley Hand", cursive;
  color: #f8fafc;
  letter-spacing: 0.02em;
  position: relative;
  text-shadow: 0 0 10px rgba(125, 211, 252, 0.35);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .t-topbar__slogan {
    background: linear-gradient(
      90deg,
      #ff4d6d 0%,
      #ff9f1c 16%,
      #ffe66d 32%,
      #2ec4b6 48%,
      #4d96ff 64%,
      #8b5cf6 82%,
      #ff4d6d 100%
    );
    background-size: 260% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: t-slogan-shimmer 4.8s linear infinite;
  }
}

@keyframes t-slogan-shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .t-topbar__slogan {
    animation: none !important;
  }
}

/* Site etkileşimli buton/linklerde hover rainbow efekti */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  @media (hover: hover) {
    .tanitim-body .t-logo:hover :is(.t-logo__line1, .t-logo__line2) {
      background: linear-gradient(
        90deg,
        #ff4d6d 0%,
        #ff9f1c 16%,
        #ffe66d 32%,
        #2ec4b6 48%,
        #4d96ff 64%,
        #8b5cf6 82%,
        #ff4d6d 100%
      );
      background-size: 240% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
      animation: t-slogan-shimmer 2.8s linear infinite;
    }

    .tanitim-body :is(.t-nav a, .t-giris-uye__btn, .t-giris-yonetim__btn, .t-link-all):hover {
      background: linear-gradient(
        90deg,
        #ff4d6d 0%,
        #ff9f1c 16%,
        #ffe66d 32%,
        #2ec4b6 48%,
        #4d96ff 64%,
        #8b5cf6 82%,
        #ff4d6d 100%
      );
      background-size: 240% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
      animation: t-slogan-shimmer 2.8s linear infinite;
    }

    .tanitim-body :is(.t-giris-card, .t-quick-card):hover :is(strong, .t-giris-card__title, .t-giris-card__desc, .t-giris-card__cta, .t-quick-card strong) {
      background: linear-gradient(
        90deg,
        #ff4d6d 0%,
        #ff9f1c 16%,
        #ffe66d 32%,
        #2ec4b6 48%,
        #4d96ff 64%,
        #8b5cf6 82%,
        #ff4d6d 100%
      );
      background-size: 240% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
      animation: t-slogan-shimmer 2.8s linear infinite;
    }
  }
}

.t-topbar__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-right: 50px;
}

.t-topbar a {
  color: #fff;
  text-decoration: none;
}

.t-topbar a:hover {
  text-decoration: underline;
}

.t-dot {
  opacity: 0.5;
}

/* Ana başlık şeridi */
.t-head {
  background: var(--t-surface);
  border-bottom: 1px solid var(--t-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  position: sticky;
  top: 0;
  z-index: 50;
}

.t-head__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem 1rem;
  min-height: 6.35rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  box-sizing: border-box;
}

.t-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--t-text);
  font-weight: 700;
  font-size: 0.88rem;
  max-width: min(560px, 70vw);
  min-width: 0;
  flex-shrink: 1;
  margin-left: 0;
  position: relative;
}

.t-logo:hover {
  color: var(--t-accent);
}

.t-logo:hover .t-logo__line2 {
  color: color-mix(in srgb, var(--t-accent) 72%, var(--t-muted));
}

.t-logo img {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  display: block;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--t-border);
  object-fit: cover;
  object-position: center;
  background: var(--t-surface);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.32),
    0 0 14px rgba(125, 211, 252, 0.45),
    0 0 28px rgba(77, 150, 255, 0.35);
  position: relative;
  z-index: 1;
}

.t-logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.06em;
  line-height: 1.18;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  position: relative;
  z-index: 1;
}

.t-logo::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  transform: translateY(-50%) rotate(0deg);
  background: conic-gradient(
    from 0deg,
    #ff4d6d 0deg,
    #ff9f1c 60deg,
    #ffe66d 120deg,
    #2ec4b6 180deg,
    #4d96ff 240deg,
    #8b5cf6 300deg,
    #ff4d6d 360deg
  );
  filter: blur(10px) saturate(1.2);
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
  animation: t-logo-rainbow-halo 4.8s linear infinite;
}

@keyframes t-logo-rainbow-halo {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Yan menü: logo üstte dikey; halkanın merkezi ikon ile hizalı kalsın */
@keyframes t-logo-rainbow-halo-drawer {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .t-logo::before {
    animation: none;
  }

  .t-nav-drawer-badge::before {
    animation: none;
    transform: translate(-50%, -50%);
  }
}

.t-logo__line1 {
  display: block;
  font-size: 1em;
  letter-spacing: -0.01em;
}

.t-logo__line2 {
  display: block;
  font-size: 0.92em;
  font-weight: 600;
  color: inherit;
  letter-spacing: -0.01em;
}

.t-nav-toggle {
  display: none;
  font: inherit;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--t-border);
  background: var(--t-surface);
  cursor: pointer;
}

/* Yalnızca mobil yan menü içinde kullanılır; geniş görünümde gizlenir */
.t-nav-drawer-head {
  display: none;
}

.t-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.1rem 0.15rem;
  min-width: 0;
  flex: 0 1 auto;
  max-width: 100%;
  overflow: visible;
}

.t-nav a {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--t-muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.t-nav a:hover {
  background: rgba(21, 101, 192, 0.08);
  color: var(--t-accent);
}

.t-nav a.is-active {
  background: rgba(21, 101, 192, 0.12);
  color: var(--t-accent);
}

.t-nav__end {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.1rem 0.15rem;
  margin-left: 0;
  margin-right: 0;
  flex-shrink: 0;
  padding-left: 0.65rem;
  border-left: 1px solid color-mix(in srgb, var(--t-border) 88%, transparent);
}

.t-nav-dropdown {
  position: relative;
  flex-shrink: 0;
}

.t-nav-dropdown > summary {
  list-style: none;
}

.t-nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.t-nav-dropdown__summary {
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.4rem 0.55rem 0.4rem 0.5rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--t-muted);
  font-family: inherit;
}

.t-nav-dropdown__summary::after {
  content: "";
  display: inline-block;
  width: 0.35em;
  height: 0.35em;
  margin-left: 0.38em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  vertical-align: 0.12em;
  opacity: 0.72;
}

.t-nav-dropdown[open] > .t-nav-dropdown__summary::after {
  transform: rotate(-135deg);
  vertical-align: -0.02em;
}

.t-nav-dropdown__summary:hover {
  background: rgba(21, 101, 192, 0.08);
  color: var(--t-accent);
}

.t-nav-dropdown--marked > .t-nav-dropdown__summary {
  background: rgba(21, 101, 192, 0.12);
  color: var(--t-accent);
}

.tanitim-body--dark .t-nav-dropdown--marked > .t-nav-dropdown__summary {
  background: rgba(125, 211, 252, 0.14);
  color: var(--t-accent);
}

.t-nav-dropdown__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.28rem);
  min-width: 11.5rem;
  padding: 0.4rem;
  border-radius: 10px;
  border: 1px solid var(--t-border);
  background: var(--t-surface);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.t-nav-dropdown__panel a {
  display: block;
  padding: 0.48rem 0.55rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--t-muted);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}

.t-nav-dropdown__panel a:hover {
  background: rgba(21, 101, 192, 0.08);
  color: var(--t-accent);
}

.t-nav-dropdown__panel a.is-active {
  background: rgba(21, 101, 192, 0.12);
  color: var(--t-accent);
}

.tanitim-body--dark .t-nav-dropdown__panel {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.tanitim-body--dark .t-nav-dropdown__panel a.is-active {
  background: rgba(125, 211, 252, 0.14);
  color: var(--t-accent);
}

/* Mobil / tablet: panel benzeri sol çekmece + backdrop (≤1200px; Safari masaüstü modu dahil) */
.t-nav-drawer-backdrop {
  display: none;
}

@media (max-width: 1200px) {
  .t-logo {
    margin-left: 0;
  }

  .t-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    min-height: 2.65rem;
    padding: 0.45rem 0.85rem;
    font-weight: 600;
    font-size: 0.88rem;
    -webkit-tap-highlight-color: transparent;
  }

  .t-nav-drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 85;
    background: rgba(6, 10, 16, 0.52);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
  }

  body.tanitim-nav-drawer-open .t-nav-drawer-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.tanitim-nav-drawer-open {
    overflow: hidden;
  }

  body.tanitim-nav-drawer-open .t-topbar,
  body.tanitim-nav-drawer-open .t-head {
    z-index: 95;
  }

  .t-nav-drawer-head {
    display: block;
    width: 100%;
    flex-shrink: 0;
    margin: -0.06rem 0 0.35rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--t-border);
    min-width: 0;
  }

  .t-nav-drawer-head .t-logo--drawer {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    max-width: 100%;
    font-size: 0.7rem;
    gap: 0.28rem;
    margin-right: 0;
    color: var(--t-text);
  }

  .t-nav-drawer-head .t-logo--drawer .t-logo__text {
    align-items: center;
  }

  .t-nav-drawer-head .t-logo--drawer:hover {
    background: transparent;
    color: var(--t-accent);
  }

  /* Gökkuşağı halkanın tam merkezi: pseudo üzerinde ikon kutusuyla birebir hizalı */
  .t-nav-drawer-head .t-logo.t-logo--drawer::before {
    content: none;
  }

  .t-nav-drawer-badge {
    position: relative;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  .t-nav-drawer-badge::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    box-sizing: border-box;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    background: conic-gradient(
      from 0deg,
      #ff4d6d 0deg,
      #ff9f1c 60deg,
      #ffe66d 120deg,
      #2ec4b6 180deg,
      #4d96ff 240deg,
      #8b5cf6 300deg,
      #ff4d6d 360deg
    );
    filter: blur(8px) saturate(1.2);
    opacity: 0.92;
    z-index: 0;
    pointer-events: none;
    animation: t-logo-rainbow-halo-drawer 4.8s linear infinite;
  }

  .t-nav-drawer-badge img {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    display: block;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.32),
      0 0 10px rgba(125, 211, 252, 0.5),
      0 0 18px rgba(77, 150, 255, 0.4);
  }

  .tanitim-body--dark .t-nav-drawer-badge img {
    background: #121a28;
    border-color: var(--t-border);
  }

  .t-nav {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(158px, 58vw);
    max-width: none;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.05rem;
    padding: max(0.42rem, env(safe-area-inset-top, 0px)) max(0.45rem, env(safe-area-inset-right, 0px)) max(0.55rem, env(safe-area-inset-bottom, 0px)) max(0.45rem, env(safe-area-inset-left, 0px));
    background: var(--t-surface);
    border-right: 1px solid var(--t-border);
    border-bottom: none;
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.22);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-105%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 90;
    pointer-events: none;
    flex: none;
    min-width: 0;
    box-sizing: border-box;
  }

  .t-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .t-nav a:not(.t-logo--drawer) {
    white-space: normal;
    width: 100%;
    box-sizing: border-box;
    padding: 0.32rem 0.38rem;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .t-nav__end {
    margin-left: 0;
    padding-left: 0;
    padding-top: 0.4rem;
    margin-top: 0.35rem;
    border-top: 1px solid var(--t-border);
    border-left: none;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
    flex-direction: column;
  }

  .t-nav-dropdown {
    width: 100%;
  }

  .t-nav-dropdown__summary {
    width: 100%;
    box-sizing: border-box;
    padding-top: 0.32rem;
    padding-bottom: 0.32rem;
    padding-left: 0.38rem;
    padding-right: 0.38rem;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .t-nav-dropdown__panel {
    position: static;
    margin-top: 0.28rem;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    box-shadow: none;
  }

  .t-nav-dropdown__panel a {
    padding: 0.32rem 0.38rem;
    font-size: 0.78rem;
  }
}

.t-code-inline {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: color-mix(in srgb, var(--t-border) 55%, transparent);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  word-break: break-all;
}

.t-main {
  min-height: 50vh;
  padding-bottom: 2rem;
}

/* Ana sayfa vitrin banner (sigorta projesi hero-banner yapısı) */
/* Dar içerik + uzun promo metni: taşmayı engelle (özellikle mobilde sağa kayma) */
.t-wrap.t-hero-main-banner {
  width: 100%;
  max-width: var(--t-wrap);
  min-width: 0;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  padding-top: clamp(0.55rem, 1.8vw, 1rem);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* .hero-ad-slot { min-height: 0 } bazı masaüstü tarayıcılarda flex çocuğunu sıfır yüksekliğe indirir */
.t-wrap.t-hero-main-banner > aside.hero-ad-slot.hero-banner-wrap {
  min-height: unset;
  min-width: 0;
  flex-shrink: 0;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
}

.t-hero-main-banner .hero-banner-wrap--main {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
}

.t-hero-main-banner .hero-banner-wrap--main .hero-banner-shell {
  max-width: none;
  min-width: 0;
  width: 100%;
  padding: 2px;
  border-radius: clamp(14px, 1.85vw, 20px);
  background: linear-gradient(
    132deg,
    color-mix(in srgb, #ffffff 78%, var(--t-accent)) 0%,
    color-mix(in srgb, var(--t-accent) 92%, #ffffff) 14%,
    color-mix(in srgb, var(--t-accent) 35%, #06090f) 42%,
    color-mix(in srgb, var(--t-accent) 55%, #0c121c) 58%,
    color-mix(in srgb, var(--t-accent) 75%, #1a2740) 78%,
    color-mix(in srgb, #ffffff 70%, var(--t-accent)) 100%
  );
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    0 22px 56px rgba(0, 0, 0, 0.28),
    0 0 100px -28px color-mix(in srgb, var(--t-accent) 38%, transparent);
}

[data-theme="light"] .t-hero-main-banner .hero-banner-wrap--main .hero-banner-shell {
  background: linear-gradient(
    132deg,
    #ffffff 0%,
    color-mix(in srgb, var(--t-accent) 35%, #ffffff) 16%,
    var(--t-accent) 38%,
    color-mix(in srgb, var(--t-accent) 65%, #0d2847) 55%,
    color-mix(in srgb, var(--t-accent) 25%, #e8f0fc) 82%,
    #ffffff 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.95),
    0 18px 48px rgba(15, 45, 90, 0.12),
    0 0 90px -24px color-mix(in srgb, var(--t-accent) 22%, transparent);
}

.t-hero-main-banner .hero-banner-wrap--main .hero-banner {
  border-radius: clamp(12px, 1.65vw, 18px);
  border: none;
  box-shadow: none;
  background: var(--t-surface);
  min-width: 0;
  max-width: 100%;
}

.t-hero-main-banner .hero-banner-wrap--main .hero-banner-stage {
  overflow: hidden;
  border-radius: clamp(12px, 1.65vw, 18px);
}

.t-hero-main-banner .hero-banner-wrap--main .hero-banner-band {
  display: none;
}

.t-hero-main-banner .hero-banner-wrap--main .hero-banner-viewport-wrap {
  --hero-content-inset-x: max(0px, calc((100% - min(1160px, 92%)) / 2));
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.t-hero-main-banner .hero-banner-wrap--main .hero-banner-viewport {
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: #0a0c10;
  aspect-ratio: 21 / 9;
  max-height: 620px;
  min-height: 380px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.t-hero-main-banner .hero-banner-wrap--main .hero-banner-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Video/img içsel genişlik (özellikle mobil Safari) taşımayı tetikleyebilir — sıkı kırpma */
.t-hero-main-banner .hero-banner-wrap--main .hero-banner-slide {
  overflow: hidden;
  contain: paint;
}

.t-hero-main-banner .hero-banner-wrap--main .hero-banner-slide .hero-banner-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.025);
  transform-origin: center center;
  display: block;
  box-sizing: border-box;
}

.t-hero-main-banner .hero-banner-wrap--main video.hero-banner-media {
  /* poster benzeri siyah; object-fit video kutusunda da geçerli */
  background: #000;
}

[data-theme="light"] .t-hero-main-banner .hero-banner-wrap--main .hero-banner-viewport {
  background: #0d1118;
}

@media (prefers-reduced-motion: reduce) {
  .t-hero-main-banner .hero-banner-wrap--main .hero-banner-slide .hero-banner-media {
    transform: none;
  }
}

/*
 * Dar ekran: 21/9 + min-height kutuyu fotoğraftan «uzun» yapıyordu → altta siyah şerit (özellikle mobil Safari).
 * ≤900px: 16/9 ve min-height kaldırılır; track/medya absolute ile her zaman viewport’u doldurur.
 */
@media (max-width: 900px) {
  .t-hero-main-banner .hero-banner-wrap--main .hero-banner-viewport {
    aspect-ratio: 16 / 9;
    min-height: 0;
    max-height: min(68vh, 520px);
    overflow: hidden;
  }

  /* scale() mobilde yatay taşma + kesik ok — viewport içinde düz cover */
  .t-hero-main-banner .hero-banner-wrap--main .hero-banner-slide .hero-banner-media {
    transform: none;
  }

  /* Promo kutusu üst üste «max-content» ile taşıyordu; sol–sağ sabitle */
  .t-hero-main-banner .hero-banner-promo {
    right: max(0.5rem, env(safe-area-inset-right, 0px));
    max-width: none;
  }
}

.hero-ad-slot.hero-banner-wrap {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  min-height: 0;
  display: block;
}

.hero-banner-shell {
  box-sizing: border-box;
  position: relative;
  padding: 3px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(77, 159, 255, 0.35) 0%,
    rgba(37, 99, 201, 0.12) 45%,
    rgba(77, 159, 255, 0.22) 100%
  );
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

[data-theme="light"] .hero-banner-shell {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.2) 0%,
    rgba(0, 86, 179, 0.08) 50%,
    rgba(0, 102, 204, 0.15) 100%
  );
  box-shadow: 0 18px 44px rgba(15, 45, 90, 0.1);
}

.hero-banner {
  position: relative;
  width: 100%;
  border-radius: 19px;
  overflow: hidden;
  background: var(--t-surface);
  border: 1px solid var(--t-border);
}

.hero-banner-stage {
  position: relative;
  border-radius: 19px 19px 0 0;
  overflow: hidden;
}

.hero-banner-viewport-wrap {
  position: relative;
  width: 100%;
}

.hero-banner-promo {
  position: absolute;
  top: auto;
  bottom: clamp(8px, 2.2vw, 18px);
  left: max(12px, 3.5vw);
  right: auto;
  transform: none;
  width: auto;
  max-width: min(38rem, calc(100% - max(12px, 3.5vw) - 14px));
  z-index: 6;
  pointer-events: none;
  box-sizing: border-box;
}

.t-hero-main-banner .hero-banner-promo {
  left: max(0.5rem, calc(var(--hero-content-inset-x) - 6px));
  right: auto;
  top: auto;
  bottom: clamp(10px, 2.4vw, 22px);
  width: auto;
  max-width: min(38rem, calc(100% - 2 * var(--hero-content-inset-x) - 0.75rem));
  transform: none;
  box-sizing: border-box;
}

.t-hero-main-banner .hero-banner-promo-inner {
  text-align: left;
  margin-inline: 0;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  min-width: 0;
  padding: 0.55rem 1.15rem 0.62rem;
  border-radius: 12px;
  box-sizing: border-box;
}

.hero-banner-promo-inner {
  position: relative;
  display: grid;
  grid-template: auto / auto;
  width: max-content;
  box-sizing: border-box;
  vertical-align: top;
  min-height: 0;
  padding: 0.55rem 1.05rem 0.58rem;
  text-align: left;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(8, 12, 20, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

[data-theme="light"] .hero-banner-promo-inner {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 4px 20px rgba(15, 45, 90, 0.08);
  backdrop-filter: blur(16px) saturate(1.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .hero-banner-promo-inner {
    background: linear-gradient(180deg, rgba(8, 12, 18, 0.82) 0%, rgba(8, 12, 18, 0.5) 100%);
    border-color: rgba(255, 255, 255, 0.1);
  }
  [data-theme="light"] .hero-banner-promo-inner {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(245, 248, 252, 0.62) 100%);
  }
}

.hero-promo-line {
  grid-area: 1 / 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  max-width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
  hyphens: auto;
  font-size: clamp(1.05rem, 2.75vw, 1.62rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35), 0 2px 14px rgba(0, 0, 0, 0.22);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

[data-theme="light"] .hero-promo-line {
  color: #0d1520;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45), 0 1px 12px rgba(255, 255, 255, 0.35);
}

.hero-promo-line.is-active {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  opacity: 1;
  z-index: 1;
}

/* Ana vitrin: genel .hero-promo-line’dan sonra — yatay tek satır + kutu metin kadar geniş */
.t-hero-main-banner .hero-promo-line {
  text-align: left;
  font-size: clamp(1.12rem, 2.95vw, 1.85rem);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0.006em;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: normal;
  hyphens: none;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}

@media (prefers-reduced-motion: reduce) {
  .hero-promo-line {
    transition: none;
  }
  .hero-promo-line:not(.is-active) {
    display: none;
  }
  .hero-promo-line.is-active {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    display: block;
  }
}

.hero-banner-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(52vh, 540px);
  background: var(--t-bg);
  overflow: hidden;
}

.hero-banner-track {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-banner-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.hero-banner-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-banner-slide .hero-banner-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  vertical-align: middle;
}

.hero-banner-slide video.hero-banner-media {
  background: #000;
}

.hero-banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* FAB 42, piyasa şeridi 40, yapışkan başlık 50; mobil çekmece backdrop 85 — oklar burada sabit katmanda kalır ama çekmece arkasına saklanır */
  z-index: 55;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(8, 12, 18, 0.45);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  transition: 0.2s ease;
  backdrop-filter: blur(4px);
}

.hero-banner-nav span {
  display: block;
  margin-top: -2px;
}

.hero-banner-nav:hover {
  background: rgba(8, 12, 18, 0.65);
}

.hero-banner-prev {
  left: 12px;
}

.hero-banner-next {
  right: 12px;
}

.t-hero-main-banner .hero-banner-prev {
  left: clamp(12px, 2vw, 22px);
}

.t-hero-main-banner .hero-banner-next {
  right: clamp(12px, 2vw, 22px);
}

/* Piyasa şeridi z-index 40; nokta satırı oklar ile aynı katman */

.t-hero-main-banner .hero-banner-wrap--main .hero-banner-dots {
  padding: 12px 0;
  left: 0;
  right: 0;
}

.hero-banner-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 55;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  background: transparent;
}

.hero-banner-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

[data-theme="light"] .hero-banner-dot {
  box-shadow: 0 1px 3px rgba(15, 45, 90, 0.25);
}

.hero-banner-dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

.hero-banner-dot:focus-visible,
.hero-banner-nav:focus-visible {
  outline: 2px solid var(--t-accent);
  outline-offset: 2px;
}

.hero-banner-band {
  flex-shrink: 0;
  height: 14px;
  border-top: 1px solid var(--t-border);
  background: linear-gradient(180deg, var(--t-bg) 0%, var(--t-surface) 55%, color-mix(in srgb, var(--t-accent) 6%, var(--t-surface)) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .hero-banner-band {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

@supports not (background: color-mix(in srgb, red, blue)) {
  .hero-banner-band {
    background: linear-gradient(180deg, var(--t-bg) 0%, var(--t-surface) 100%);
  }
}

/* Ana sayfa reklam şeridi */
.t-home-reklam-strip {
  margin-bottom: 2rem;
}

.t-home-reklam-strip__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem 1rem;
  margin-bottom: 0.6rem;
}

.t-home-reklam-strip__bar .t-link-all {
  margin-left: auto;
}

.t-home-reklam-strip__badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: color-mix(in srgb, var(--t-muted) 22%, var(--t-surface));
  color: var(--t-muted);
}

.t-home-reklam-strip__hint {
  margin: 0;
  font-size: 0.75rem;
  color: var(--t-muted);
}

@media (min-width: 960px) {
  .t-home-reklam-strip__hint {
    display: none;
  }
}

.t-home-reklam-strip__scroller {
  border: 1px solid var(--t-border);
  border-radius: 12px;
  background: var(--t-surface);
  box-shadow: 0 2px 12px color-mix(in srgb, var(--t-text) 5%, transparent);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.t-home-reklam-strip__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.15rem;
  padding: 1.25rem 1.3rem;
  min-height: 9rem;
  align-items: stretch;
}

.t-home-reklam-strip__item {
  flex: 0 0 auto;
  width: 15.75rem;
  max-width: 58vw;
}

.t-home-reklam-strip__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 100%;
  min-height: 7.5rem;
  padding: 0.8rem 0.65rem;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--t-border) 80%, transparent);
  background: color-mix(in srgb, var(--t-bg) 55%, var(--t-surface));
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
  box-sizing: border-box;
}

a.t-home-reklam-strip__card:hover {
  border-color: color-mix(in srgb, var(--t-accent) 45%, var(--t-border));
  background: color-mix(in srgb, var(--t-accent) 6%, var(--t-surface));
}

a.t-home-reklam-strip__card:focus-visible {
  outline: 2px solid var(--t-accent);
  outline-offset: 2px;
}

.t-home-reklam-strip__logo {
  width: 100%;
  height: 6.35rem;
  object-fit: contain;
  object-position: center;
  display: block;
}

.t-home-reklam-strip__name {
  font-size: 0.86rem;
  line-height: 1.25;
  color: var(--t-muted);
  text-align: center;
  word-break: break-word;
  max-width: 100%;
}

.t-reklam-page {
  max-width: var(--t-wrap);
}

.t-reklam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.35rem;
  margin-top: 1.5rem;
}

.t-reklam-grid__cell {
  min-width: 0;
}

.t-reklam-grid__card {
  min-height: 9rem;
  padding: 1rem 0.85rem;
}

.t-reklam-grid .t-home-reklam-strip__logo {
  height: 7.75rem;
}

.t-section-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.t-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.t-link-all {
  font-size: 0.9rem;
  font-weight: 600;
}

.t-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.15rem;
}

.t-card {
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13, 33, 55, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.t-card:hover {
  box-shadow: 0 8px 28px rgba(13, 33, 55, 0.12);
  transform: translateY(-2px);
}

.t-card a {
  display: block;
  padding: 1.15rem 1.2rem;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.t-card__date {
  font-size: 0.78rem;
  color: var(--t-accent2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.t-card__etkinlik {
  font-size: 0.82rem;
  color: var(--t-muted);
  margin: 0 0 0.45rem;
  line-height: 1.4;
}

.t-card--duyuru > a {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.t-card__thumb {
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  line-height: 0;
  background: var(--t-border);
}

.t-card__thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.t-card--duyuru .t-card__body {
  padding: 1.15rem 1.2rem;
  flex: 1;
}

.t-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--t-text);
}

.t-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--t-muted);
  line-height: 1.5;
}

.t-muted {
  color: var(--t-muted);
}

.t-small {
  font-size: 0.82rem;
}

.t-page-title {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 800;
}

.t-article {
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  max-width: 820px;
  box-shadow: 0 2px 12px rgba(13, 33, 55, 0.06);
}

.t-article__meta {
  font-size: 0.85rem;
  color: var(--t-muted);
  margin-bottom: 1rem;
}

.t-article--duyuru .t-duyuru-figure {
  margin: -1.5rem -1.75rem 1.25rem;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  line-height: 0;
  background: var(--t-border);
}

.t-article--duyuru .t-duyuru-figure img {
  width: 100%;
  max-height: min(52vh, 360px);
  object-fit: cover;
  display: block;
}

.t-duyuru-header {
  margin-bottom: 1.25rem;
}

.t-duyuru-kategori-etiket {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--t-accent);
}

.t-article--duyuru h1 {
  margin: 0 0 0.5rem;
}

.t-duyuru-block {
  margin-bottom: 1.5rem;
}

.t-duyuru-h2 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--t-text);
  letter-spacing: -0.02em;
}

.t-duyuru-dl {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.t-duyuru-dl > div {
  margin: 0;
}

.t-duyuru-dl dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--t-muted);
}

.t-duyuru-dl dd {
  margin: 0.2rem 0 0;
  font-size: 1rem;
  color: var(--t-text);
  line-height: 1.45;
}

.t-duyuru-tel {
  color: var(--t-accent);
  font-weight: 600;
  text-decoration: none;
}

.t-duyuru-tel:hover {
  text-decoration: underline;
}

.t-duyuru-prose {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--t-text);
}

.t-kategori-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: color-mix(in srgb, var(--t-accent) 15%, var(--t-surface));
  color: var(--t-accent);
  margin-right: 0.5rem;
  vertical-align: middle;
}

.tanitim-body--dark .t-kategori-pill {
  background: color-mix(in srgb, var(--t-accent) 24%, rgba(255, 255, 255, 0.06));
}

@supports not (background: color-mix(in srgb, red, blue)) {
  .t-kategori-pill {
    background: rgba(21, 101, 192, 0.12);
  }
  .tanitim-body--dark .t-kategori-pill {
    background: rgba(21, 101, 192, 0.25);
  }
}

.t-duyuru-etkinlik {
  font-size: 0.92rem;
  color: var(--t-muted);
  margin: 0 0 1rem;
  line-height: 1.45;
}

.t-duyuru-etkinlik strong {
  color: var(--t-text);
  font-weight: 600;
}

.t-article h1 {
  margin: 0 0 1rem;
  font-size: 1.65rem;
  line-height: 1.25;
}

.t-article__body {
  font-size: 1rem;
  line-height: 1.65;
  white-space: pre-wrap;
}

.t-list-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* İletişim */
.t-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.t-contact-card {
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  border-radius: 14px;
  padding: 1.25rem;
}

.t-contact-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.t-contact-card dl {
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.t-contact-card dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--t-muted);
}

.t-contact-card dd {
  margin: 0;
}

/* Footer */
.t-foot {
  background: var(--t-foot-bg);
  color: #cbd5e1;
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.t-foot a {
  color: #7dd3fc;
}

.t-foot__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  margin-bottom: 1.5rem;
}

.t-foot__title {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.t-foot__adres {
  margin: 0;
  line-height: 1.55;
}

.t-foot__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.t-foot__list li {
  margin-bottom: 0.35rem;
}

.t-social {
  margin: 0;
  padding: 0;
  list-style: none;
}

.t-social li {
  margin-bottom: 0.35rem;
}

.t-foot__copy {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: #94a3b8;
}

/* Giriş seçimi */
.t-giris-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 720px;
}

.t-giris-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.35rem 1.5rem;
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--t-text);
  box-shadow: 0 2px 12px rgba(13, 33, 55, 0.06);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.t-giris-card:hover {
  border-color: var(--t-accent);
  box-shadow: 0 8px 28px rgba(21, 101, 192, 0.12);
  transform: translateY(-2px);
}

.t-giris-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: rgba(21, 101, 192, 0.12);
  color: var(--t-accent);
  font-size: 1.2rem;
  font-weight: 800;
}

.t-giris-card__badge--uye {
  background: rgba(13, 148, 136, 0.15);
  color: var(--t-accent2);
}

.t-giris-card__title {
  font-size: 1.15rem;
  line-height: 1.3;
}

.t-giris-card__desc {
  font-size: 0.9rem;
  color: var(--t-muted);
  line-height: 1.45;
}

.t-giris-card__cta {
  margin-top: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--t-accent);
}

/* Giriş sayfaları — tema değişkenleri (--t-*) ile açık/koyu uyumlu */
.t-giris-page-sole {
  max-width: 640px;
}

.t-member-intro {
  max-width: 720px;
  margin-bottom: 1.25rem;
}

.t-member-alert {
  max-width: 720px;
  margin-bottom: 1rem;
}

.t-member-form {
  max-width: none;
}

.t-member-actions {
  margin-top: 0.9rem;
}

.t-giris-page-sole #uye,
.t-giris-page-sole #sms-kod-iste,
.t-giris-page-sole #yonetim {
  scroll-margin-top: 5.75rem;
}

/* Üye girişi + yönetim girişi: aynı kart genişliği ve taban yüksekliği */
.t-giris-page-sole > section#uye.t-giris-uye,
.t-giris-page-sole > section#yonetim.t-giris-yonetim {
  max-width: 28rem;
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
  min-height: clamp(23rem, 46vh, 32rem);
}

/* SMS ile şifre — kod iste (uye_sms_kod_iste.php) + şifre (uye_sms_sifre.php) */
.t-sms-sifre__crumb {
  margin: 1rem 0 0;
  font-size: 0.9rem;
}

.t-sms-sifre__crumb a {
  font-weight: 600;
}

.t-sms-sifre-page .t-page-title {
  margin-top: 0.35rem;
}

.t-sms-sifre__steps {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
  color: var(--t-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.t-sms-sifre__step--current {
  color: var(--t-text);
  font-weight: 600;
}

.t-giris-uye--sms-sole {
  max-width: 28rem;
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
  min-height: clamp(23rem, 46vh, 32rem);
}

@media (max-width: 640px) {
  .t-giris-uye__form--touch input:not([type="hidden"]),
  .t-giris-uye__form--touch textarea,
  .t-giris-uye__form--touch button,
  .t-giris-yonetim__form--touch input:not([type="hidden"]),
  .t-giris-yonetim__form--touch button {
    min-height: 2.75rem;
    font-size: 1rem;
  }

  .t-giris-uye {
    padding: 1rem 1rem;
  }

  .t-giris-yonetim {
    padding: 1rem 1rem;
  }

  .t-giris-uye__btn {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .t-giris-yonetim__btn {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }
}

.t-giris-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 960px;
  align-items: start;
}

@media (max-width: 900px) {
  .t-giris-page-grid {
    grid-template-columns: 1fr;
  }
}

.t-giris-uye {
  background: var(--t-surface);
  color: var(--t-text);
  border: 1px solid var(--t-border);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 2px 14px color-mix(in srgb, var(--t-text) 5%, transparent);
}

.tanitim-body--dark .t-giris-uye {
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.t-giris-uye__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--t-text);
}

.t-giris-uye__h3 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--t-text);
}

.t-giris-uye__lead {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--t-muted);
  line-height: 1.45;
}

.t-giris-uye__lead--compact {
  margin-top: 0;
  font-size: 0.88rem;
}

.t-giris-uye__lead--reset-top {
  margin-top: 0;
}

.t-giris-uye__lead--retry {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
}

.t-giris-uye__block {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--t-border);
}

.t-giris-uye__block:first-of-type {
  margin-top: 0.5rem;
  padding-top: 0;
  border-top: none;
}

.t-giris-uye__block--plain {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.t-giris-uye__form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.t-giris-uye__form label {
  font-size: 0.82rem;
  color: var(--t-muted);
}

.t-giris-uye__form input,
.t-giris-uye__form textarea {
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--t-border);
  background: color-mix(in srgb, var(--t-bg) 45%, var(--t-surface));
  color: var(--t-text);
  font: inherit;
}

.t-giris-uye__form textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 4.5rem;
  resize: vertical;
}

.t-giris-uye__form input:focus,
.t-giris-uye__form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--t-accent) 45%, transparent);
  border-color: var(--t-accent);
}

.t-giris-uye__kod {
  letter-spacing: 0.2em;
}

.t-giris-uye__btn {
  margin-top: 0.25rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: none;
  background: var(--t-accent);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.tanitim-body--dark .t-giris-uye__btn {
  color: #0b1018;
}

.t-giris-uye__btn:hover {
  filter: brightness(1.06);
}

.t-giris-uye__btn--outline {
  background: transparent;
  border: 1px solid var(--t-border);
  color: var(--t-accent);
}

.tanitim-body--dark .t-giris-uye__btn--outline {
  color: var(--t-accent);
}

.t-giris-uye__btn--outline:hover {
  background: color-mix(in srgb, var(--t-accent) 10%, transparent);
}

.t-giris-uye__err {
  border: 1px solid #c62828;
  background: #ffebee;
  color: #b71c1c;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.tanitim-body--dark .t-giris-uye__err {
  border-color: #da3633;
  background: rgba(248, 81, 73, 0.12);
  color: #ff9892;
}

.t-giris-uye a {
  color: var(--t-accent);
}

.t-giris-uye__sifre-yolu {
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--t-border);
  text-align: center;
}

.t-giris-uye__sifre-yolu__p {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--t-muted);
  font-weight: 600;
}

.t-giris-uye__sifre-yolu__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--t-accent);
  background: color-mix(in srgb, var(--t-accent) 10%, transparent);
  color: var(--t-accent);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  min-height: 2.75rem;
}

.t-giris-uye__sifre-yolu__btn:hover {
  background: color-mix(in srgb, var(--t-accent) 18%, transparent);
}

.tanitim-body--dark .t-giris-uye__sifre-yolu__btn {
  color: var(--t-accent);
}

.t-giris-yonetim {
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 2px 14px color-mix(in srgb, var(--t-text) 5%, transparent);
}

.tanitim-body--dark .t-giris-yonetim {
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.t-giris-yonetim__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--t-text);
}

.t-giris-yonetim__lead {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--t-muted);
  line-height: 1.45;
}

.t-giris-yonetim__form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.t-giris-yonetim__form label {
  font-size: 0.82rem;
  color: var(--t-muted);
}

.t-giris-yonetim__form input {
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--t-border);
  background: color-mix(in srgb, var(--t-bg) 45%, var(--t-surface));
  color: var(--t-text);
  font: inherit;
}

.t-giris-yonetim__form input:focus {
  outline: 2px solid color-mix(in srgb, var(--t-accent) 45%, transparent);
  border-color: var(--t-accent);
}

.t-giris-yonetim__btn {
  margin-top: 0.25rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: none;
  background: var(--t-accent);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.tanitim-body--dark .t-giris-yonetim__btn {
  color: #0b1018;
}

.t-giris-yonetim__btn:hover {
  filter: brightness(1.06);
}

.t-giris-yonetim__err {
  border: 1px solid #c62828;
  background: #ffebee;
  color: #b71c1c;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.tanitim-body--dark .t-giris-yonetim__err {
  background: rgba(248, 81, 73, 0.12);
  color: #ff9892;
  border-color: #da3633;
}

.t-alert {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
}

.t-alert--ok {
  border: 1px solid #2e7d32;
  background: #e8f5e9;
  color: #1b5e20;
}

.tanitim-body--dark .t-alert--ok {
  background: rgba(46, 125, 50, 0.2);
  color: #a5d6a7;
  border-color: #43a047;
}

.t-alert--err {
  border: 1px solid #c62828;
  background: #ffebee;
  color: #b71c1c;
}

.tanitim-body--dark .t-alert--err {
  border-color: #da3633;
  background: rgba(248, 81, 73, 0.12);
  color: #ff9892;
}

.t-alert--warn {
  border: 1px solid #b7791f;
  background: #fff8e1;
  color: #7c4a03;
}

.tanitim-body--dark .t-alert--warn {
  border-color: #d29922;
  background: rgba(210, 153, 34, 0.16);
  color: #f2cc60;
}

.t-download-action {
  margin: 1.35rem 0 1.15rem;
  text-align: center;
}

.t-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, #2384ff 0%, #0f6feb 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(15, 111, 235, 0.24);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.t-download-btn:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 28px rgba(15, 111, 235, 0.3);
  transform: translateY(-1px);
}

.t-download-btn:active {
  transform: translateY(0);
}

.tanitim-body--dark .t-download-btn {
  border-color: rgba(125, 211, 252, 0.26);
  background: linear-gradient(180deg, #1f8fff 0%, #0f6feb 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

/* Karanlık tema (panelden veya Bursa güneş / saat) */
.tanitim-body--dark {
  --t-bg: #0f1419;
  --t-surface: #1a2332;
  --t-text: #e8edf4;
  --t-muted: #94a3b8;
  --t-border: #2a3545;
  --t-accent: #7dd3fc;
  --t-accent2: #5eead4;
  --t-topbar-bg: #050a12;
  --t-foot-bg: #050a12;
}

.tanitim-body--dark .t-topbar a {
  color: #e2e8f0;
}

.tanitim-body--dark .t-head {
  background: var(--t-surface);
  border-bottom-color: var(--t-border);
}

.tanitim-body--dark .t-logo img {
  background: #121a28;
  border-color: var(--t-border);
}

.tanitim-body--dark .t-card {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.tanitim-body--dark .t-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.tanitim-body--dark .t-foot a {
  color: #7dd3fc;
}

.tanitim-body--dark .t-giris-card {
  background: var(--t-surface);
  border-color: var(--t-border);
}

.tanitim-body--dark .t-giris-card__badge {
  background: rgba(125, 211, 252, 0.12);
}

.tanitim-body--dark .t-giris-card__badge--uye {
  background: rgba(94, 234, 212, 0.12);
}

/* Kurumsal / tablolar / RSS / hızlı bağlantılar */
.t-prose-block {
  margin-top: 1.75rem;
}

.t-prose-block h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.t-prose {
  line-height: 1.65;
  margin: 0;
}

.t-table-wrap {
  overflow-x: auto;
  margin-top: 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--t-border);
}

.t-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.t-data-table th,
.t-data-table td {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--t-border);
  text-align: left;
  vertical-align: top;
}

.t-data-table thead th {
  background: rgba(21, 101, 192, 0.07);
  font-weight: 600;
}

.t-data-table tbody tr:last-child td {
  border-bottom: none;
}

.t-num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.t-yk-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  max-width: 640px;
}

.t-yk-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--t-border);
}

.t-rss-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  max-width: 720px;
}

.t-rss-list__item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--t-border);
}

.t-rss-list__row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.t-rss-list__thumb {
  flex-shrink: 0;
  width: 120px;
  max-width: 32%;
  aspect-ratio: 3 / 2;
  border-radius: 10px;
  overflow: hidden;
  background: color-mix(in srgb, var(--t-border) 35%, var(--t-surface));
  align-self: flex-start;
}

.t-rss-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.t-rss-list__body {
  flex: 1;
  min-width: 0;
}

.t-rss-list a {
  font-weight: 600;
}

@media (max-width: 480px) {
  .t-rss-list__row {
    flex-direction: column;
    gap: 0.65rem;
  }

  .t-rss-list__thumb {
    max-width: 100%;
    width: 100%;
    max-height: 200px;
  }
}

.t-rss-list__meta {
  display: block;
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

.t-rss-list__ozet {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--t-muted);
}

/* Kurullar (organ şeması) */
.t-kurul-page {
  max-width: 920px;
}

.t-kurul-block__title {
  font-size: 1.35rem;
  margin: 0 0 0.25rem;
  color: var(--t-text);
}

.t-kurul-block > .t-kurul-block__title {
  text-align: center;
}

.t-kurul-sub {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.75rem;
  color: var(--t-text);
}

.t-kurul-org {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.t-kurul-org__row--president {
  display: flex;
  justify-content: center;
}

.t-kurul-org__row--dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  align-items: start;
  max-width: 640px;
  margin-inline: auto;
}

.t-kurul-org__cell--left {
  display: flex;
  justify-content: flex-end;
  text-align: center;
}

.t-kurul-org__cell--right {
  display: flex;
  justify-content: flex-start;
  text-align: center;
}

.t-kurul-org__cell .t-kurul-card {
  max-width: 200px;
}

.t-kurul-org__row--members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
  margin-top: 0.25rem;
}

.t-kurul-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 1rem;
  justify-items: center;
}

.t-kurul-grid--three {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
}

.t-kurul-grid--three .t-kurul-card {
  flex: 0 1 auto;
}

/* Yönetim: başkan altı en fazla 4 sütun */
.t-kurul-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.t-kurul-yedek-heading {
  margin: 1.5rem 0 0.65rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--t-muted);
}

.t-kurul-grid--yedek {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
}

.t-kurul-grid--yedek .t-kurul-card {
  flex: 0 1 auto;
}

.t-kurul-chair-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1.35rem;
}

.t-kurul-card--chair {
  max-width: 280px;
  gap: 0.45rem;
}

.t-kurul-card__photo--chair {
  width: 200px;
  height: 200px;
  border-radius: 18px;
}

.t-kurul-card--chair .t-kurul-card__name {
  font-size: 1.05rem;
  font-weight: 650;
}

.t-kurul-card--chair .t-kurul-card__role {
  font-size: 0.88rem;
}

.t-kurul-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  max-width: 200px;
}

.t-kurul-card__photo {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid color-mix(in srgb, var(--t-accent) 35%, var(--t-border));
  background: color-mix(in srgb, var(--t-border) 55%, var(--t-surface));
  flex-shrink: 0;
  box-sizing: border-box;
}

.t-kurul-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

/* Logo fallback da kutuyu doldurur (cover); portreden farklı olarak tam ortadan kırpılır */
.t-kurul-card__img--logo {
  object-fit: cover;
  object-position: center center;
}

.t-kurul-card__name {
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--t-text);
}

.t-kurul-card__role {
  font-size: 0.82rem;
  color: var(--t-muted);
  line-height: 1.25;
}

.t-kurul-card__contact {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--t-muted);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  text-align: center;
  word-break: break-word;
  max-width: 100%;
}

.t-kurul-card__link {
  color: var(--t-accent);
  text-decoration: none;
}

.t-kurul-card__link:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .t-kurul-org__row--dual {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .t-kurul-org__cell--left,
  .t-kurul-org__cell--right {
    justify-content: center;
  }

  .t-kurul-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .t-kurul-chair-row {
    margin-bottom: 1.1rem;
  }

  .t-kurul-card__photo--chair {
    width: 168px;
    height: 168px;
    border-radius: 16px;
  }
}

.t-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--t-border);
}

.t-quick-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--t-border);
  background: var(--t-surface);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.t-quick-card:hover {
  border-color: var(--t-accent);
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.12);
}

.t-quick-card strong {
  font-size: 1rem;
  color: var(--t-text);
}

.tanitim-body--dark .t-data-table thead th {
  background: rgba(125, 211, 252, 0.08);
}

.tanitim-body--dark .t-quick-card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Sağda sabit piyasa özeti (dar banner) */
.t-piyasa-rail {
  display: none;
}

@media (min-width: 960px) {
  .has-piyasa-rail .t-main,
  .has-piyasa-rail .t-foot {
    padding-right: 5.25rem;
  }

  .t-piyasa-rail {
    display: block;
    position: fixed;
    right: 0;
    top: clamp(5.5rem, 16vh, 9rem);
    z-index: 40;
    width: 4.75rem;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .t-piyasa-rail__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.4rem 0.75rem;
    margin-left: 0.35rem;
    border-radius: 10px 0 0 10px;
    border: 1px solid var(--t-border);
    border-right: none;
    background: color-mix(in srgb, var(--t-surface) 92%, var(--t-bg));
    box-shadow: -4px 4px 18px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    font-size: 0.72rem;
    line-height: 1.2;
    transition: background 0.15s ease, box-shadow 0.15s ease;
  }

  .t-piyasa-rail__inner:hover {
    background: var(--t-surface);
    box-shadow: -6px 6px 22px rgba(21, 101, 192, 0.12);
  }

  .t-piyasa-rail__inner:focus-visible {
    outline: 2px solid var(--t-accent);
    outline-offset: 2px;
  }

  .t-piyasa-rail__cap {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--t-accent);
    padding: 0.15rem 0;
  }

  .t-piyasa-rail__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.08rem;
    padding: 0.2rem 0;
    border-top: 1px solid var(--t-border);
    width: 100%;
  }

  .t-piyasa-rail__sym {
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--t-muted);
    line-height: 1;
  }

  .t-piyasa-rail__val {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    font-size: 0.7rem;
    word-break: break-all;
    text-align: center;
  }

  .t-piyasa-rail__more {
    margin-top: 0.15rem;
    font-size: 0.62rem;
    color: var(--t-accent);
    font-weight: 600;
  }

  .t-piyasa-rail abbr {
    text-decoration: none;
  }
}

@media print {
  .t-piyasa-rail {
    display: none !important;
  }

  .has-piyasa-rail .t-main,
  .has-piyasa-rail .t-foot {
    padding-right: 0 !important;
  }
}

.tanitim-body--dark .t-piyasa-rail__inner {
  background: color-mix(in srgb, var(--t-surface) 88%, #000);
  box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.35);
}

/* Yorumlar (haber / duyuru detay) */
.t-yorumlar {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--t-border);
  max-width: 820px;
}

.t-yorumlar__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.t-yorumlar__bos {
  margin: 0 0 1rem;
}

.t-yorumlar__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.t-yorumlar__item {
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  box-shadow: 0 1px 8px rgba(13, 33, 55, 0.05);
}

.t-yorumlar__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}

.t-yorumlar__yazar {
  font-size: 0.95rem;
}

.t-yorumlar__zaman {
  font-size: 0.82rem;
  color: var(--t-muted);
}

.t-yorumlar__metin {
  font-size: 0.95rem;
  line-height: 1.5;
  word-break: break-word;
}

.t-yorumlar__uyari {
  color: #b71c1c;
  font-size: 0.92rem;
  margin: 0 0 1rem;
}

.t-yorumlar__form {
  margin-top: 0.5rem;
  padding: 1rem 1.15rem;
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 640px;
}

.t-yorumlar__label {
  font-weight: 600;
  font-size: 0.9rem;
}

.t-yorumlar__textarea {
  width: 100%;
  min-height: 6rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--t-border);
  background: var(--t-bg, var(--t-surface));
  color: inherit;
  font: inherit;
  resize: vertical;
}

.t-yorumlar__gonder {
  align-self: flex-start;
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  border: none;
  background: var(--t-accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.t-yorumlar__gonder:hover {
  filter: brightness(1.05);
}

.t-yorumlar__giris {
  margin: 0;
  font-size: 0.92rem;
}

.t-yorumlar__giris a {
  color: var(--t-accent);
  font-weight: 600;
}

/* Sol orta: başkan WhatsApp — yalnızca ikon; yazı panel ayarından aria-label olarak kullanılır */
.t-wa-float {
  position: fixed;
  left: max(0.5rem, env(safe-area-inset-left));
  top: 50%;
  transform: translateY(-50%);
  z-index: 42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  min-height: 3.1rem;
  padding: 0;
  border-radius: 50%;
  background: #1aad56;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: filter 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.t-wa-float:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.28);
}

.t-wa-float:focus-visible {
  outline: 3px solid color-mix(in srgb, #25d366 55%, #fff);
  outline-offset: 3px;
}

.t-wa-float__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.t-wa-float__icon svg {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  color: #fff;
  fill: #fff;
}

.tanitim-body--dark .t-wa-float__icon {
  background: transparent;
}

/* Dar ekran: sağ alt FAB — gönder / giriş alanları (solda/ortada) ile çakışmayı azaltır */
@media (max-width: 640px) {
  .tanitim-body--has-wa-fab .t-main {
    padding-bottom: max(5.75rem, calc(env(safe-area-inset-bottom) + 4.5rem));
  }

  .t-wa-float {
    top: auto;
    bottom: max(0.85rem, env(safe-area-inset-bottom));
    left: auto;
    right: max(0.65rem, env(safe-area-inset-right));
    transform: none;
  }
}

/* Üyelik başvurusu: forma çarpmasın — küçük daire sağ alt */
.tanitim-body--wa-min .t-wa-float {
  top: auto;
  left: auto;
  right: max(0.55rem, env(safe-area-inset-right));
  bottom: max(0.55rem, env(safe-area-inset-bottom));
  transform: none;
  width: 2.45rem;
  height: 2.45rem;
  min-height: 2.45rem;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.18);
}

.tanitim-body--wa-min .t-wa-float__icon svg {
  width: 1.52rem;
  height: 1.52rem;
}

@media (max-width: 640px) {
  .tanitim-body--wa-min .t-giris-page-sole {
    padding-bottom: max(5.25rem, calc(env(safe-area-inset-bottom) + 4.25rem));
  }
}

@media print {
  .t-wa-float {
    display: none !important;
  }
}
