﻿@media screen and (min-width: 680px) {
    .vehicle-feature-list {
        -moz-column-count: 4;
        -moz-column-gap: 20px;
        -webkit-column-count: 4;
        -webkit-column-gap: 20px;
        column-count: 4;
        column-gap: 20px;
    }
}



.fleet-section {
    margin-top: 7vh;
}

.accordion {
    border: 1px solid var(--primary-text);
    max-width: 1000px;
    margin: auto;
}

.accordion-item {
    background-color: black;
    border: 1px solid var(--primary-text);
}

.accordion-button {
    box-shadow: none !important;
    color: var(--primary-text);
    background-color: black;
}

    .accordion-button:not(.collapsed) {
        background-color: transparent !important;
        color: var(--primary-text);
    }

        .accordion-button:not(.collapsed)::after {
            --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23f9e795' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
        }

    .accordion-button::after {
        --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23f9e795' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    }

.img-fluid {
    width: auto;
    height: 300px;
    object-fit: cover;
}

.vehicle-card {
    background-color: black;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--secondary-text);
}

    .vehicle-card .card-body {
        flex-grow: 1;
    }

    .vehicle-card .card-footer {
        margin-top: auto;
    }
