/* =================== LOCAL INSIGHTS PAGE =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f8f9fa;
    padding-top: 80px;
}

.insight-container {
    background: white;
}

/* ===== HERO SECTION ===== */
.insight-hero {
    background: linear-gradient(135deg, #dc3545 0%, #b71c1c 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.insight-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.insight-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Container */
.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ARTICLES SECTION ===== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #222;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-meta-item i {
    color: #dc3545;
}

.article-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.read-more-btn {
    display: inline-block;
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    color: #b71c1c;
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .insight-hero h1 {
        font-size: 2.5rem;
    }

    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .insight-hero {
        padding: 80px 20px;
        margin-bottom: 40px;
    }

    .insight-hero h1 {
        font-size: 2rem;
    }

    .insight-hero p {
        font-size: 1rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .insight-hero h1 {
        font-size: 1.5rem;
    }

    .insight-hero p {
        font-size: 0.95rem;
    }

    .article-content h3 {
        font-size: 1.2rem;
    }

    .article-meta {
        flex-wrap: wrap;
    }
}