html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  overflow-x: hidden;
}

body > .container {
  flex: 1 0 auto;
  width: 100%;
}

.fbl-adminCard {
  border: 1px solid rgba(11, 27, 58, 0.15);
  border-radius: 14px;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
  color: inherit;
}

.fbl-adminCard:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 27, 58, 0.35);
  box-shadow: 0 10px 22px rgba(11, 27, 58, 0.10);
}

.fbl-adminIcon {
  font-size: 22px;
  line-height: 1;
}

.fbl-header {
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
}

:root{
  --fbl-navy:#0b1b3a;
  --fbl-yellow:#ffeb00;
}

.fbl-topbar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.fbl-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 2px solid var(--fbl-navy);
  background: #fff;
  color: var(--fbl-navy);
  font-weight: 900;
  line-height: 1;
}

.fbl-burger:hover {
  background: rgba(11, 27, 58, 0.04);
}

.fbl-burger:focus-visible {
  outline: 3px solid rgba(255, 235, 0, 0.55);
  outline-offset: 2px;
}

.fbl-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.fbl-brandLogos {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fbl-brandDivider {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(11, 27, 58, 0.25) 15%, rgba(11, 27, 58, 0.25) 85%, transparent);
  flex-shrink: 0;
}

.fbl-logo {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

.fbl-logoClub {
  height: 56px;
}

.fbl-logoDernek {
  height: 56px;
}

.fbl-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 26px;
  align-items: center;
}

.fbl-link {
  text-decoration: none;
  color: #0b1b3a;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 13px;
  white-space: nowrap;
}

.fbl-link:hover {
  text-decoration: underline;
  text-underline-offset: 7px;
}

.fbl-navDropdown {
  display: inline-flex;
}
.fbl-navDropdown .dropdown-toggle {
  text-decoration: none;
}
.fbl-navDropdown .dropdown-toggle::after {
  margin-left: 0.35em;
}
.fbl-dropdownMenu {
  background: var(--fbl-navy);
  border: none;
  border-radius: 8px;
  padding: 0.5rem 0;
}
.fbl-dropdownMenu .dropdown-item {
  color: rgba(255, 255, 255, 0.9);
}
.fbl-dropdownMenu .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.fbl-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.fbl-langSwitcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fbl-flagLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 24px;
  padding: 0;
  border-radius: 4px;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  text-decoration: none;
  line-height: 1;
}

