.blog-section {
    padding: var(--section-padding);
    /* Üst boşluk azaltıldı */
    background-color: var(--bg-color);
}

.blog-header-top {
    margin-bottom: 2rem;
}

.blog-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.blog-view-all-btn {
    flex-shrink: 0;
}

.blog-section .section-title {
    margin-bottom: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Blog Card Styles */
.blog-card {
    background: #000;
    border: 1px solid #222;
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.blog-card:hover {
    border-color: #333;
    background: #0a0a0a;
    transform: translateY(-5px) rotate(1deg);
}

.blog-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.blog-card-title a {
    color: #fff;
    transition: color 0.3s ease;
}

.blog-card-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.75rem;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #222;
}

.read-time {
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
}

.blog-read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    transition: gap 0.3s ease;
}

.blog-read-more svg {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more {
    gap: 0.75rem;
}

.blog-card:hover .blog-read-more svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-header-top {
        margin-bottom: 2rem;
    }

    .blog-section .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .blog-view-all-btn {
        font-size: 0.8rem;
    }

    .blog-view-all-btn i {
        margin-left: 4px !important;
    }

    .blog-title-row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .blog-card {
        padding: 2rem;
    }

    .blog-card-title {
        font-size: 1.25rem;
    }
}