/* Master Blog CSS - Bidünya Ticaret */

.blog-header {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.02) 100%);
    padding: 60px 0 40px 0;
    border-bottom: 1px solid var(--color-border, rgba(255, 255, 255, 0.08));
}

.blog-card {
    background: var(--color-surface, #1e1e38);
    border: 1px solid var(--color-border, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.theme-light .blog-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-card-body {
    padding: 24px;
}

.blog-card-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-text-primary, #ffffff);
}

body.theme-light .blog-card-title {
    color: #0f172a;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--color-text-muted, #9ca3af);
    margin-bottom: 12px;
}

.blog-content {
    line-height: 1.8;
    color: var(--color-text-primary, #e2e8f0);
    font-size: 1.05rem;
}

body.theme-light .blog-content {
    color: #1e293b;
}

.blog-content h2, .blog-content h3, .blog-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--color-text-primary, #ffffff);
}

body.theme-light .blog-content h2, 
body.theme-light .blog-content h3, 
body.theme-light .blog-content h4 {
    color: #0f172a;
}

/* Mobil / Responsive Ayarlar */
@media (max-width: 768px) {
    .blog-header {
        padding: 40px 0 20px 0;
    }
    .blog-header h1 {
        font-size: 1.8rem;
    }
    .blog-card-body {
        padding: 16px;
    }
    .blog-card-title {
        font-size: 1.1rem;
    }
}
