.haberler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.haber-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.08);
    transition: .25s;
}

.haber-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(201, 162, 39, 0.14);
}

.haber-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.haber-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.haber-card:hover .haber-image img {
    transform: scale(1.06);
}

.haber-body {
    padding: 1.5rem;
}

.haber-tarih {
    color: #6b7280;
    font-size: .85rem;
    display: block;
    margin-bottom: .5rem;
}

.haber-body h4 {
    font-size: 1.1rem;
    margin-bottom: .6rem;
    color: #1a1a1a;
}

.haber-body h4 a {
    color: #1a1a1a;
    text-decoration: none;
}

.haber-body h4 a:hover {
    color: #A67C00;
}

.haber-body p {
    color: #6b7280;
    font-size: .95rem;
    margin-bottom: 1rem;
}

.haber-link {
    color: #A67C00;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 900px) {
    .haberler-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .haberler-grid {
        grid-template-columns: 1fr;
    }
}