/* Blogs Page Styles */

/* Hero Section */
.blogs-hero {
    background: linear-gradient(135deg, #0d5a26 0%, #117331 25%, #1a8f42 50%, #117331 75%, #0d5a26 100%);
    padding: 50px 20px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.blogs-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.blogs-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blogs-hero .hero-subtitle {
    font-size: clamp(10px, 0.85vw, 12px);
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.95;
    text-align: center;
}

.blogs-hero h1 {
    font-size: clamp(32px, 3.5vw, 42px);
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.2;
    color: #FFD700;
}

.blogs-hero .hero-description {
    font-size: clamp(13px, 1vw, 15px);
    opacity: 0.95;
    line-height: 1.6;
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.blogs-section {
    min-height: calc(100vh - 80px);
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.blogs-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Featured Article */
.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

.featured-article:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #117331;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.category.tips {
    background-color: #4ECDC4;
    color: white;
}

.category.regulations {
    background-color: #FF6B6B;
    color: white;
}

.category.industry {
    background-color: #95E1D3;
    color: #333;
}

.featured-content h2 {
    font-size: clamp(22px, 2vw, 28px);
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-content p {
    font-size: clamp(14px, 1.1vw, 16px);
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: clamp(12px, 1vw, 14px);
    color: #999;
    margin-bottom: 20px;
}

.read-more {
    color: #117331;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.read-more:hover {
    color: #0d5a26;
}

/* Latest Articles */
.section-title {
    font-size: clamp(24px, 2vw, 30px);
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 20px;
}

.article-content h3 {
    font-size: clamp(16px, 1.3vw, 18px);
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-content p {
    font-size: clamp(13px, 1vw, 14px);
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    font-size: clamp(12px, 0.95vw, 13px);
    color: #999;
}

.read-link {
    color: #117331;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.read-link:hover {
    color: #0d5a26;
}

/* Responsive */
@media (min-width: 1920px) {
    .blogs-container {
        max-width: 1600px;
    }
}

@media (max-width: 1200px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .blogs-section {
        padding: 40px 15px;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }
    
    .featured-image {
        min-height: 250px;
    }
    
    .featured-content {
        padding: 25px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .blogs-section {
        padding: 30px 10px;
    }
    
    .featured-content {
        padding: 20px;
    }
    
    .article-content {
        padding: 15px;
    }
}
