.carspark__items {
    align-items: stretch;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    display: grid;
}

.carspark__item {
    display: flex;
    flex-direction: column;
    position: relative;
    border: .1rem solid var(--primary-milck-color);
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 6px 16px #e6ebf5cc;
}

.carspark__item-img img {
    width: 100%;
    overflow: hidden;
    display: block;
    margin: auto;
}

.carspark__item-text {
    padding: 2rem;
    display: flex;
    background-color: var(--primary-milck-color);
    height: 100%;
    flex-direction: column;
}

.carspark__item-title {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.carspark__item-desc-box {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

@media (max-width: 1020px) {
    .carspark__item-desc-box {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 700px) {
    .carspark__items {
        grid-template-columns: repeat(2, minmax(0px, 1fr));
    }
}

@media (max-width: 400px) {
    .carspark__items {
        grid-template-columns: repeat(1, minmax(0px, 1fr));
    }
}