/* ========================================
   INSIGHTS SECTION - SHARED STYLES
   ======================================== */

.insights-page {
    background: #ffffff;
}

.insights-page .page-hero {
    background: #ffffff;
    border-radius: 0 0 36px 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.insights-page .page-hero::after {
    display: none;
}

.insights-page .section-title {
    font-size: 2.25rem;
    text-align: center;
    position: relative;
}

.insights-page .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin: 1.25rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-teal));
}

.insights-page .read-more-btn,
.insights-page .read-more,
.insights-page .download-btn,
.insights-page .download-whitepaper {
    background: var(--primary-green);
    color: #ffffff;
    border-radius: 999px;
    padding: 0.6rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.insights-page .read-more-btn:hover,
.insights-page .read-more:hover,
.insights-page .download-btn:hover,
.insights-page .download-whitepaper:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(7, 143, 153, 0.18);
}

.insights-page .newsletter-form input,
.insights-page .newsletter-form button {
    border-radius: 999px;
}

.insights-page .newsletter-form button {
    background: linear-gradient(120deg, var(--primary-green), var(--accent-teal));
    color: #ffffff;
}

.insights-page .newsletter-form button:hover {
    filter: brightness(1.05);
}

