/* ========== Стили для страницы контактов ========== */

/* Блок контактов */
.contacts {
    padding: 60px 0;
    background: #fff;
}
.contacts .title {
    margin-bottom: 40px;
}
.contacts__wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #f9f9f9;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.contacts__wrapper-img {
    flex: 0 0 415px;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.contacts__list {
    flex: 1;
    list-style: none;
    padding: 0;
}
.contacts__item {
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}
.contacts__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.contacts__item-text {
    font-weight: 600;
    font-size: 18px;
    color: #123e93;
    min-width: 120px;
    margin-right: 20px;
}
.contacts__item-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.contacts__item-link {
    font-size: 18px;
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-word;
}
.contacts__item-link:hover {
    color: #FF6A00;
}

/* Адаптивность */
@media (max-width: 992px) {
    .contacts__wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .contacts__wrapper-img {
        flex: 0 0 auto;
        max-width: 400px;
    }
    .contacts__item {
        justify-content: center;
    }
    .contacts__item-text {
        min-width: auto;
        width: 100%;
        margin-right: 0;
        margin-bottom: 5px;
    }
}
@media (max-width: 480px) {
    .contacts {
        padding: 40px 0;
    }
    .contacts__wrapper {
        padding: 20px;
    }
    .contacts__item {
        flex-direction: column;
        align-items: center;
    }
    .contacts__item-text {
        font-size: 16px;
    }
    .contacts__item-link {
        font-size: 16px;
    }
}