/* blog-hero-page Section */
.blog-hero-page {
    height: 70vh;
    background: url('https://images.unsplash.com/photo-1424847651672-bf20a4b0982b?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.blog-hero-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.blog-hero-page-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: white;
}

.blog-hero-page h1 {
    margin-top: 80px;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.blog-hero-page p {
    font-size: 1.5rem;
    opacity: 0.9;
    font-family: 'Georgia', serif;
    font-style: italic;
}

/* Blog Container */
.blog-container {
    max-width: 1300px;
    margin: 6rem auto;
    padding: 0 30px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

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

.card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.card-content {
    padding: 2rem;
}

.category {
    display: inline-block;
    background: #f8f3eb;
    color: #b45309;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.4;
    font-weight: 700;
}

.card-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    color: #787878;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
    padding-top: 1.2rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-hero-page h1 {
        font-size: 3.5rem;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-hero-page h1 {
        font-size: 3rem;
    }

    .blog-hero-page p {
        font-size: 1.25rem;
    }

    .blog-container {
        margin: 4rem auto;
    }

    .card-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-hero-page h1 {
        font-size: 2.5rem;
    }

    .blog-hero-page p {
        font-size: 1.1rem;
    }

    .blog-container {
        margin: 3rem auto;
        padding: 0 20px;
    }

    .blog-grid {
        gap: 2rem;
    }
}
