.vehicle-page {
    display: flex;
    flex-direction: column;
    gap: 40px;
    --height-vehicle-main-image: 600px;
    --width-vehicle-details-properties: 325px;
    --gap-vehicle-details: 50px;
}


.vehicle-page .main-image {
    width: 100%;
    height: var(--height-vehicle-main-image);
    min-height: var(--height-vehicle-main-image);
}

.vehicle-page .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.vehicle-page .details {
    display: flex;
    gap: var(--gap-vehicle-details);
}

.vehicle-page .details .properties {
    width: var(--width-vehicle-details-properties);
    min-width: var(--width-vehicle-details-properties);
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.vehicle-page .details .properties table {
    width: 100%;
    border-collapse: collapse;
}

.vehicle-page .details .properties table td {

}


.vehicle-page .details .properties table td:last-child {
    width: 0; /* 0 damit die spalte so schmal wie möglich ist*/
}


.vehicle-page .details .properties table td .split {
    display: flex;
    align-items: flex-end;
}

.vehicle-page .details .properties table td .split:after {
    content: '';
    height: 2px;
    background: url('../Icons/dot.svg') right center/contain repeat-x;
    flex-grow: 1;
    margin: 0 7px 7px 7px;
    opacity: 0.5;
}


.vehicle-page .details .properties a {
    color: inherit;
    text-decoration: none;
}

.vehicle-page .details .properties .button {
    width: 100%;
    height: 50px;
    background-color: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}


.vehicle-page .details .text {
    flex-grow: 1;
    border-left: 1px solid #fff;
    padding-left: var(--gap-vehicle-details);
}

.vehicle-page .details .text > *:first-child {
    margin-top: 0;
}


.vehicle-page .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vehicle-page .gallery .item {
    width: 100%;
    height: 200px;
}


.vehicle-page .gallery .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.vehicle-list-small-container {
    position: relative;
    width: 100vw;
    left: calc(((100vw - var(--width-page)) / 2) * -1);
    margin: 25px 0;
}

.vehicle-list-small {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


.vehicle-list-small .item {
    display: flex;
    flex-direction: column;
    width: 375px;
    height: 300px;
}

.vehicle-list-small .item .image {
    flex-grow: 1;
    overflow: hidden;
}

.vehicle-list-small .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-list-small .item .text {
    height: 55px;
    min-height: 55px;
    background-color: var(--theme-color);
    font-size: 14px;
    line-height: 1.3;
    display: flex;
    /*justify-content: center;*/
    justify-content: left;
    align-items: center;
    padding: 0 16px;
}


.vehicle-list-small a {
    text-decoration: none;
    color: inherit;
}







.vehicle-list-big {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;

}


.vehicle-list-big .item {
    display: flex;
    flex-direction: column;
    width: 375px;
    height: 300px;
}

.vehicle-list-big .item .image {
    flex-grow: 1;
    overflow: hidden;
}

.vehicle-list-big .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-list-big .item .text {
    height: 55px;
    min-height: 55px;
    background-color: var(--theme-color);
    font-size: 14px;
    line-height: 1.3;
    display: flex;
    /*justify-content: center;*/
    justify-content: left;
    align-items: center;
    padding: 0 16px;
}


.vehicle-list-big a {
    text-decoration: none;
    color: inherit;
}

