

/* Start:/local/templates/mysite/components/bitrix/news.list/links/style.css?17902600001315*/
.links-list {
    width: var(--content-width);
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding: 20px;
}

.links-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 125px;
    padding: 25px 30px;

    box-sizing: border-box;

    border: 1px solid #d9e1e8;

    color: var(--color-primary);

    text-decoration: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.links-item + .links-item {
    margin-top: 16px;
}

.links-item:hover {
    border-color: #8db5d5;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.links-item__title {
    font-family: var(--font-main);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
}

.links-item__arrow {
    flex: 0 0 auto;

    margin-left: 30px;

    color: #159bd7;

    font-size: 30px;
    line-height: 1;
    font-weight: 300;

    transition: transform 0.2s ease;
}

.links-item:hover .links-item__arrow {
    transform: translateX(5px);
}

@media (max-width: 700px) {

    .links-item {
        min-height: 100px;
        padding: 20px;
    }

    .links-item__title {
        font-size: 17px;
    }

    .links-item__arrow {
        margin-left: 20px;
        font-size: 26px;
    }

}
/* End */
/* /local/templates/mysite/components/bitrix/news.list/links/style.css?17902600001315 */
