.contacts__list {
    display: none;
    flex-direction: column;
    margin-right: 50px;
}

.change-button {
    display: none;
    background-color: #FFAA41;
    border-radius: 20px;
    padding: 5px 30px;
    min-width: fit-content;
}

.contacts__link {
    display: flex;
    column-gap: 5px;
    align-items: center;
    font-size: 14px;
}

.contacts__link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media(min-width: 640px) {
    .change-button {
        display: block;
    }
}

@media(min-width:1440px) {
    .contacts__list {
        display: flex;
    }
}