/* BLOG SECTION */
.blog-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fef8f0, #fff5eb);
}

.blog-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.blog-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
    color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.blog-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 0.8rem;
}

.blog-header h2 span {
    color: #e67e22;
}

.blog-header p {
    font-size: 1rem;
    color: #7f8c6d;
    max-width: 550px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Blog Image */
.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #e67e22;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Blog Content */
.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.7rem;
    color: #a08c74;
}

.blog-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #7f8c6d;
    margin-bottom: 1.2rem;
}

.blog-link {
    display: inline-block;
    color: #e67e22;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-link:hover {
    transform: translateX(5px);
    color: #cf711f;
}

/* Footer Button */
.blog-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all {
    display: inline-block;
    background: transparent;
    border: 2px solid #e67e22;
    color: #e67e22;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #e67e22;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 3rem 1.5rem;
    }
    
    .blog-header h2 {
        font-size: 1.8rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .blog-content {
        padding: 1.2rem;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
    }
    
    .blog-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}