/* Blog Styles - Стили блога */

/* Breadcrumbs */
.breadcrumbs {
    background: white !important;
    border-bottom: 1px solid var(--border);
    padding: 20px 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs-content {
    max-width: 1400px !important;
    margin: 0 auto !important;
    width: 100% !important;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 5% !important;
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumbs span {
    color: #999;
}

.blog-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.blog-card img {
    transition: transform 0.5s;
}

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

/* Post Header */
.post-header {
    background: linear-gradient(135deg, rgba(10, 92, 54, 0.9) 0%, rgba(212, 175, 55, 0.8) 100%), url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.post-header .post-header-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.post-header .category-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.post-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    color: white;
}

.post-header .meta-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-size: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.post-header .meta-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-container,
    .post-container {
        grid-template-columns: 1fr !important;
    }

    .blog-sidebar,
    .post-sidebar {
        order: -1;
    }
}

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

    .post-header h1 {
        font-size: 28px !important;
    }

    .post-header .meta-info {
        gap: 15px;
        font-size: 14px;
    }

    .post-body {
        padding: 25px !important;
        font-size: 16px !important;
    }
}
