#blog-sayfasi-konteynir {

}

.blog-izgarasi {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 0 auto;
    text-align: left
}

/* Kart Genel Yapısı */
.blog-kart {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-kart:hover {

    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Kartın Üstündeki Görsel Bölümü */
.kart-ust-alan {
    height: 200px;
    background: #f8f9fa; /* Görsel yoksa gri görünür */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kart-ust-alan img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Yazı Alanı */
.kart-icerik {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kart-baslik {

    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.kart-baslik a {
    text-decoration: none;
    color: #1a1a1a;
}

.kart-ozet {

    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Kartın En Altı (İkonlar) */
.kart-alt-bilgi {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.mini-ikonlar {
    display: flex;
    gap: 8px;
    margin-left: 10px;
}

.mini-ikonlar i {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: inline-block;
}

/* Görseldeki gibi renkli küçük kutucuklar */
.ikon-1 { background: #ff5722; }
.ikon-2 { background: #2196f3; }
.ikon-3 { background: #4caf50; }

/* Mobil Uyumluluk */
@media (max-width: 480px) {
    .blog-izgarasi {
        grid-template-columns: 1fr;
    }
}

#pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 0 15px;
}

#pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

#pagination a.page-numbers:hover {
    background: #f97316;
    border-color: #f97316;
    color: #ffffff;
}

#pagination .page-numbers.current {
    background: #f97316;
    border-color: #f97316;
    color: #ffffff;
    cursor: default;
}
