/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 19 2026 | 22:26:33 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

.voll-benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.voll-benefit-card {
    position: relative;
    padding: 30px;
    border-radius: 8px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 1;
}

.voll-benefit-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 8px;
    padding: 1px; 
    background: linear-gradient(90deg, #A1953F 0%, #D4BB76 50%, #FFD562 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.voll-benefit-number {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #A1953F 0%, #D4BB76 50%, #FFD562 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    display: inline-block;
}

.voll-benefit-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.voll-benefit-desc {
    color: #e0e0e0; 
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .voll-benefits-container {
        grid-template-columns: 1fr;
    }
    
    .voll-benefit-card {
        padding: 25px;
    }
}