.auto-rent__header {
    padding: 0;
    margin: 0 0 30px 0;
    font-size: 26px;
    line-height: 32px;
}

.auto-rent__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auto-rent__item {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #161921;
}

.auto-rent__item-name {
    padding: 0;
    margin: 0 0 10px 0;
    text-align: center;
    font-size: 24px;
    line-height: 26px;
}

.auto-rent__item-body {
    display: flex;
    gap: 20px;
}

.auto-rent__item-left {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: calc(50% - 10px);
}

.auto-rent__item-right {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: calc(50% - 10px);
}

.auto-rent__item-img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.auto-rent__item-desc {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 16px;
    color: #000;
}

.auto-rent__item-desc p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 16px;
    color: #000;
}

.auto-rent__item-desc p:last-child {
    margin-bottom: 0;
}

.auto-rent__item-hours {
    padding: 10px 0;
    background-color: red;
    border-radius: 6px;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    color: #fff;
}

.auto-rent__item-props {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.auto-rent__item-prop {
    display: flex;
    border-bottom: 1px solid #000;
    padding: 5px 0;
}

.auto-rent__item-prop-name {
    flex-shrink: 0;
    width: 50%;
    color: #000;
}

.auto-rent__item-prop-name_full {
    width: 100%;
    font-weight: bold;
}

.auto-rent__item-prop-value {
    flex-shrink: 0;
    width: 50%;
    text-align: right;
    color: #000;
}

.auto-rent__item-props-more-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.th-btn.auto-rent__item-props-more {
    margin: 0;
    padding: 10px 10px;
    font-size: 14px;
    line-height: 1;
}

.auto-rent__item-price-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0 10px 0;
}

.auto-rent__item-price {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: #6a6060;
    border-radius: 6px;
    font-size: 20px;
    line-height: 1;
    color: #fff;
}

.auto-rent__item-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 0 40px 0;
}

.th-btn.auto-rent__item-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #2cb742;
}

.th-btn.auto-rent__item-telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #27a7e7;
}

@media(max-width: 767px) {
    .auto-rent__item-socials {
        flex-wrap: wrap;
        padding: 0;
        margin-bottom: 20px;
    }

    .th-btn.auto-rent__item-whatsapp-link {
        width: 100%;
    }

    .th-btn.auto-rent__item-telegram-link {
        width: 100%;
    }

    .auto-rent__item-name {
        font-size: 20px;
        line-height: 24px;
    }

    .auto-rent__item-body {
        flex-wrap: wrap;
    }

    .auto-rent__item-left {
        width: 100%;
    }

    .auto-rent__item-right {
        width: 100%;
    }
}