body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #c7d3df;
}

/* Genel container */
.container {
  max-width: 1200px;
  margin: 2px auto;
  padding: 0 20px;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background-color: #12273b;
}

/* Header */
header {
  padding: 5px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px; /* Boşluk değeri düzeltildi */
  background-color: #12273b;
  padding: 0 10px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 100px;
}

.logo img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
}

@media (max-width: 1187px) {
  header .container {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .logo {
    margin-right: 0;
  }

  .logo img {
    max-width: 90%;
  }
}

/* Weather */
.weather {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  max-height: 50px;
}

.city-weather {
  background-color: #c7d3df;
  padding: 3px 12px;
  border-radius: 6px;
  text-align: center;
  min-width: 90px;
  max-height: 45px;
  font-weight: 500;
  cursor: default;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.city-weather:hover {
  background-color: rgba(205, 202, 236, 0.432);
}

.city-name {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #12273b;
}

.weather-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  color: #12273b;
}

.weather-icon {
    flex-shrink: 0;
    color: #12273b;
}

.temp {
  font-size: 16px;
  margin-top: 0;
  font-weight: 700;
}
/* Mevcut gizleme kodunu iptal et */
@media (max-width: 1187px) {
  .weather {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 10px;
    justify-content: flex-start;
    max-height: none;
    scrollbar-width: thin; /* Firefox */
  }

  .city-weather {
    min-width: 100px;
    max-width: 45%;
    flex: 1 1 45%;
    margin: 5px 0;
    padding: 6px 10px;
    font-size: 14px;
  }

  .city-name {
    font-size: 13px;
  }

  .temp {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .weather {
    display: none;
  }
}
s
/* BIST Widget Alanı */
.bist-ticker-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 10px auto;
  background-color: #12273b;
  border-radius: 8px;
  padding: 10px 12px;
  box-sizing: border-box;
  overflow: hidden;
  font-size: 13px;
  padding-top: 20px;
}


/* --- */
/* === GENEL SLIDER BÖLÜMÜ === */
.haber-slider-konteyner {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #12273b;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    color: white;
    margin-top: 10px;
}

/* === SLIDER İÇ YAPI === */
.slider-icerik-alani {
    flex: 2;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-kaydirici {
    overflow: hidden;
}

.slider-liste {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.5s ease-in-out;
}

/* === HER SLIDE İÇİN === */
.slider-oge {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* === BÜYÜK + SAĞ HABERLER YAN YANA === */
.haber-grubu-sira {
    display: flex;
    width: 100%;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: nowrap; /* Masaüstünde yan yana kalsın */
}

/* --- */
/* === BÜYÜK HABER === */
.buyuk-haber-kutusu {
  height: 100%;
  position: relative;
  min-height: 200px; /* Masaüstünde minimum yükseklik */
  border-radius: 8px;
  overflow: hidden; /* Taşmayı engelle, kritik! */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
  background-color: #b12727; /* Görsel boşluk bırakırsa görünecek renk */
}

.buyuk-haber-kutusu a {
  text-decoration: none;
  color: #fcf9f9;
  font-size: 28px;
  font-weight: bold;
  display: block;
  margin: 0;
}

.buyuk-haber-kutusu strong {
    font-size: 26px;
    margin-bottom: 12px;
    line-height: 1.3;
    display: block;
}

/* İçerik ve tarih görünmez */
.buyuk-haber-kutusu p,
.buyuk-haber-kutusu em {
  display: none;
}

.haber-gorsel {
  width: 100%; /* Kutunun tam genişliğini kapla */
  height: 400px; /* Masaüstünde sabit bir yükseklik */
  object-fit: cover; /* En boy oranını koruyarak kutuyu doldur, taşanı kes */
  border-radius: 6px;
  display: block;
  margin: 0 auto;
}

.haber-baslik-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(177, 39, 39, 0.8); /* Yarı saydam kırmızı arka plan */
  color: white;
  padding: 15px; /* İç boşluk */
  text-decoration: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-sizing: border-box;
  text-align: center;
}

.haber-baslik-overlay strong {
  font-size: 24px;
  line-height: 1.3;
}

/* --- */
/* === SAĞDAKİ 3 KÜÇÜK HABER === */
.sag-haberler {
  flex: 1 1 0;
  display: flex;
  flex-direction: column; /* Masaüstünde alt alta sırala */
  gap: 20px;
  background-color: #12273b;
  min-width: 350px; /* Genişlik verilmezse bazen sıfır olabilir */
}

/* Her sağ kutu */
.sag-haber-kutu {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background-color: #b12727;
  border: 1px solid #12273b;
  padding: 12px;
  border-radius: 8px;
  height: 110px; /* Sabit yükseklik */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sag-haber-gorsel {
  width: 105px;
  height: 105px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.sag-haber-icerik {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #c7d3df;
}

.sag-haber-icerik strong {
  font-size: 16px;
  color: #c7d3df;
  margin-bottom: 5px;
}

.sag-haber-icerik a {
  text-decoration: none;
  color: inherit;
}

.sag-haber-icerik p {
  font-size: 14px;
  color: #c7d3df;
  margin: 0;
}

.sag-haber-icerik em {
  font-size: 12px;
  color: #c7d3df;
  margin-top: 5px;
}

/* --- */
/* === SLIDER SAYFALAMA === */
.slider-sayfalama {
    text-align: center;
    margin-top: 30px;
    position: absolute; /* Görselin üzerinde konumlanır */
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(12, 28, 44, 0.8);
    padding: 8px 15px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 2px 5px #ffffff;
}

.page-dot.active {
    background-color: #c7d3df;
    color: #000911;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.slider-pagination {
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 3;
}

.page-dot {
  background: none;
  border: 1px solid #ebdede;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  color: #c7d3df;
  font-size: 16px;
  box-sizing: border-box;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* --- */
/* === DUYARLI TASARIM MEDYA SORGULARI === */

/* 1187px ve altı ekranlar (Tabletler ve küçük laptoplar) */
@media (max-width: 1187px) {
  /* Genel slider konteyneri padding ayarlaması */
  .haber-slider-konteyner {
    padding: 20px;
  }

  /* Haber grubu düzeni (Büyük haber üstte, küçük haberler altta) */
  .haber-grubu-sira {
      flex-direction: column; /* Öğeleri alt alta sırala */
      gap: 20px; /* Öğeler arası boşluk */
      align-items: center; /* Yatayda ortala */
      flex-wrap: wrap;
  }

  /* Büyük haber kutusu için daha esnek yükseklik */
  .buyuk-haber-kutusu {
    height: auto;
    min-height: unset;
    padding: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    width: 100%; /* Tam genişlik kapla */
    max-width: auto; /* Çok genişlemeyi engelle (isteğe bağlı) */
    margin: 0 auto; /* Ortala */
  }

  /* Büyük haber görseli için sabit yükseklik (kırmızı alan çözümü) */
  .haber-gorsel {
    width: 100%;
    height: 500px; /* Bu aralık için daha uygun, sabit yükseklik */
    object-fit: cover;
    display: block;
  }

  /* Başlık overlay'i */
  .haber-baslik-overlay {
    padding: 10px;
  }

  .haber-baslik-overlay strong {
    font-size: 20px;
  }

  /* HER BİR SAĞ HABER KUTUSU İÇİN KESİN YÜKSEKLİK VE İÇERİK KONTROLÜ */
  .sag-haber-kutu {
  height: auto;
  padding: 12px;
  box-sizing: border-box;
  overflow: hidden; /* Taşmayı gizle - ÇOK ÖNEMLİ! */
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex: 0 0 100%; /* Flex item olarak tam genişliği kaplamasını sağlar */
  width: 100%; /* Kutunun içinde bulunduğu konteynerin tam genişliğini alır */
}

  .sag-haber-gorsel {
    width: auto;
    height: 105px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .sag-haber-icerik {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    overflow: hidden; /* İç metinleri taşarsa gizle */
  }

  /* BAŞLIK METNİ AYARLARI */
  .sag-haber-icerik strong {
    font-size: 16px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px; /* Başlık ile paragraf arasına boşluk */
  }

  /* AÇIKLAMA METNİ AYARLARI */
  .sag-haber-icerik p {
    font-size: 13px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0; /* Üst boşluğu kaldır */
  }

  /* TARİH METNİ AYARLARI */
  .sag-haber-icerik em {
    font-size: 11px;
    margin-top: 3px; /* Tarih ile açıklama arasına boşluk */
  }
  /* Sayfalama noktaları */
  .page-dot {
    width: 30px; /* Biraz küçült */
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    margin: 10px 8px;
  }
}

/* 768px ve altı ekranlar (Telefonlar) */
@media (max-width: 768px) {
  /* Genel slider konteyneri padding ayarlaması */
  .haber-slider-konteyner {
    padding: 15px;
  }

  /* Haber grubu düzeni */
  .haber-grubu-sira {
      flex-direction: column;
      gap: 15px;
  }

  /* Büyük haber kutusu */
  .buyuk-haber-kutusu {
    height: auto;
    min-height: auto;
    padding: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    width: 100%;
  }

  /* Büyük haber görseli için daha da küçük sabit yükseklik (kırmızı alan çözümü) */
  .haber-gorsel {
    width: 100%;
    height: 180px; /* Mobil için daha uygun, sabit bir yükseklik */
    object-fit: cover;
    display: block;
  }

  /* Başlık overlay'i */
  .haber-baslik-overlay {
    padding: 8px;
  }

  .haber-baslik-overlay strong {
    font-size: 16px;
  }

  /* Sağdaki haberler bloğu (kendi içlerinde alt alta) */
  .sag-haberler {
    flex: 1 1 100%;
    min-width: unset;
    width: 100%;
    gap: 10px;
    padding: 0 5px;
    box-sizing: border-box;
    flex-direction: column; /* Sağdaki haberleri de alt alta sırala */
    align-items: center;
  }

  /* Her bir sağ haber kutusu */
  .sag-haber-kutu {
    width: 100%; /* Tek sütun olduğu için tam genişlik */
    max-width: 400px; /* Çok genişlemeyi engelle */
    margin: 0 auto; /* Ortala */
    gap: 8px;
    padding: 8px;
    height: auto;
    min-height: 100px; /* Minimum yükseklik */
  }

  .sag-haber-gorsel {
    width: 90px;
    height: 90px;
  }

  .sag-haber-icerik strong {
    font-size: 14px;
  }

  .sag-haber-icerik p {
    font-size: 12px;
  }

  .sag-haber-icerik em {
    font-size: 10px;
  }

  /* Slider sayfalama (konum ayarı) */
  .slider-sayfalama {
    position: relative;
    margin-top: -50px; /* Yukarı çeker */
    margin-bottom: 10px;
    bottom: auto;
    left: auto;
    transform: none;
  }

  .page-dot {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 12px; /* Daha küçük font */
    margin: 2px 3px;
  }
}

/* 480px ve altı ekranlar (Çok küçük telefonlar) */
@media (max-width: 480px) {
  /* Genel slider konteyneri padding ayarlaması */
  .haber-slider-konteyner {
    padding: 10px;
  }

  /* Büyük haber görseli biraz daha küçültülmüş */
  .haber-gorsel {
    height: 160px; /* Çok küçük ekranlar için */
  }

  .haber-baslik-overlay strong {
    font-size: 14px;
  }

  /* Sağdaki haber kutuları için daha da optimize edilmiş */
  .sag-haber-kutu {
    min-height: 80px;
  }

  .sag-haber-gorsel {
    width: 70px;
    height: 70px;
  }

  .sag-haber-icerik strong {
    font-size: 12px;
  }

  .sag-haber-icerik p {
    font-size: 10px;
  }
  .sag-haber-icerik em {
    font-size: 9px;
  }

  .page-dot {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 11px;
    margin: 1px 2px;
  }

  /* Hizmet ikon kutuları */
  .ikon-kutular .container {
    gap: 10px;
    padding: 5px;
  }
  .ikon-kutu {
    width: calc(100% - 10px); /* Tek sütun */
    height: 80px;
  }
}

/* --- */
/* SON HABERLER */
.son-haberler-wrapper {
  padding: 0px 0;
  overflow: hidden;
  margin-bottom: 10px;
}

.son-haberler-container {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.son-haberler-baslik {
  font-size: 24px;
  font-weight: bold;
  white-space: nowrap;
  flex-shrink: 0;
  color: #c7d3df;
}

.son-haberler-slider {
  overflow: hidden;
  flex-grow: 1;
  position: relative;
}

.son-haberler-list {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: scrollHaberler 20s linear infinite;
  white-space: nowrap;
}

.son-haberler-item {
  padding: 10px;
  min-width: max-content;
}

.son-haberler-item a {
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.son-haberler-item a:hover {
  color: #f2b632;
}

@keyframes scrollHaberler {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .son-haberler-wrapper {
    display: none; /* Mobilde gizle */
  }
}

/* --- */
/* HİZMETLER / İKON KUTULARI */
.ikon-kutular .container {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 5px;
  background-color: #12273b;
  padding: 10px;
}

.ikon-kutu {
  cursor: pointer;
  width: 180px;
  height: 100px;
  background-color: #12273b;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ikon-kutu:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.ikon-kutu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .ikon-kutular .container {
    gap: 12px;
    padding: 8px;
  }
  .ikon-kutu {
    width: calc(50% - 18px);
    height: 120px;
  }
}

/* --- */
/* BANNER */
.banner-alt {
  padding: 10px 0;
}

.banner-kutu {
  width: 100%;
  max-width: 1200px;
  height: 100px;
  margin: 0 auto;
  background-color: #c7d3df;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.banner-kutu:hover {
  transform: translateY(-5px);
}

.video-icerik {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-icerik video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

/* Diğer Banner */
.bolumler-arasi-banner {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  background-color: #12273b;
  border-radius: 10px;
  overflow: hidden;
}

.bolumler-arasi-banner .container {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: none;
}

.bolumler-arasi-banner img.banner-gorsel {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .bolumler-arasi-banner {
    padding: 0;
    margin: 10px auto;
  }
}

/* --- */
/* ÖNE ÇIKANLAR */
.one-cikanlar-wrapper {
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  border-radius: 10px;
  margin: 5px auto 10px auto;
  padding: 5px;
  background-color: #12273b;
}

.one-cikanlar-baslik {
  position: relative;
  z-index: 2;
  color: #c7d3df;
  margin-top: 0;
  padding-top: 10px;
  text-align: center;
}

.one-cikanlar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 10px 10px;
  box-sizing: border-box;
}

.one-cikan-kutu {
  background-color: #b12727;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.one-cikan-kutu:hover {
  transform: translateY(-5px);
}

.one-cikan-kutu img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.one-cikan-kutu strong {
  color: #c7d3df;
  font-size: 16px;
  display: block;
}

/* MOBİL UYUMLULUK KODLARI (SADECE ÖNE ÇIKANLAR İÇİN) */
@media (max-width: 992px) {
  .one-cikanlar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 16px;
    row-gap: 10px;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .one-cikanlar-wrapper {
    padding: 10px;
    margin: 5px auto 10px auto;
  }

  .one-cikanlar-baslik {
    font-size: 20px;
    padding-top: 5px;
  }

  .one-cikanlar-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 5px;
  }

  .one-cikan-kutu {
    padding: 8px;
    height: auto;
    min-height: 160px;
  }

  .one-cikan-kutu img {
    height: 100px;
    margin-bottom: 8px;
  }

  .one-cikan-kutu strong {
    font-size: 14px;
    line-height: 1.3;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
}

@media (max-width: 480px) {
  .one-cikanlar-wrapper {
    margin: 5px auto;
  }
  .one-cikanlar-baslik {
    font-size: 20px;
  }
  .one-cikanlar-grid {
    gap: 10px;
    padding: 5px;
  }
  .one-cikan-kutu {
    min-height: 140px;
  }
  .one-cikan-kutu img {
    height: 80px;
  }
  .one-cikan-kutu strong {
    font-size: 13px;
  }
}

/* --- */
/* SPOR HABERLERİ BÖLÜMÜ */
.spor-haberler-bolumu {
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  border-radius: 10px;
  margin: 10px auto 10px auto;
  padding: 5px;
  background-color: #12273b;
}

.bolum-baslik {
  font-size: 28px;
  color: #c7d3df;
  margin-bottom: 15px;
  text-align: center;
  padding-top: 1px;
}

.spor-reklam-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  padding: 10px;
  box-sizing: border-box;
  align-items: start;
}

.spor-haberler {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.spor-haber-kutu {
  background-color: #b12727;
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
  color: #c7d3df;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 180px;
}

.spor-haber-kutu:hover {
  transform: translateY(-5px);
}

.spor-haber-kutu img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.spor-baslik {
  padding: 0;
  font-weight: bold;
  font-size: 16px;
  color: #c7d3df;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reklam-alani {
  grid-row: span 2;
  background-color: #b12727;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #c7d3df;
  height: calc((180px * 2) + 30px + 20px);
}

.reklam-alani:hover {
  transform: translateY(-5px);
}

.reklam-alani img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 1px;
}

.reklam-alani video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* DUYARLI TASARIM (SADECE SPOR BÖLÜMÜ İÇİN DÜZENLENDİ) */
@media (max-width: 992px) {
  .spor-reklam-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .spor-haberler {
    grid-template-columns: repeat(2, 1fr);
  }
  .reklam-alani {
    grid-row: auto; /* Dikey yayılmayı kaldır */
    height: auto; /* İçeriğe göre yükseklik */
    min-height: 180px; /* Minimum bir yükseklik verilebilir */
    width: 100%; /* Kendi bloğunda tam genişlik */
    max-width: 255px; /* Çok genişlemeyi engelle (isteğe bağlı) */
    margin: 0 auto; /* Ortala */
    /* Reklam görseli/videosu varsa, iç boyutlandırmasını kontrol edin */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  /* Reklam alanının içindeki görsel/video için */
  .reklam-alani img,
  .reklam-alani video {
    max-height: 250px; /* Bu aralıkta görsel/video maksimum yüksekliği */
    width: auto; /* En-boy oranını koruyarak genişlesin */
  }
}

@media (max-width: 768px) {
  .spor-haberler {
    grid-template-columns: 1fr;
  }
  .reklam-alani {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    min-height: 120px;
  }
  .reklam-alani img {
    height: auto;
  }
}

@media (max-width: 480px) {
  .spor-haber-kutu {
    height: auto;
  }
  .spor-haber-kutu img {
    height: 100px;
  }
}

/* --- */
/* FOOTER */
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.footer-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.footer-icons a {
  color: white;
  background-color: #12273b;
  padding: 10px;
  margin: 5px;
  border-radius: 50%;
  display: inline-block;
  font-size: 18px;
  transition: background 0.3s;
  text-decoration: none;
}

.footer-icons a:hover {
  background-color: #ffffff;
  color: #12273b;
  transition: background 0.3s;
}

.footer-text {
  font-size: 14px;
  color: #c7d3df;
  margin: 0;
}

/* Modal Arka Planı */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

/* Modal İçeriği */
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  color: #12273b;
  font-family: sans-serif;
}

/* Kapatma Butonu */
.close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

@media (max-width: 768px) {
  .footer-container {
    margin-bottom: 5px;
    padding: 10px;
    box-sizing: border-box;
  }

  .footer-icons {
    gap: 15px;
    margin-bottom: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-icons img {
    width: 25px;
    height: 25px;
  }

  .footer-text {
    font-size: 12px;
    text-align: center;
    padding: 0 10px;
  }

  @media (max-width: 480px) {
    .footer-icons {
      gap: 10px;
    }

    .footer-icons img {
      width: 22px;
      height: 22px;
    }

    .footer-text {
      font-size: 11px;
    }
  }
}

/* --- */
/* GENEL BAĞLANTI SIFIRLAMALARI */
a,
a:visited,
a:hover,
a:active {
  text-decoration: none !important;
  border-bottom: none !important;
}

.sag-haber-link,
.sag-haber-link:hover,
.one-cikan-link,
.one-cikan-link:hover {
  text-decoration: none !important;
  border-bottom: none !important;
}

.sag-haber-icerik strong,
.one-cikan-kutu strong,
.haber-baslik-overlay strong {
  text-decoration: none !important;
  border-bottom: none !important;
}