.fbl-flagLink:hover {
  transform: scale(1.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.fbl-flagLink:not(.fbl-flagLinkActive) {
  opacity: 0.75;
}

.fbl-flagLinkActive {
  border-color: #ffeb00;
  box-shadow: 0 0 0 1px rgba(255, 235, 0, 0.3);
  opacity: 1;
  pointer-events: none;
}

.fbl-flagImg {
  display: block;
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

.fbl-flagLinkMobile {
  width: 36px;
  height: 28px;
}

.fbl-flagLinkMobile .fbl-flagImg {
  width: 28px;
  height: 19px;
}

.fbl-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: #ffeb00;
  color: #0b1b3a;
  border-radius: 8px;
  border: 1px solid #0b1b3a;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s ease, box-shadow 0.15s ease;
}

.fbl-cta:hover {
  filter: brightness(0.96);
  box-shadow: 0 2px 8px rgba(11, 27, 58, 0.12);
}

.fbl-cta .fbl-ctaIcon {
  font-size: 1em;
  opacity: 0.9;
}

.fbl-ctaSecondary {
  background: #fff;
  color: #0b1b3a;
  border: 1px solid rgba(11, 27, 58, 0.25);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.fbl-ctaSecondary:hover {
  background: rgba(11, 27, 58, 0.05);
  border-color: #0b1b3a;
  box-shadow: 0 2px 8px rgba(11, 27, 58, 0.08);
}

.fbl-socials {
  display: flex;
  gap: 6px;
  align-items: center;
}

.fbl-social {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--fbl-navy);
  border-radius: 50%;
  border: 1px solid rgba(11, 27, 58, 0.18);
  background: #fff;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.fbl-social:hover {
  background: var(--fbl-navy);
  color: var(--fbl-yellow);
  border-color: var(--fbl-navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(11, 27, 58, 0.15);
}

.fbl-socialIcon {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.fbl-social:focus-visible{
  outline: 3px solid rgba(255, 235, 0, 0.55);
  outline-offset: 2px;
}

/* Orta ve küçük ekranlarda taşmayı önle: önce sosyal ikonları header'dan kaldır (offcanvas'ta kalır) */
@media (max-width: 1100px) {
  .fbl-header .fbl-socials {
    display: none;
  }

  .fbl-topbar {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .fbl-right {
    margin-left: auto;
    flex-shrink: 0;
  }

  .fbl-nav {
    flex: 1 1 auto;
    min-width: 0;
  }

  .fbl-cta {
    flex-shrink: 0;
  }
}

/* 992px ve altı: menü + butonlar taşmasın diye hepsi hamburger menüde (Admin panelinde çok buton olunca kesiliyordu) */
@media (max-width: 992px) {
  .fbl-topbar {
    flex-wrap: wrap;
    gap: 14px;
  }

  .fbl-nav {
    display: none;
  }

  .fbl-socials {
    display: none;
  }

  .fbl-logo,
  .fbl-logoClub,
  .fbl-logoDernek {
    height: 44px;
  }

  .fbl-brandDivider {
    height: 36px;
  }

  .fbl-right {
    margin-left: auto;
    gap: 10px;
  }

  .fbl-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Header'da sadece logo + dil seçici + hamburger; menü, ÜYE OL vb. offcanvas'ta */
  .fbl-right > :not(.fbl-burger):not(.fbl-langSwitcher) {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .fbl-topbar {
    flex-wrap: wrap;
    gap: 14px;
  }
}

.fbl-hero {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  min-height: 720px;
  margin-top: 18px;
  position: relative;
}

.fbl-heroCarousel {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
}

.fbl-heroCarousel .carousel-inner,
.fbl-heroCarousel .carousel-item {
  height: 100%;
  min-height: 720px;
}

.fbl-heroSlide {
  width: 100%;
  height: 100%;
  min-height: 720px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
}

.fbl-heroCarouselControl {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0.9;
  z-index: 2;
}

.fbl-heroCarouselControl:hover {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.fbl-heroCarouselIndicators {
  z-index: 2;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0;
  justify-content: center;
}

.fbl-heroCarouselIndicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
}

.fbl-heroCarouselIndicators button.active {
  background-color: #fff;
}

.fbl-heroOverlay {
  min-height: 720px;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.05) 100%);
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 1;
  /* Slayt geçişinde yazı/butonların blink olmaması için ayrı katmanda sabit tut */
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.fbl-heroOverlay .fbl-heroContent {
  pointer-events: auto;
}

.fbl-heroOverlay .fbl-heroCarouselIndicators {
  pointer-events: auto;
}

.fbl-heroContent {
  padding: 32px;
  max-width: 720px;
  color: #fff;
}

.fbl-heroTitle {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 10px 0;
}

.fbl-heroSubtitle {
  font-size: 18px;
  margin: 0 0 18px 0;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .fbl-hero {
    min-height: 50vh;
    margin-left: 0;
    margin-right: 0;
    border-radius: 12px;
  }

  .fbl-heroCarousel,
  .fbl-heroCarousel .carousel-inner,
  .fbl-heroCarousel .carousel-item {
    position: absolute;
    inset: 0;
    min-height: 0;
    height: 100%;
  }

  .fbl-heroSlide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    background-size: cover;
    background-position: center;
  }

  .fbl-heroOverlay {
    min-height: 0;
    height: 100%;
  }

  .fbl-heroTitle {
    font-size: 28px;
    line-height: 1.2;
  }

  .fbl-heroSubtitle {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .fbl-heroContent {
    padding: 20px 16px 60px;
  }

  .fbl-heroCarouselIndicators {
    bottom: 12px;
  }
}

/* Basketbol sayfası – başlıktan ayrı, contained slider (anasayfa referansı) */
.fbl-basketbolSliderSpacer {
  height: 40px;
  flex-shrink: 0;
}
.fbl-basketbolSliderWrap {
  padding-bottom: 24px;
}
.fbl-basketbolSlider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11, 27, 58, 0.12);
  aspect-ratio: 16 / 9;
}
.fbl-basketbolCarousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
}
.fbl-basketbolCarousel .carousel-inner,
.fbl-basketbolCarousel .carousel-item {
  height: 100%;
}
.fbl-basketbolSlide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.fbl-basketbolIndicators {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: 0;
  justify-content: center;
  z-index: 2;
}
.fbl-basketbolIndicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 0 3px;
  border: none;
}
.fbl-basketbolIndicators button.active {
  background-color: #fff;
}
@media (max-width: 768px) {
  .fbl-basketbolSliderSpacer {
    height: 28px;
  }
  .fbl-basketbolSlider {
    max-width: 100%;
  }
  .fbl-basketbolIndicators {
    bottom: 12px;
  }
}

/* Basketbol galeri */
.fbl-basketbolGaleriWrap {
  padding-bottom: 56px;
}
.fbl-basketbolGaleri {
  margin-top: 96px;
}
.fbl-basketbolGaleriTitle {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fbl-navy);
  letter-spacing: 0.02em;
  margin: 0 0 24px 0;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--fbl-yellow);
  display: inline-block;
}
.fbl-basketbolGaleriGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.fbl-basketbolGaleriItem {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(11, 27, 58, 0.06);
  box-shadow: 0 2px 12px rgba(11, 27, 58, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}
.fbl-basketbolGaleriItem:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(11, 27, 58, 0.14);
}
.fbl-basketbolGaleriImg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.fbl-basketbolGaleriItem:hover .fbl-basketbolGaleriImg {
  transform: scale(1.03);
}
.fbl-basketbolGaleriEmpty {
  color: rgba(11, 27, 58, 0.65);
  font-size: 0.95rem;
  margin: 0;
  padding: 32px 24px;
  background: rgba(11, 27, 58, 0.04);
  border-radius: 12px;
  border: 1px dashed rgba(11, 27, 58, 0.15);
}
@media (max-width: 768px) {
  .fbl-basketbolGaleri {
    margin-top: 56px;
  }
  .fbl-basketbolGaleriGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .fbl-basketbolGaleriTitle {
    font-size: 1.25rem;
    margin-bottom: 18px;
  }
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Full-width inner page headers (like reference site) */
.fbl-fullbleed {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

.fbl-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

.fbl-pageHero {
  background: url("/img/page-header.png") center/cover no-repeat;
}

.fbl-pageHeroOverlay {
  background: linear-gradient(90deg,
    rgba(11, 27, 58, 0.92) 0%,
    rgba(11, 27, 58, 0.78) 55%,
    rgba(11, 27, 58, 0.55) 100%);
  min-height: 190px;
  display: flex;
  align-items: flex-end;
  padding: 34px 0;
}

.fbl-pageHeroTitle {
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 56px;
  line-height: 1.05;
}

.fbl-pageHeroCrumb {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.fbl-pageHeroCrumb a {
  color: #fff;
  text-decoration: none;
}

.fbl-pageHeroCrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Spor Okulları - Coming Soon */
.fbl-comingSoon {
  text-align: center;
  padding: 4rem 1.5rem 5rem;
}
.fbl-comingSoonTitle {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fbl-navy);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.fbl-comingSoonText {
  font-size: 1.125rem;
  color: rgba(11, 27, 58, 0.8);
  max-width: 32ch;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .fbl-pageHeroOverlay {
    min-height: 150px;
    padding: 26px 0;
  }

  .fbl-pageHeroTitle {
    font-size: 34px;
  }
}

/* Hakkımızda */
.fbl-aboutOrgName {
  color: var(--fbl-navy);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.fbl-aboutBlock {
  max-width: 56ch;
}

.fbl-aboutHeading {
  color: var(--fbl-navy);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.fbl-aboutText {
  color: #333;
  line-height: 1.7;
  margin-bottom: 0;
}

.fbl-privacyList {
  color: #333;
  line-height: 1.7;
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.fbl-privacyList li {
  margin-bottom: 0.5rem;
}

.fbl-aboutImageWrap {
  position: sticky;
  top: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11, 27, 58, 0.12);
}

.fbl-aboutImage {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  vertical-align: top;
}

/* Mobil: görsel yazının altında, kesmeden tam göster */
@media (max-width: 991px) {
  .fbl-aboutImageWrap--below {
    margin-left: auto;
    margin-right: auto;
  }

  .fbl-aboutImageWrap {
    position: static;
    overflow: visible;
    max-width: 280px;
    margin: 0 auto 0.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(11, 27, 58, 0.08);
  }

  .fbl-aboutImage {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0;
  }
}

/* İletişim sayfası */
.fbl-contactSection {
  max-width: 1240px;
  margin: 0 auto;
}

.fbl-contactCard {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(11, 27, 58, 0.08);
  border: 1px solid rgba(11, 27, 58, 0.06);
  text-align: center;
}

.fbl-contactCardIcon {
  color: var(--fbl-yellow);
  margin-bottom: 1rem;
}

.fbl-contactCardIcon svg {
  display: inline-block;
  vertical-align: top;
}

.fbl-contactCardTitle {
  color: var(--fbl-navy);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.fbl-contactCardText {
  color: #333;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.fbl-contactLink {
  color: var(--fbl-navy);
  text-decoration: none;
}

.fbl-contactLink:hover {
  text-decoration: underline;
  color: var(--fbl-navy);
}

.fbl-contactFormSection .fbl-contactFormSubtitle,
.fbl-contactFormSection .fbl-contactFormTitle {
  text-align: center;
}

.fbl-contactFormSubtitle {
  color: #0d8050;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.fbl-contactFormTitle {
  color: var(--fbl-navy);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.fbl-contactForm .fbl-input {
  border-radius: 10px;
  border: 1px solid rgba(11, 27, 58, 0.2);
  padding: 0.6rem 0.9rem;
}

.fbl-contactForm .fbl-input:focus {
  border-color: var(--fbl-navy);
  box-shadow: 0 0 0 3px rgba(11, 27, 58, 0.08);
}

.fbl-textarea {
  min-height: 120px;
  resize: vertical;
}

.fbl-contactPrivacyLabel {
  font-size: 0.875rem;
  color: #444;
}

.fbl-contactPrivacyLabel a {
  color: var(--fbl-navy);
  text-decoration: underline;
}

.fbl-btnSubmit {
  background: var(--fbl-yellow);
  color: var(--fbl-navy);
  font-weight: 700;
  padding: 0.65rem 2rem;
  border-radius: 10px;
  border: none;
  letter-spacing: 0.02em;
}

.fbl-btnSubmit:hover {
  background: #e6d600;
  color: var(--fbl-navy);
}

.fbl-contactSuccess {
  border-radius: 10px;
  margin-bottom: 1rem;
}

.fbl-contactBankTitle {
  color: #0d8050;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.fbl-contactBankCard {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(11, 27, 58, 0.08);
  box-shadow: 0 6px 20px rgba(11, 27, 58, 0.06);
  max-width: 480px;
}

.fbl-contactBankCard p {
  margin-bottom: 0.25rem;
  color: #333;
  font-size: 0.9375rem;
}

/* Harita: responsive, kesilmeden, kenarlara dayanmadan */
.fbl-contactMapSection {
  margin-top: 2rem;
}

.fbl-contactMapWrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 27, 58, 0.08);
  aspect-ratio: 16 / 9;
  max-height: 420px;
  background: #e8e8e8;
}

.fbl-contactMapWrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
}

@media (max-width: 767px) {
  .fbl-contactMapWrap {
    max-height: 280px;
    aspect-ratio: 4 / 3;
  }
}

.fbl-contactMapLink {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.fbl-contactMapLink a {
  color: var(--fbl-navy);
  text-decoration: none;
}

.fbl-contactMapLink a:hover {
  text-decoration: underline;
}

/* Board page */
.fbl-boardLeader {
  border-radius: 12px;
  overflow: hidden;
  border: 0;
  background: #fff;
  box-shadow: 0 12px 34px rgba(11, 27, 58, 0.10);
}

/* Başkan görseli her zaman üyelerden belirgin şekilde büyük */
.fbl-boardLeader .fbl-boardLeaderCol {
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .fbl-boardLeader .fbl-boardLeaderCol {
    max-width: 420px;
  }
}

.fbl-boardLeaderImgWrap {
  width: 100%;
  overflow: hidden;
  background: #f5f6f8;
}

/* Mobil: Başkan kutusu üye kartlarından daha yüksek (min 520px) */
@media (max-width: 767px) {
  .fbl-boardLeaderImgWrap {
    min-height: 520px;
  }

  .fbl-boardPhotoLeader {
    object-fit: cover;
    min-height: 0;
    max-height: none;
  }
}

/* Masaüstü: Başkan kutusu geniş ve yüksek, üyelerden büyük */
@media (min-width: 768px) {
  .fbl-boardLeaderImgWrap {
    min-height: 380px;
    max-height: 520px;
  }
}

.fbl-boardCardImgWrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f6f8;
}

/* Tüm yüzler aynı hizada: yüz bölgesi ortada */
.fbl-boardPhoto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.fbl-boardPhotoLeader {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  background: #f5f6f8;
}

.fbl-boardName {
  font-size: 24px;
  font-weight: 900;
  color: var(--fbl-navy);
}

.fbl-boardRole {
  font-size: 14px;
  font-weight: 800;
  color: rgba(11, 27, 58, 0.78);
  margin-top: 4px;
}

.fbl-boardSectionTitle {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--fbl-navy);
}

/* Hiyerarşi ağacı: kademeler arası boşluk ve ince bağlayıcı */
.fbl-boardTree {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fbl-boardTreeLevel {
  padding: 0.25rem 0;
}

.fbl-boardTreeConnector {
  width: 2px;
  height: 28px;
  margin: 0 auto 8px;
  background: linear-gradient(to bottom, rgba(11, 27, 58, 0.12), rgba(11, 27, 58, 0.06));
  border-radius: 2px;
}

.fbl-boardCard {
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(11, 27, 58, 0.08);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.fbl-boardCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(11, 27, 58, 0.14);
}

.fbl-boardCardName {
  font-weight: 900;
  color: var(--fbl-navy);
}

.fbl-boardCardRole {
  font-size: 12px;
  font-weight: 700;
  color: rgba(11, 27, 58, 0.72);
}

/* Login page hero text */
.fbl-loginText {
  margin-bottom: 18px;
}

.fbl-loginKicker {
  color: #1a8f3a;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 12px;
  text-transform: uppercase;
}

.fbl-loginHeadline {
  margin-top: 10px;
  color: var(--fbl-navy);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.08;
  font-size: clamp(28px, 3vw, 44px);
}

/* Footer dual logos */
.fbl-footerLogos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 14px;
}

.fbl-footerLogo {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.88;
}

.fbl-footerLogo:hover {
  opacity: 1;
}

/* Haberler listesi (fenerbahce.org tarzı grid) */
.fbl-haberSection {
  padding: 36px 16px 48px;
}

.fbl-haberGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.fbl-haberCard {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(11, 27, 58, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fbl-haberCard:hover {
  box-shadow: 0 14px 36px rgba(11, 27, 58, 0.14);
  transform: translateY(-2px);
}

.fbl-haberCardLink {
  display: block;
  text-decoration: none;
  color: inherit;
}

.fbl-haberCardImgWrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(11, 27, 58, 0.06), rgba(11, 27, 58, 0.02));
}

.fbl-haberCardImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.fbl-haberCard:hover .fbl-haberCardImg {
  transform: scale(1.03);
}

.fbl-haberCardBody {
  padding: 18px 20px 22px;
}

.fbl-haberCardMeta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(11, 27, 58, 0.65);
}

.fbl-haberCardKategori {
  color: var(--fbl-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fbl-haberCardTitle {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.28;
  color: var(--fbl-navy);
}

.fbl-haberCardSpot {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(11, 27, 58, 0.78);
}

.fbl-haberCardSource {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(11, 27, 58, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fbl-haberFenerbahceOrgCta {
  text-align: center;
  padding: 32px 20px 40px;
  background: linear-gradient(135deg, rgba(11, 27, 58, 0.04), rgba(11, 27, 58, 0.02));
  border-radius: 12px;
  margin-bottom: 32px;
  border: 1px solid rgba(11, 27, 58, 0.08);
}

.fbl-haberFenerbahceOrgCtaText {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fbl-navy);
}

.fbl-haberFenerbahceOrgBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Haber detay sayfası */
.fbl-pageHero--small .fbl-pageHeroOverlay {
  min-height: 120px;
  padding: 24px 0;
}

.fbl-haberDetay {
  padding: 32px 16px 56px;
  max-width: 780px;
}

.fbl-haberDetayHeader {
  margin-bottom: 28px;
}

.fbl-haberDetayMeta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(11, 27, 58, 0.7);
}

.fbl-haberDetayMeta time {
  font-weight: 600;
}

.fbl-haberDetayTitle {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.22;
  color: var(--fbl-navy);
}

.fbl-haberDetaySpot {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(11, 27, 58, 0.85);
  font-weight: 600;
}

.fbl-haberDetayImgWrap {
  margin-bottom: 28px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 27, 58, 0.12);
}

.fbl-haberDetayImg {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.fbl-haberDetayBody {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fbl-navy);
}

.fbl-haberDetayBody p {
  margin: 0 0 1em;
}

.fbl-haberDetayBody p:last-child {
  margin-bottom: 0;
}