.gundem-card {
    width: 85%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gundem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.gundem-card .gundem-card-img-wrapper {
    height: 250px; /* Görselin yüksekliği */
    position: relative;
}

.gundem-card .gundem-card-img-wrapper img {
    width: 100%;  /* Genişliği kapsayıcının tamamı */
    height: 100%; /* Yüksekliği kapsayıcının tamamı */
    object-fit: cover; /* **EN ÖNEMLİ KISIM: GÖRSELİ ORANLARINI KORUYARAK KAPSAYICIYI DOLDUR** */
    object-position: center; /* Görselin ortasını göster */
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

/* Mobil görünümde kartın düzeni ve görselin yuvarlak köşeleri */
@media (max-width: 767.98px) {
    .gundem-card {
        width: 95%;
    }
    .gundem-card .gundem-card-img-wrapper {
        height: 200px; /* Mobil görsel yüksekliği */
    }
    .gundem-card .gundem-card-img-wrapper img {
        border-bottom-left-radius: 0; /* Mobil için alt-sol köşeyi düzelt */
        border-top-right-radius: 12px; /* Mobil için üst-sağ köşeyi yuvarla */
    }
}

/* Masaüstü görünümde resim köşeleri */
@media (min-width: 768px) {
    .gundem-card .gundem-card-img-wrapper img {
        border-bottom-left-radius: 12px; /* Masaüstü için alt-sol köşeyi yuvarla */
        border-top-right-radius: 0; /* Masaüstü için üst-sağ köşeyi düzelt */
    }
}

.gundem-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem; /* Tutarlı padding */
}

.gundem-card .card-title {
    color: #050131;
    font-weight: 700;
    line-height: 1.3;
}

.gundem-card .card-subtitle {
    font-size: 0.85rem;
    color: #777;
}

.gundem-card .card-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}
.gundem-card .card-footer {
    padding-bottom: 1.5rem;
}


/* Sayfalama stili */
.pagination {
    display: flex;
    justify-content: center;
}

.page-item .page-link {
    color: #050131;
    border: 1px solid #dee2e6;
    margin: 0 3px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}

.page-item .page-link:hover {
    background-color: #050131;
    color: white;
    border-color: #050131;
}

.page-item.active .page-link {
    background-color: #050131;
    border-color: #050131;
    color: white;
    pointer-events: none; /* Aktif sayfaya tıklanmasını engelle */
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .giris {
        height: 15vh;
    }
    .giris p {
        font-size: 2.5rem;
    }
    .gundem-list-section {
        padding-top: 10px;
        padding-bottom: 30px;
    }
}