/* Blog Page Styles */
.blog-hero-section {
    padding: 140px 20px 80px;
    background: linear-gradient(180deg, #000000 0%, #0d0d0d 100%);
    text-align: center;
}

.blog-hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.blog-hero-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.blog-hero-section a {
    color: #ffffff;
}

.blog-section {
    padding: 80px 20px;
    background: #000000;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-category-badge {
    display: inline-block;
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.blog-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d2a0d 100%);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(40, 167, 69, 0.6);
    box-shadow: 0 12px 32px rgba(40, 167, 69, 0.3);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb-nav {
    padding: 20px 0;
    background: #000000;
    border-bottom: 1px solid rgba(40, 167, 69, 0.2);
}

.breadcrumb-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #28a745;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (min-width: 992px) {
    .blog-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero-section h1 {
        font-size: 36px;
    }
    .blog-card-title {
        font-size: 20px;
    }
    .blog-card-image {
        height: 200px;
    }
    .blog-container {
        gap: 30px;
    }
}
