.car-card {
    margin: 10px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    width: 32%;
    border-radius: 5px;
}

.car-card .img-card {
    object-fit: cover;
    object-position: center;
    height: 200px;
    max-width: 100%;
    width: 100%;
}

.car-card .content-card {
    padding: 10px 16px;
}

.car-card .title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

.car-card .title:hover {
    color: #EB5B29;
}

.car-card .price {
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-align: right;
}

.car-card .footer-card {
    display: flex;
    justify-content: space-between;
}

.car-card .footer-card .text-xs {
    font-size: .75rem;
    line-height: 1rem;
}

.car-card .footer-card .font-semibold {
    font-size: 1rem;
    font-weight: 600;
}
