/* Çok Kompakt Blog Stilleri */
.blog {
    padding: 40px 0;
    background: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.blog-card {
    overflow: hidden;
    padding: 15px;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
}

.blog-image {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
    height: 140px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0399DE;
    font-size: 13px;
    transition: all 0.3s ease;
}

.blog-card-link:hover .blog-read-more {
    color: #0282b9;
    transform: translateX(3px);
}

.blog-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #0399DE;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
}

.blog-content p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    color: #888;
    font-size: 12px;
}

.blog-meta i {
    margin-right: 4px;
}

.blog-content .btn {
    font-size: 13px;
    padding: 6px 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .blog-image {
        height: 120px;
    }
}

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