/* ============================================= */
/* BLOG SAYFASI STİLLERİ                          */
/* ============================================= */

.blog-content {
    /* Genişlik ve sol kenar boşluğu artık _base.css'teki .content sınıfından gelecek */
    padding: 4rem 2rem;
}

/* Sayfa başlığı */
.blog-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2f2f2f;
}

.blog-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.blog-subtitle {
    font-size: 1.1rem;
    color: #a0a0a0;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog kartlarının ızgara yapısı */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Her bir blog kartının stili */
.blog-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2f2f2f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    /* Hafif bir efekt */
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.blog-card:hover .card-image {
    filter: brightness(1);
}

.card-content {
    padding: 1.5rem;
}

.card-category {
    display: inline-block;
    background-color: #333;
    color: #e0e0e0;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.card-excerpt {
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-meta {
    font-size: 0.8rem;
    color: #777;
    display: flex;
    align-items: center;
    border-top: 1px solid #2f2f2f;
    padding-top: 1rem;
}

.meta-separator {
    margin: 0 0.5rem;
}

/* Mobil için responsive ayarlar */
@media (max-width: 768px) {
    .blog-content {
        padding: 3rem 1rem;
    }

    .blog-main-title {
        font-size: 2.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}