.flex-layout.insights_grid {
    padding-bottom: var(--row-padding-bottom-full);
}

.flex-layout.insights_grid .grid-header {
    margin-bottom: max(2rem, calc(2.5 * var(--su)));
}

.flex-layout.insights_grid .voltison-insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: max(1.5rem, calc(1.5 * var(--su)));
    align-items: start;
}

.flex-layout.insights_grid .load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: max(2rem, calc(2 * var(--su)));
}

.flex-layout.insights_grid .voltison-load-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: max(0.875rem, calc(0.875 * var(--su)));
    color: var(--color-forest-green, #0D4037);
    font-weight: 500;
    padding: 0;
    transition: opacity 0.2s ease;
}

.flex-layout.insights_grid .voltison-load-more:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media screen and (max-width: 767px) {
    .flex-layout.insights_grid .voltison-insights-grid {
        grid-template-columns: 1fr;
    }
}
