  .ad-vehicle {
    max-width: 288px;
    background-color: rgb(var(--color-white));
    border-radius: 0;
    border: 1px solid rgb(var(--color-medium-gray));
    box-shadow: 0 0 0 rgb(var(--color-black));
    color: inherit;
    cursor: pointer;
    display: block;
    margin-top: 32px;
    padding: 20px;
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    width: 100%;
}
.ad-vehicle img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.ad-vehicle h3 {
    color: rgb(var(--color-near-black));
    font-family: var(--font-family-medium);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.3;
}
.ad-vehicle p {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.4;
    color: rgb(var(--color-near-black));
    background-color: rgb(var(--color-white));
    -webkit-font-smoothing: antialiased;
    margin-bottom: 12px;
}
.ad-vehicle:hover,
.ad-vehicle:focus {
    border-color: rgb(var(--color-dark-blue));
    box-shadow: 0 0 11px rgba(var(--color-medium-gray), 0.5);
}
.link-tertiary, a.link-tertiary {
    color: rgb(var(--color-dark-blue));
    font-family: var(--font-family-medium);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.link-tertiary:hover, a.link-tertiary:hover, 
.link-tertiary:focus, a.link-tertiary:focus {
    text-decoration: underline;
}
@media (max-width: 877px) {
    .ad-vehicle h3 {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .ad-vehicle{
        max-width: 332px;
        width: 100%;
        margin: 12px auto !important;
    }
}