/* ============================================
   Blog Page Styles
   ============================================ */

:root {
    --primary-red: #DA0000;
    --primary-dark: #1a1a1a;
    --primary-white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #E8E8E8;
    --text-primary: #262425;
    --text-secondary: #626060;
}

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

* {
    font-family: 'Courier New', Courier, monospace;
}

/* ============================================
   Blog Hero Section
   ============================================ */
.blog-hero {
    position: relative;
    color: white;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 80px;
}

.blog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, #b30000 100%);
    z-index: 0;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.blog-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

.blog-hero p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.6;
}

/* ============================================
   Blog Grid
   ============================================ */
.blog-container {
    margin-bottom: 100px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-card {
    background: white;
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.blog-image {
    background: linear-gradient(135deg, var(--primary-red) 0%, #b30000 100%);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 80px;
    overflow: hidden;
}

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

.blog-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.blog-category {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
}

.blog-views {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
}

.blog-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

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

.blog-title a:hover {
    color: var(--primary-red);
}

.blog-excerpt {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
    flex: 1;
}

.blog-read-more {
    display: inline-block;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--gray-medium);
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    width: fit-content;
}

.blog-read-more:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* ============================================
   Empty State
   ============================================ */
.empty-state {
    text-align: center;
    padding: 100px 20px;
}

.empty-state-icon {
    font-size: 80px;
    color: var(--gray-medium);
    margin-bottom: 20px;
}

.empty-state p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .blog-hero {
        height: 250px;
        margin-bottom: 50px;
    }

    .blog-hero h1 {
        font-size: 32px;
    }

    .blog-hero p {
        font-size: 16px;
    }

    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 250px;
        font-size: 60px;
    }

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

    .blog-title {
        font-size: 20px;
    }

    .blog-excerpt {
        font-size: 14px;
    }
}
