.lineupDropdown {
    max-height: 70vh; 
    overflow: auto; 
}

.lineupDropdown .lineupDropdown-container {
    padding-inline: 1rem;
}

.lineupDropdown-nav .nav-link {
    border-bottom: 3px solid transparent;
}

.lineupDropdown-nav .nav-link.active {
    border-color: var(--primary);
}


.lineupDropdown .lineupDropdown-link {
    color: var(--text-color, #545454);
    border-bottom: 1px solid var(--border-color, #dadada);
    display: block;
    padding-bottom: 1rem;
    padding-top: 1rem;
    height: 100%; /* align the bottom border with the col */
}
.lineupDropdown .lineupDropdown-link:hover {
    color: var(--text-color, #545454);
}


.lineupDropdown .lineupDropdown-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
}

.lineupDropdown .lineupDropdown-vehicle {
    font-weight: bold;
}

.lineupDropdown .lineupDropdown-startingAt {
    font-size: 80%;
}

.lineupDropdown .lineupDropdown-price {
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .lineupDropdown .lineupDropdown-link {
        display: flex;
        align-items: center;
    }

    .lineupDropdown .lineupDropdown-img {
        width: 150px;
        max-width: 50%;
        margin-right: 10%;
    }
}

@media screen and (min-width: 768px) {
    .lineupDropdown-grid {
        display: grid;
        grid-template-columns: repeat(var(--vehicle-columns-md, 4), 1fr);
        gap: 0 1rem;
    }
}

@media screen and (min-width: 1200px) {
    .lineupDropdown-grid {
        grid-template-columns: repeat(var(--vehicle-columns-lg, 4), 1fr);
    }
}