.haberler-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.haberler-banner {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

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

.haberler-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.haberler-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.haberler-banner-overlay h1 {
    color: white;
    font-size: 40px;
    margin: 0;
}

.haberler-listesi {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
}

.haber-box {
    width: 100%;
    min-height: 220px;
    display: flex;
    background-color: #F0F8FF;
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.haber-gorsel {
    width: 32%;
    flex-shrink: 0;
}

.haber-gorsel img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.haber-icerik {
    width: 68%;
    padding: 25px;
    position: relative;
}

.haber-icerik h2 {
    margin: 0 0 15px 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 22px;
}

.haber-icerik p {
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

.haber-tarih {
    position: absolute;
    right: 25px;
    bottom: 15px;
    font-size: 13px;
    color: #666;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

@media (max-width: 1024px) {
    .haberler-banner { height: 330px; }
    .haberler-banner-overlay h1 { font-size: 35px; }
    .haberler-listesi { width: 90%; }
    .haber-box { min-height: 210px; }
    .haber-gorsel { width: 38%; }
    .haber-icerik { width: 62%; padding: 22px; box-sizing: border-box; }
}

@media (max-width: 768px) {
    .haberler-banner { height: 260px; }
    .haberler-banner-overlay h1 { font-size: 29px; }
    .haberler-listesi { width: 92%; margin: 30px auto; }
    .haber-box { flex-direction: column; min-height: 0; }
    .haber-gorsel,
    .haber-icerik { width: 100%; }
    .haber-gorsel img { height: 210px; }
    .haber-icerik { padding: 20px; padding-bottom: 55px; }
    .haber-icerik h2 { font-size: 20px; }
    .haber-icerik p { font-size: 14px; line-height: 1.6; }
    .haber-tarih { right: 20px; bottom: 15px; }
}

@media (max-width: 480px) {
    .haberler-banner { height: 220px; }
    .haberler-banner-overlay h1 { font-size: 25px; }
    .haberler-listesi { width: 94%; }
    .haber-gorsel img { height: 180px; }
    .haber-icerik { padding: 17px; padding-bottom: 50px; }
    .haber-icerik h2 { font-size: 18px; }
    .haber-icerik p { font-size: 13px; }
    .haber-tarih { right: 17px; font-size: 12px; }
}
