.offer__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 2px solid #F0F3F6;
}

.offer__body--no-options {
    grid-template-columns: 1fr;
}

.offer-transports-container {
    min-width: 0;
}

.offer__options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    color: #27282b;
    border-left: 2px solid #F0F3F6;
}

.offer__options-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.offer__options-block .offer__options-list {
    display: none;
}

.offer__options-block.isOpen .offer__options-list {
    display: flex;
}

.offer__options-block.isOpen .offer__options-button {
    transform: rotate(180deg);
}

.offer__options-head {
    display: flex;
    align-items: center;
}

.offer__options-icon {
    width: 16px;
    height: 16px;
    object-fit: cover;
    margin-right: 8px;
}

.offer__options-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    margin-right: 4px;
}

.offer__options-line {
    flex: 1;
    height: 1px;
    background: #EAF0FE;
    margin-right: 4px;
}

.offer__options-button {
    width: 16px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
}

.offer__options-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer__options-item {
    display: flex;
    align-items: center;
}

.offer__options-text {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -2%;
}

@media (max-width: 767px) {
    .offer__body {
        grid-template-columns: 1fr;
    }
}
