.catalogSections {
    column-count: 2;
    column-gap: 8px;
    margin-bottom: -8px;
}
.catalogSections__item {
    break-inside: avoid;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    padding: 20px 14px;
    border-radius: 13px;
    border: 1px solid rgba(235, 236, 241, 0.60);
}
.catalogSections__item__img {
    border-radius: 100%;
    background-color: #FAFAFA;
    padding: 6px;
    overflow: hidden;
    width: 102px;
    height: 102px;
    flex: none;
    margin-right: 18px;
}
.catalogSections__item__img img {
    width: 100%;
    height: 100%;
}
.catalogSections__item__content {
    flex: 1;
}
.catalogSections__item--title {
    color: #383838;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    padding: 3px 0;
    transition: color 0.2s ease;
}
.catalogSections__item--title:hover {
    color: #2C63AC;
}
.catalogSections__item__links {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}
.catalogSections__item__links>a {
    color: rgba(56, 56, 56, 0.70);
    font-size: 13px;
    line-height: 20px;
    transition: color 0.2s ease;
}
.catalogSections__item__links>a:hover {
    color: #2C63AC;
}

@media screen and (max-width: 1000px) {
    .catalogSections {
        column-count: 1;
    }
}

@media screen and (max-width: 700px) {
    .catalogSections__item {
        padding: 20px;
        flex-wrap: wrap;
    }
    .catalogSections__item__img {
        margin: -6px 0 10px -6px;
        width: 78px;
        height: 78px;
    }
    .catalogSections__item__content {
        flex: auto;
        width: 100%;
    }
}