.voltride-test-ed-container {
    display: flex;
    gap: 8px;
    width: 100%;
    margin: 0;
    margin-top: 8px;
}

.voltride-test-ed-box {
    flex: 1;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: clamp(360px, calc(360px + 2vw), 400px);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Test Ride Box Styles */
.test-ride-box {
    background-color: var(--new-green);
    background-image: url('/wp-content/uploads/2025/03/try-before-you-buy-banner-voltride-desktop.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.test-ride-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #041d1373;
    border-radius: 16px;
}

.test-ride-title {
    color: var(--Power-Lime, #ADFF60);
    font-family: Shrikhand;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    margin-bottom: 16px;
}

.test-ride-text {
    color: var(--New-Light, #D8FFB4);
    font-family: Biryani;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 0.28px;
    margin-bottom: 24px;
    text-align: center;
    max-width: 400px;
    text-wrap: balance;
}

.test-ride-button {
    display: inline-flex;
    padding: 12px 16px 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 48px;
    background: var(--Power-Lime, #ADFF60);
    
    /* Text styles */
    color: var(--Volt-Green-New-Dark, #0F3F36);
    text-align: center;
    font-family: Biryani;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    
    /* Transition */
    transition: all 0.3s ease;
}

.test-ride-button:hover {
    background-color: var #9EEE51;
    color: var(--Volt-Green-New-Dark, #0F3F36);
}

/* Tested Box Styles */
.tested-box {
    background-color: var(--sales-light-red);
    background-image: url('/wp-content/uploads/2025/03/voltride-checked-banner-desktop.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.tested-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #11231ca8;
    border-radius: 16px;
}

.tested-title {
    color: var(--Volt-Pink-Dark, #FF6082);
    font-family: Shrikhand;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tested-title svg {
    width: 32px;
    height: 32px;
}

.tested-text {
    color: var(--Sales-Light, #FFC3C3);
    font-family: Biryani;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 0.28px;
    text-align: center;
    max-width: 400px;
    text-wrap: balance;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .voltride-test-ed-container {
        flex-direction: column;
    }
    
    .voltride-test-ed-box {
        padding: 20px;
        min-height: 300px;
        min-height: 460px;
    }
    
    .test-ride-box {
        background-image: url('/wp-content/uploads/2025/03/try-before-you-buy-banner-voltride-mobile.png');
        justify-content: flex-start;
        background-color: #000000;
    }
    .test-ride-box::before {
        background: none;
    }
    .tested-box {
        background-image: url('/wp-content/uploads/2025/03/voltride-checked-banner-mobile.png');
    }

    .test-ride-title {
        font-size: 32px;
    }
    
    .tested-title {
        font-size: 24px;
    }
}

.voltride-tested-logo {
    display: block;
    margin-bottom: 10px;
    width: 96px;
    height: auto;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Make sure content stays above the overlay */
.voltride-test-ed-box > * {
    position: relative;
    z-index: 1;
}