
.insights-section {
    padding: 80px 20px;
    background: #fdfdfd;
}

.insights-container {
    max-width: 1200px;
    margin: 0 auto;
}

.insights-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #222;
}

/* Filters */
.insight-filters {
    text-align: center;
    margin-bottom: 40px;
}
.filter-button {
    display: inline-block;
    background: #eee;
    color: #333;
    padding: 8px 16px;
    border-radius: 999px;
    margin: 5px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
}
.filter-button.active,
.filter-button:hover {
    background: #222;
    color: #fff;
}

/* Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.insight-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.insights-grid.single-card {
    justify-content: center;
    grid-template-columns: repeat(1, minmax(320px, 500px));
    margin: 0 auto;
}

.insight-card:hover {
    transform: translateY(-6px);
}

.insight-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-categories {
    padding: 16px 20px 0;
}

.insight-category {
    display: inline-block;
    background: #eee;
    color: #333;
    padding: 5px 10px;
    margin-right: 6px;
    font-size: 0.75rem;
    border-radius: 999px;
}

.insight-title {
    font-size: 1.25rem;
    margin: 12px 20px 8px;
    color: #222;
}

.insight-title a {
    color: inherit;
    text-decoration: none;
}

.insight-title a:hover {
    color: #0073aa;
}

.insight-meta {
    font-size: 0.85rem;
    color: #777;
    margin: 0 20px 12px;
}

.insight-excerpt {
    margin: 0 20px 16px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.insight-readmore {
    margin: 0 20px 20px;
    font-weight: bold;
    font-size: 0.95rem;
    color: #0073aa;
    text-decoration: none;
}

.insight-readmore:hover {
    text-decoration: underline;
}

.no-insights {
    text-align: center;
    font-size: 1.2rem;
    color: #888;
    padding: 60px 0;
}






/**/

.insight-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #333333;
}

.insight-title a {
    text-decoration: none;
    color: inherit;
}

.insight-title a:hover {
    color: #0073aa;
}

.insight-subtitle {
    font-size: 1rem;
    color: #666666;
    margin-top: 8px;
    line-height: 1.6;
}

.no-insights {
    text-align: center;
    font-size: 1.2rem;
    color: #999999;
    padding: 40px 0;
}
