
  /* Sekme butonları (BU HAFTA, BU AY) */
  .tab-buttons {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px; /* Sekmeler arası boşluk */
    margin-bottom: 15px;
  }

  .tab-buttons li {
    cursor: pointer;
    padding: 10px 15px;
    background-color: #e0e0e0;
    border-radius: 5px;
    font-weight: bold;
  }

  .tab-buttons li.active {
    background-color: #056599;
    color: white;
  }

  /* Sekme içeriği */
  .tab-content {
    display: none;
  }

  .tab-content.active {
    display: block;
  }

  /* Kutu kapsayıcısı: flex ile yan yana diziliyor */
  .haber-wrapper {
    display: flex;
    flex-wrap: wrap;       /* Taşarsa alt satıra geç */
    gap: 3px;              /* KUTULAR ARASI 3px boşluk */
  }

  /* Tek bir haber kutusu */
  .haber-kutu {
    width: 318px;                /* 4 tanesi yan yana sığsın (4 x 23% + gap) */
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    background-color: #fff;
    margin-left: 10px;         /* SOL TARAFTA 10px BOŞLUK */
    box-sizing: border-box;
  }

  .haber-baslik {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
  }

  .haber-img img {
    width: 296px;        /* Sabit genişlik */
    height: auto;
    border-radius: 4px;
  }

  .haber-ozet {
    margin-top: 8px;
    font-size: 18px;
    color: #555;
  }

  .haber-hit {
    margin-top: 4px;
    font-size: 13px;
    color: #000;
  }

 

