﻿:root {
  --theme-color: #0B7A3B;
  --theme-dark: #064D25;
  --theme-light: #F2F2F2;
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;
  --bsp-page-max: 1170px;
  --bsp-page-gutter: 16px;
  --bsp-module-pad: 18px;
  --bsp-manset-ratio: 16 / 10;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text-dark);
  background: #efecec;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--theme-color); text-decoration: none; }
a:hover { color: var(--theme-dark); }

@keyframes bsp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.bsp-marquee-track {
  animation: bsp-marquee var(--bsp-breaking-duration, 48s) linear infinite;
}
.bsp-marquee-track:hover {
  animation-play-state: paused;
}

.bsp-wrap {
  width: 100%;
  background: #efecec;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.bsp-wrap > main,
.bsp-wrap > .container,
.bsp-wrap > div.container {
  flex: 1 0 auto;
}
.bsp-footer { flex-shrink: 0; }
.bsp-container {
  max-width: var(--bsp-page-max);
  width: min(var(--bsp-page-max), calc(100% - (var(--bsp-page-gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

/* Beyaz modül kutuları — iç boşluk burada, container padding’inde değil */
.bsp-module {
  background: #fff;
  border-radius: 8px;
  padding: var(--bsp-module-pad);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.bsp-module-flush {
  padding: 0;
  overflow: hidden;
}

/* Alt sayfa içerik — header ile aynı dış genişlik; Bootstrap padding/gutter dış kenarı kaydırmasın */
.bsp-wrap .container {
  max-width: var(--bsp-page-max) !important;
  width: min(var(--bsp-page-max), calc(100% - (var(--bsp-page-gutter) * 2))) !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
}

/* Doğrudan container > row: dış sütun kenarları header ile hizalı, sütun arası boşluk kalsın */
.bsp-wrap .container > .row {
  --bs-gutter-x: 1.5rem;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.bsp-wrap .container > .row > [class*="col-"] {
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}
.bsp-wrap .container > .row > [class*="col-"]:first-child {
  padding-left: 0;
}
.bsp-wrap .container > .row > [class*="col-"]:last-child {
  padding-right: 0;
}
.bsp-wrap .container > .row > [class*="col-"]:first-child:last-child {
  padding-left: 0;
  padding-right: 0;
}

/* Topbar — tarih (sol) + sosyal medya (sağ) */
.bsp-topbar {
  width: 100%;
  background: var(--theme-dark);
  color: rgba(255, 255, 255, 0.85);
  min-height: 36px;
}
.bsp-topbar-inner {
  max-width: var(--bsp-page-max);
  width: min(var(--bsp-page-max), calc(100% - (var(--bsp-page-gutter) * 2)));
  margin: 0 auto;
  padding: 0;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
}
.bsp-topbar-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bsp-topbar-date i {
  font-size: 13px;
  opacity: .75;
}
.bsp-topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.bsp-topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  transition: background-color .15s ease, color .15s ease;
}
.bsp-topbar-social a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* Header — sayfa gri olsa da üst alan beyaz kalsın */
.bsp-header {
  width: 100%;
  background: #fff;
  border-bottom: 3px solid var(--theme-color);
}
.bsp-header-inner {
  max-width: var(--bsp-page-max);
  width: min(var(--bsp-page-max), calc(100% - (var(--bsp-page-gutter) * 2)));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
  box-sizing: border-box;
}
.bsp-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 240px;
}
.bsp-logo-img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.bsp-logo-fallback {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.4px;
  color: var(--text-dark);
}
.bsp-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.bsp-nav a {
  color: #3a3a3a;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 4px;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.bsp-nav a:hover,
.bsp-nav a:focus-visible,
.bsp-nav a.active {
  color: var(--theme-color);
  text-decoration: none;
  border-bottom-color: var(--theme-color);
}
.bsp-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.bsp-search-btn {
  background: none;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  cursor: pointer;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #3a3a3a;
  transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}
.bsp-search-btn:hover,
.bsp-search-btn[aria-expanded="true"] {
  color: var(--theme-color);
  border-color: var(--theme-color);
  background: rgba(11, 122, 59, 0.06);
}
.bsp-cta {
  background: var(--theme-color);
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .4px;
  padding: 10px 16px;
  border: 1px solid var(--theme-color);
  border-radius: 6px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.bsp-cta:hover {
  background: var(--theme-dark);
  border-color: var(--theme-dark);
  color: #fff !important;
  text-decoration: none;
}
.bsp-cta-ghost {
  background: #fff;
  color: var(--theme-color) !important;
  border-color: #cfe3d6;
}
.bsp-cta-ghost:hover {
  background: rgba(11, 122, 59, 0.08);
  border-color: var(--theme-color);
  color: var(--theme-dark) !important;
}

/* Arama paneli */
.bsp-search-panel {
  border-top: 1px solid #eee;
  background: #fafafa;
}
.bsp-search-panel[hidden] { display: none; }
.bsp-search-form {
  max-width: var(--bsp-page-max);
  width: min(var(--bsp-page-max), calc(100% - (var(--bsp-page-gutter) * 2)));
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  box-sizing: border-box;
}
.bsp-search-form-icon {
  position: absolute;
  left: 14px;
  font-size: 15px;
  color: #9a9a9a;
  pointer-events: none;
}
.bsp-search-form input[name="q"] {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 14px 0 40px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.bsp-search-form input[name="q"]:focus {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 3px rgba(11, 122, 59, 0.12);
}
.bsp-search-form input.site-search-input--invalid {
  border-color: #d33;
  box-shadow: 0 0 0 3px rgba(221, 51, 51, 0.12);
}
.bsp-search-submit {
  height: 46px;
  padding: 0 22px;
  border: none;
  border-radius: 6px;
  background: var(--theme-color);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background-color .15s ease;
}
.bsp-search-submit:hover { background: var(--theme-dark); }
.bsp-search-close {
  width: 40px;
  height: 46px;
  border: none;
  background: none;
  color: #777;
  font-size: 15px;
  cursor: pointer;
  border-radius: 6px;
  transition: color .15s ease, background-color .15s ease;
}
.bsp-search-close:hover { color: var(--text-dark); background: #eee; }
.bsp-search-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Breaking */
.bsp-breaking {
  width: 100%;
  background: var(--theme-color);
  overflow: hidden;
}
.bsp-breaking-inner {
  max-width: var(--bsp-page-max);
  width: min(var(--bsp-page-max), calc(100% - (var(--bsp-page-gutter) * 2)));
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
}
.bsp-breaking-label {
  background: var(--theme-dark);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
}
.bsp-breaking-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 42px;
}
.bsp-breaking-track {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.bsp-breaking-time {
  color: #FFE600;
  font-weight: 700;
  font-size: 13px;
  padding: 0 8px 0 20px;
}
.bsp-breaking-title {
  color: #fff;
  font-size: 14px;
  padding-right: 36px;
}
.bsp-breaking-title a { color: #fff; }
.bsp-breaking-title a:hover { color: #FFE600; }

/* Surmanset */
.bsp-surmanset {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #111;
  margin-top: 22px;
}
.bsp-surmanset-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .4s ease;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.bsp-surmanset-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.bsp-surmanset-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bsp-surmanset-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,77,37,0) 0%, rgba(6,77,37,0.15) 28%, rgba(6,77,37,0.9) 62%, rgba(0,0,0,0.96) 100%);
  pointer-events: none;
}
.bsp-surmanset-nums {
  position: absolute;
  left: 22px;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  z-index: 3;
}
.bsp-surmanset-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  background: rgba(255,255,255,0.85);
  color: #333;
  text-decoration: none;
  transition: all .15s ease;
}
.bsp-surmanset-num:hover { color: #333; text-decoration: none; }
.bsp-surmanset-num.active {
  background: var(--theme-color);
  color: #fff;
  box-shadow: 0 0 0 2px #fff;
}
.bsp-surmanset-num.active:hover { color: #fff; }
.bsp-surmanset-caption {
  position: absolute;
  right: 34px;
  top: 0;
  height: 100%;
  width: 74%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  z-index: 2;
  pointer-events: none;
}
.bsp-surmanset-caption h2 {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: 42px;
  line-height: 0.94;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.55);
  margin: 0;
}
.bsp-surmanset-caption h2 a { color: #fff; pointer-events: auto; }
.bsp-surmanset-caption .sub {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #FFE600;
  margin-top: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Section heads */
.bsp-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--theme-color);
  padding-bottom: 8px;
}
.bsp-section-head h2,
.bsp-section-head h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: .3px;
  margin: 0;
}
.bsp-section-head h3 { font-size: 18px; }
.bsp-section-head a {
  font-weight: 700;
  font-size: 13px;
  color: var(--theme-color);
}

/* Matches */
.bsp-matches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.bsp-match-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: 20px 18px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.bsp-match-card.highlight {
  background: #f4faf6;
  border: 2px solid var(--theme-color);
  padding: 19px 17px;
}
.bsp-match-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}
.bsp-match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.bsp-match-logo {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bsp-match-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.bsp-match-abbr {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .3px;
  color: #666;
}
.bsp-match-name {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  text-align: center;
  line-height: 1.2;
}
.bsp-match-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 72px;
}
.bsp-match-score {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  color: #111;
  white-space: nowrap;
  letter-spacing: -.5px;
}
.bsp-match-score.upcoming { color: #999; }
.bsp-match-score.live { color: var(--theme-color); }
.bsp-match-week {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .3px;
  color: #777;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}
.bsp-match-card.highlight .bsp-match-week { color: var(--theme-color); }
.bsp-match-date {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 14px;
}

/* Main layout */
.bsp-main-grid {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 34px;
}
.bsp-main-col {
  flex: 0 0 64%;
  max-width: 64%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}
.bsp-side-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Maç programı — beyaz modül */
.bsp-module-matches {
  margin-top: 30px;
}

/* Manset */
.bsp-manset {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: var(--bsp-manset-ratio);
  border-radius: 6px;
  overflow: hidden;
  background: #222;
}
.bsp-manset-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 0;
  display: block;
  color: inherit;
  text-decoration: none;
}
.bsp-manset-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.bsp-manset-slide:hover { color: inherit; text-decoration: none; }
.bsp-manset-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bsp-manset-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 45%);
  pointer-events: none;
}
.bsp-manset-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  z-index: 4;
  border: none;
  color: #fff;
}
.bsp-manset-arrow:hover { background: var(--theme-color); }
.bsp-manset-arrow.prev { left: 14px; }
.bsp-manset-arrow.next { right: 14px; }
.bsp-manset-cap {
  position: absolute;
  left: 22px;
  bottom: 24px;
  right: 60px;
  z-index: 3;
}
.bsp-manset-label {
  display: inline-block;
  background: var(--theme-color);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 22px 6px 14px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}
.bsp-manset-title {
  background: rgba(255,255,255,0.88);
  padding: 14px 18px;
  margin-top: 2px;
  max-width: 94%;
}
.bsp-manset-title span,
.bsp-manset-title a {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 29px;
  line-height: 1.08;
  color: var(--text-dark);
}
.bsp-manset-nums {
  display: flex;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-right: none;
  position: relative;
  z-index: 5;
}
.bsp-manset-num {
  flex: 1;
  text-align: center;
  padding: 7px 0;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  border-right: 1px solid #ddd;
  background: #fff;
  color: #444;
  text-decoration: none;
  display: block;
  transition: all .12s ease;
}
.bsp-manset-num.active,
.bsp-manset-num:hover {
  background: var(--theme-color);
  color: #fff;
  text-decoration: none;
}

/* Latest news */
.bsp-latest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 20px;
}
.bsp-news-card {
  border: 1px solid #ececec;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}
.bsp-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}
.bsp-news-card-img {
  position: relative;
  display: block;
  height: auto;
  aspect-ratio: var(--bsp-manset-ratio);
  background: #ddd;
  overflow: hidden;
}
.bsp-news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.bsp-news-card-cat {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--theme-color);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 11px;
  letter-spacing: .3px;
}
.bsp-news-card-body { padding: 12px 14px 14px; background: #fff; }
.bsp-news-card-title,
.bsp-news-card-body h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bsp-news-card-title a,
.bsp-news-card-body h3 a {
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bsp-news-card-title a:hover,
.bsp-news-card-body h3 a:hover { color: var(--theme-color); }
.bsp-news-card-date {
  font-size: 12px;
  color: #999;
  margin-top: 9px;
}

/* Most read */
.bsp-most-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #ececec;
}
.bsp-most-rank {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 34px;
  color: #a9d9bd;
  line-height: 1;
  flex-shrink: 0;
  width: 34px;
  text-align: center;
}
.bsp-most-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
  color: var(--text-dark);
  margin: 0;
}
.bsp-most-title a { color: inherit; }
.bsp-most-title a:hover { color: var(--theme-color); }
.bsp-most-meta {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}
.bsp-most-meta span { color: var(--theme-color); font-weight: 600; }

/* Standings — beyaz arka plan yalnızca tabloda */
.bsp-standings {
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  background: transparent;
  padding: 0;
}
.bsp-standings-head {
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 6px 6px 0 0;
  margin-bottom: 0;
}
.bsp-standings-head span {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.bsp-standings-head select {
  background: #fff;
  border: none;
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.bsp-standings-cols,
.bsp-standings-body {
  padding: 5px 15px;
  background: #fff;
}
/* Yerel çubuk tamamen gizlenir; yerine içeriğin üstünde çizilen .ovl-thumb kullanılır
   (bkz. js/web-layout.js) — böylece çubuk görünürken içerik genişliği değişmez. */
.bsp-standings-body {
  max-height: 300px; /* ~10 satır */
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.bsp-standings-body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.ovl-thumb {
  position: absolute;
  right: 3px;
  width: 5px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.18s ease;
  cursor: default;
  z-index: 4;
}
.ovl-thumb.is-visible {
  opacity: 1;
}
.ovl-thumb:hover,
.ovl-thumb.is-dragging {
  background: rgba(0, 0, 0, 0.45);
}
.bsp-standings-cols,
.bsp-standings-row {
  display: grid;
  grid-template-columns: 30px 1fr 34px 44px 38px;
  align-items: center;
}
.bsp-standings-cols {
  font-size: 11px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  background: #f5f5f5;
  border-bottom: 1px solid #eee;
}
.bsp-standings-row {
  margin: 0 -15px;
  padding: 5px 15px;
  font-size: 13.5px;
  color: #222;
  border-bottom: 1px solid #f1f1f1;
}
.bsp-standings-row:last-child {
  border-bottom: none;
}
.bsp-standings-row.hl-team {
  background: rgba(11,122,59,0.07);
  font-weight: 700;
  color: var(--theme-dark);
}
.bsp-standings-row.hl-leader {
  background: #eaf4ee;
  font-weight: 700;
}
.bsp-standings-more {
  display: block;
  text-align: center;
  padding: 11px 15px;
  margin-top: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--theme-color);
  background: #fff;
  border-top: 1px solid #eee;
}
.bsp-standings-more:hover { opacity: 0.85; }
.bsp-standings-empty {
  padding: 16px 0;
  font-size: 13px;
  color: #888;
  text-align: center;
}

/* Sağ sütun kompakt maç programı */
.bsp-side-matches .bsp-section-head {
  margin-bottom: 10px;
}
.bsp-side-matches .bsp-section-head h3 {
  font-size: 16px;
}
.bsp-side-matches-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bsp-side-match {
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 10px 10px 9px;
  background: #fff;
}
.bsp-side-match.is-current {
  border-color: var(--theme-color);
  background: #f4faf6;
  box-shadow: inset 0 0 0 1px var(--theme-color);
}
.bsp-side-match-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px;
}
.bsp-side-match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.bsp-side-match-logo {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bsp-side-match-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.bsp-side-match-abbr {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 9px;
  letter-spacing: .2px;
  color: #666;
}
.bsp-side-match-name {
  font-size: 11px;
  font-weight: 600;
  color: #333;
  text-align: center;
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bsp-side-match-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 48px;
}
.bsp-side-match-score {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  color: #111;
  white-space: nowrap;
  text-align: center;
}
.bsp-side-match-score.upcoming {
  color: #999;
}
.bsp-side-match-week {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: .35px;
  color: #777;
  text-transform: uppercase;
  line-height: 1.2;
}
.bsp-side-match.is-current .bsp-side-match-week {
  color: var(--theme-color);
}
.bsp-side-match-empty {
  padding: 12px 8px;
  font-size: 12px;
  color: #888;
  text-align: center;
  line-height: 1.4;
}

/* Sağ blok modülleri — .news-article ile aynı kart stili (reklam + puan durumu hariç) */
.bsp-side-col > div:not(.bsp-standings):not(.sidebar-ad-slot):not(.bsp-ad-position),
.bsp-side-col > aside:not(.sidebar-ad-slot):not(.bsp-ad-position),
.bsp-page-sidebar > div:not(.bsp-standings):not(.sidebar-ad-slot):not(.bsp-ad-position),
.bsp-page-sidebar > aside:not(.sidebar-ad-slot):not(.bsp-ad-position) {
  background: var(--white, #fff);
  border-radius: 8px;
  padding: 28px 32px 36px;
}
.bsp-side-col > .sidebar-ad-slot,
.bsp-page-sidebar > .sidebar-ad-slot,
.bsp-side-col > .bsp-ad-position,
.bsp-page-sidebar > .bsp-ad-position {
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.bsp-side-col > .bsp-side-matches,
.bsp-page-sidebar > .bsp-side-matches {
  padding: 16px 14px 18px;
}

/* Alt sayfa sağ sütun — anasayfa ile aynı dikey boşluk */
.bsp-page-sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bsp-page-sidebar .sidebar-ad-slot {
  margin-bottom: 0;
}
.bsp-page-sidebar .sidebar-ad-slot img,
.bsp-side-col .sidebar-ad-slot img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .bsp-side-col > div:not(.bsp-standings):not(.sidebar-ad-slot):not(.bsp-ad-position),
  .bsp-side-col > aside:not(.sidebar-ad-slot):not(.bsp-ad-position),
  .bsp-page-sidebar > div:not(.bsp-standings):not(.sidebar-ad-slot):not(.bsp-ad-position),
  .bsp-page-sidebar > aside:not(.sidebar-ad-slot):not(.bsp-ad-position) {
    padding: 20px 18px 24px;
  }
}

/* Columnists */
.bsp-col-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
.bsp-col-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ddd;
  flex-shrink: 0;
  overflow: hidden;
  display: block;
}
.bsp-col-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bsp-col-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: .3px;
  text-decoration: none;
  display: inline-block;
}
a.bsp-col-name:hover { color: var(--theme-dark); text-decoration: underline; }
.bsp-col-title {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.3;
  margin-top: 4px;
}
.bsp-col-title a { color: inherit; text-decoration: none; }
.bsp-col-title a:hover { color: var(--theme-color); text-decoration: underline; }

/* Footer */
.bsp-footer {
  width: 100%;
  background: var(--theme-dark);
  margin-top: 42px;
  color: #fff;
}
.bsp-footer-inner {
  max-width: var(--bsp-page-max);
  width: min(var(--bsp-page-max), calc(100% - (var(--bsp-page-gutter) * 2)));
  margin: 0 auto;
  padding: 34px 0 26px;
  box-sizing: border-box;
}
.bsp-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.bsp-footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 520px;
}
.bsp-footer-brand .mark {
  width: 44px;
  height: 44px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.bsp-footer-brand .mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bsp-footer-brand .mark span {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--theme-dark);
}
.bsp-footer-brand .name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
}
.bsp-footer-brand .desc {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 3px;
}
.bsp-footer-social {
  display: flex;
  gap: 10px;
}
.bsp-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .15s ease;
}
.bsp-footer-social a:hover { background: var(--theme-color); color: #fff; }
.bsp-footer-menus {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.bsp-footer-menus h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  margin: 0 0 12px;
  color: #fff;
}
.bsp-footer-menus a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
}
.bsp-footer-menus a:hover { color: #fff; }
.bsp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
}
.bsp-footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.bsp-footer-credit-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.bsp-footer-credit-brand img {
  display: block;
  height: 28px;
  width: auto;
  mix-blend-mode: screen;
}

@media (max-width: 1024px) {
  .bsp-main-grid { flex-direction: column; }
  .bsp-main-col, .bsp-side-col { flex: none; max-width: 100%; width: 100%; }
  .bsp-surmanset {
    height: auto;
    background: transparent;
    overflow: visible;
  }
  .bsp-surmanset-slide {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
  }
  .bsp-surmanset-slide.active { display: block; }
  .bsp-surmanset-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: unset;
    object-position: unset;
    vertical-align: top;
  }
  .bsp-surmanset-grad {
    background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,0.72) 100%);
  }
  .bsp-surmanset-caption {
    right: 12px;
    left: 12px;
    top: auto;
    bottom: 0;
    height: auto;
    width: auto;
    padding: 28px 4px 14px;
    align-items: flex-start;
    text-align: left;
    justify-content: flex-end;
  }
  .bsp-surmanset-caption h2 {
    font-size: 22px;
    line-height: 1.15;
    font-style: normal;
    letter-spacing: -.3px;
  }
  .bsp-surmanset-caption .sub {
    font-size: 13px;
    margin-top: 6px;
  }
  .bsp-surmanset-nums {
    left: 10px;
    top: 0;
    height: 100%;
    gap: 8px;
  }
  .bsp-surmanset-num {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  .bsp-manset-title a { font-size: 20px; }
  .bsp-footer-menus { grid-template-columns: repeat(2, 1fr); }

  /* Maç programı — yatay slider, yan kartlar kısmen görünür */
  .bsp-matches {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    margin-top: 14px;
    margin-left: calc(var(--bsp-module-pad) * -1);
    margin-right: calc(var(--bsp-module-pad) * -1);
    padding: 4px var(--bsp-module-pad) 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--bsp-module-pad);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .bsp-matches::-webkit-scrollbar { display: none; }
  .bsp-match-card {
    flex: 0 0 min(78%, 300px);
    scroll-snap-align: center;
    padding: 12px 10px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  }
  .bsp-match-card.highlight {
    padding: 11px 9px;
  }
  .bsp-match-row { gap: 6px; }
  .bsp-match-team { gap: 5px; }
  .bsp-match-logo {
    width: 42px;
    height: 42px;
  }
  .bsp-match-abbr { font-size: 11px; }
  .bsp-match-name {
    font-size: 11px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .bsp-match-mid {
    gap: 2px;
    min-width: 56px;
  }
  .bsp-match-score { font-size: 24px; }
  .bsp-match-week { font-size: 9px; letter-spacing: .2px; }
  .bsp-match-date { font-size: 11px; margin-top: 8px; }
}
@media (max-width: 768px) {
  :root { --bsp-page-gutter: 12px; }
}

@media (max-width: 640px) {
  .bsp-latest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .bsp-news-card-body { padding: 8px 8px 10px; }
  .bsp-news-card-title,
  .bsp-news-card-body h3 { font-size: 13px; line-height: 1.3; }
  .bsp-surmanset-caption h2 { font-size: 17px; }
  .bsp-surmanset-nums { display: none; }
  .bsp-footer-top { flex-direction: column; }
  .bsp-footer-bottom { flex-direction: column; text-align: center; }
  .bsp-topbar-inner { justify-content: space-between; gap: 10px; }
  .bsp-topbar-date { font-size: 11.5px; min-width: 0; flex: 1; }
  .bsp-topbar-social { margin-left: auto; }

  .bsp-match-card {
    flex-basis: 82%;
  }
}

/* Reklam pozisyonları */
.bsp-ad-position {
  width: 100%;
}
.bsp-ad-position .sidebar-ad-slot {
  margin-bottom: 0;
}
.bsp-ad-position--banner {
  display: flex;
  justify-content: center;
  margin: 16px auto;
  max-width: var(--bsp-page-max, 1200px);
  width: min(var(--bsp-page-max, 1200px), calc(100% - (var(--bsp-page-gutter, 24px) * 2)));
}
.bsp-ad-position--banner .sidebar-ad-slot {
  width: 100%;
  text-align: center;
}
.bsp-ad-position--banner .sidebar-ad-slot img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.bsp-ad-position--inline {
  margin: 18px 0;
}
.bsp-ad-position--inline .sidebar-ad-slot img {
  max-width: 100%;
  height: auto;
}
.news-article .bsp-ad-position--banner {
  width: 100%;
  max-width: 100%;
  margin: 16px 0;
}
