/* HTML-карта сайта. Шаблон html-sitemap.php */

.tp-map {
    padding: 30px 0 60px;
}

.tp-map > .container {
    padding: 0 15px;
}

.tp-map__title {
    margin: 0;
}

.tp-map__intro {
    margin: 24px 0 0;
    font-size: 16px;
    line-height: 26px;
    color: rgba(0, 0, 0, .8);
}

/* Две колонки на десктопе, одна под другой — на мобильных. */
.tp-map__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.tp-map__column {
    min-width: 0;
}

.tp-map__column-title {
    padding-bottom: 12px;
    border-bottom: 2px solid #EF6128;
    font-size: 22px;
    font-weight: 800;
    line-height: 30px;
    color: #000;
}

.tp-map__section {
    margin-top: 28px;
}

.tp-map__section-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #EF6128;
}

.tp-map__list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.tp-map__item + .tp-map__item {
    margin-top: 8px;
}

.tp-map__link {
    font-size: 15px;
    line-height: 22px;
    color: #333;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.tp-map__link:hover,
.tp-map__link:focus {
    color: #EF6128;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .tp-map {
        padding: 20px 0 40px;
    }

    .tp-map__columns {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
        margin-top: 28px;
    }

    .tp-map__intro {
        margin-top: 18px;
        font-size: 15px;
        line-height: 24px;
    }

    .tp-map__column-title {
        font-size: 20px;
        line-height: 26px;
    }
}
