/* blog-grids.html — vouches grid section */

#blog-section.vouches-section {
    position: relative;
    isolation: isolate;
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #f1f5f9 100%);
}

#blog-section.vouches-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 40% at 50% 0%, rgba(16, 185, 129, 0.06) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

html.dark #blog-section.vouches-section {
    background: linear-gradient(180deg, #0f172a 0%, #111827 50%, #0f172a 100%) !important;
}

html.dark #blog-section.vouches-section::before {
    background: radial-gradient(ellipse 55% 40% at 50% 0%, rgba(16, 185, 129, 0.1) 0%, transparent 55%);
}

#blog-section.vouches-section > .container {
    position: relative;
    z-index: 1;
}
