

/* Start:/local/templates/linkfirst/components/bitrix/news.list/link_notes/style.css?177820814412356*/
div.news-list {
    word-wrap: break-word;
}

div.news-list img.preview_picture {
    float: none;
    margin: 0;
}

.news-date-time {
    color: inherit;
}

/* HOME BLOG / Linkfirst media style */
.lf-home-notes {
    --notes-red: var(--red, var(--accent, #e30613));
    --notes-red-soft: rgba(227, 6, 19, .055);
    --notes-red-line: rgba(227, 6, 19, .18);
    --notes-ink: var(--ink, #111111);
    --notes-ink-2: var(--ink-2, #343434);
    --notes-muted: var(--muted, #75716b);
    --notes-paper: var(--paper, #f6f2ec);
    --notes-paper-2: var(--paper-2, #fffaf2);
    --notes-line: var(--line, rgba(17, 17, 17, .10));
    --notes-charcoal: var(--charcoal, #151515);
    --notes-shadow: 0 18px 52px rgba(17, 17, 17, .065);
    --notes-shadow-strong: 0 34px 100px rgba(17, 17, 17, .14);

    position: relative;
    overflow: hidden;
    padding: clamp(72px, 8vw, 124px) 0;
    background:
        radial-gradient(circle at 86% 8%, rgba(17, 17, 17, .045), transparent 30%),
        radial-gradient(circle at 8% 88%, rgba(17, 17, 17, .035), transparent 34%),
        linear-gradient(135deg, #fffaf2 0%, #f6f2ec 48%, #ffffff 100%);
    color: var(--notes-ink);
}

.lf-home-notes::before {
    content: "";
    position: absolute;
    right: -18vw;
    top: 12%;
    width: 54vw;
    aspect-ratio: 1;
    border-radius: 50%;
    background: repeating-linear-gradient(
        90deg,
        rgba(17, 17, 17, .035) 0 1px,
        transparent 1px 18px
    );
    transform: rotate(-13deg);
    pointer-events: none;
}

.lf-home-notes::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 46%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(17, 17, 17, .12), transparent);
    pointer-events: none;
}

.lf-home-notes__container {
    position: relative;
    z-index: 1;
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
}

.lf-home-notes__header {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: clamp(28px, 5vw, 78px);
    align-items: end;
    margin-bottom: clamp(34px, 5vw, 62px);
}

.lf-home-notes__header-main,
.lf-home-notes__header-text {
    min-width: 0;
}

.lf-home-notes__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--notes-red);
    font-size: .78rem;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.lf-home-notes__eyebrow span {
    display: inline-block;
    width: 38px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--notes-red), var(--notes-ink));
}

.lf-home-notes__title {
    margin: 0;
    color: var(--notes-ink);
    font-size: clamp(2rem, 3.75vw, 3.72rem);
    line-height: 1.03;
    letter-spacing: -.058em;
}

.lf-home-notes__subtitle {
    max-width: 720px;
    margin: 0;
    color: var(--notes-ink-2);
    font-size: clamp(1rem, 1.18vw, 1.16rem);
    line-height: 1.72;
}

.lf-home-notes__all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    margin-top: 24px;
    padding: 0 16px 0 18px;
    border: 1px solid var(--notes-line);
    border-radius: 999px;
    background: var(--notes-charcoal);
    color: #fff;
    font-size: .92rem;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 18px 52px rgba(17, 17, 17, .14);
    transition:
        transform .18s ease,
        background .18s ease,
        border-color .18s ease;
}

.lf-home-notes__all svg {
    flex: 0 0 auto;
    transition: transform .18s ease;
}

.lf-home-notes__all:hover {
    transform: translateY(-3px);
    border-color: var(--notes-red);
    background: var(--notes-red);
}

.lf-home-notes__all:hover svg {
    transform: translateX(3px);
}

.lf-home-notes__layout {
    display: grid;
    gap: 16px;
    align-items: stretch;
}

.lf-home-notes__row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.lf-home-note {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--notes-line);
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--notes-shadow);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease,
        background .22s ease;
}

.lf-home-note--featured {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
    border-radius: 62px 18px 62px 18px;
    box-shadow: var(--notes-shadow-strong);
}

.lf-home-note--featured::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 2;
    height: 5px;
    background: linear-gradient(90deg, var(--notes-red), var(--notes-ink));
}

.lf-home-note:not(.lf-home-note--featured) {
    display: flex;
    flex-direction: column;
    min-height: 260px;
}

.lf-home-notes__row .lf-home-note:nth-child(1) {
    border-radius: 34px 12px 12px 34px;
}

.lf-home-notes__row .lf-home-note:nth-child(2) {
    border-radius: 12px 34px 34px 12px;
    background: var(--notes-paper-2);
}

.lf-home-notes__row .lf-home-note:nth-child(3) {
    border-radius: 34px 34px 12px 12px;
}

.lf-home-notes__row .lf-home-note:nth-child(4) {
    border-radius: 12px 12px 34px 34px;
    background: var(--notes-charcoal);
    color: #fff;
}

.lf-home-notes__row .lf-home-note:nth-child(4) .lf-home-note__title,
.lf-home-notes__row .lf-home-note:nth-child(4) .lf-home-note__title a {
    color: #fff;
}

.lf-home-notes__row .lf-home-note:nth-child(4) .lf-home-note__text,
.lf-home-notes__row .lf-home-note:nth-child(4) .lf-home-note__meta {
    color: rgba(255, 255, 255, .66);
}

.lf-home-notes__row .lf-home-note:nth-child(4) .lf-home-note__link {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.lf-home-notes__row .lf-home-note:nth-child(4) .lf-home-note__link:hover {
    background: rgba(255, 255, 255, .13);
}

@media (hover: hover) and (pointer: fine) {
    .lf-home-note:hover {
        transform: translateY(-5px);
        border-color: var(--notes-red-line);
        box-shadow: 0 28px 80px rgba(17, 17, 17, .13);
    }
}

.lf-home-note__schema {
    display: none;
}

.lf-home-note__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    padding: 22px;
}

.lf-home-note--featured .lf-home-note__body {
    justify-content: center;
    padding: clamp(34px, 4.4vw, 58px);
}

.lf-home-note__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px 14px;
    margin-bottom: 14px;
    color: var(--notes-muted);
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.2;
}

.lf-home-note__meta span,
.lf-home-note__meta time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lf-home-note__meta svg {
    flex: 0 0 auto;
}

.lf-home-note__label {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--notes-red-soft);
    color: var(--notes-red);
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lf-home-note__title {
    margin: 0;
    color: var(--notes-ink);
    font-weight: 850;
    letter-spacing: -.032em;
}

.lf-home-note--featured .lf-home-note__title {
    max-width: 920px;
    font-size: clamp(1.72rem, 3vw, 3.1rem);
    line-height: 1.05;
    letter-spacing: -.052em;
}

.lf-home-note:not(.lf-home-note--featured) .lf-home-note__title {
    font-size: clamp(1.02rem, 1.25vw, 1.28rem);
    line-height: 1.16;
}

.lf-home-note__title a {
    color: inherit;
    text-decoration: none;
    transition: color .18s ease;
}

.lf-home-note__title a:hover {
    color: var(--notes-red);
}

.lf-home-note__text {
    margin: 14px 0 0;
    color: var(--notes-muted);
    line-height: 1.58;
}

.lf-home-note--featured .lf-home-note__text {
    max-width: 780px;
    font-size: 1rem;
    line-height: 1.68;
}

.lf-home-note:not(.lf-home-note--featured) .lf-home-note__text {
    font-size: .91rem;
}

.lf-home-note__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    align-self: flex-start;
    min-height: 40px;
    margin-top: auto;
    padding: 0 14px 0 16px;
    border: 1px solid var(--notes-line);
    border-radius: 999px;
    background: #fff;
    color: var(--notes-ink);
    font-size: .88rem;
    font-weight: 820;
    text-decoration: none;
    transition:
        transform .18s ease,
        background .18s ease,
        color .18s ease,
        border-color .18s ease;
}

.lf-home-note__text + .lf-home-note__link {
    margin-top: 20px;
}

.lf-home-note__link svg {
    flex: 0 0 auto;
    transition: transform .18s ease;
}

.lf-home-note__link:hover {
    border-color: var(--notes-red-line);
    background: var(--notes-red);
    color: #fff;
}

.lf-home-note__link:hover svg {
    transform: translateX(3px);
}

.lf-home-notes__empty {
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--notes-line);
    border-radius: 54px 16px 54px 16px;
    background: rgba(255, 255, 255, .76);
    box-shadow: var(--notes-shadow);
}

.lf-home-notes__empty span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--notes-red);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.lf-home-notes__empty h3 {
    margin: 0;
    max-width: 720px;
    color: var(--notes-ink);
    font-size: clamp(1.48rem, 2.5vw, 2.54rem);
    line-height: 1.14;
    letter-spacing: -.038em;
}

.lf-home-notes__empty p {
    max-width: 680px;
    margin: 14px 0 0;
    color: var(--notes-muted);
    line-height: 1.68;
}

.lf-home-notes__pager {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 1120px) {
    .lf-home-notes__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lf-home-note--featured {
        min-height: 280px;
        border-radius: 42px 14px 42px 14px;
    }

    .lf-home-note:not(.lf-home-note--featured) {
        min-height: 220px;
    }

    .lf-home-notes__row .lf-home-note:nth-child(n) {
        border-radius: 28px;
    }
}

@media (max-width: 900px) {
    .lf-home-notes {
        padding: 64px 0;
    }

    .lf-home-notes__header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 34px;
    }

    .lf-home-notes__title {
        font-size: clamp(2rem, 8.5vw, 3rem);
    }

    .lf-home-notes__subtitle {
        font-size: 1rem;
    }

    .lf-home-note--featured {
        min-height: 240px;
    }
}

@media (max-width: 640px) {
    .lf-home-notes__container {
        width: min(100% - 28px, 1180px);
    }

    .lf-home-notes__layout {
        gap: 14px;
    }

    .lf-home-notes__row {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 2px 2px 14px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .lf-home-notes__row::-webkit-scrollbar {
        height: 6px;
    }

    .lf-home-notes__row::-webkit-scrollbar-track {
        background: transparent;
    }

    .lf-home-notes__row::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: rgba(17, 17, 17, .22);
    }

    .lf-home-note--featured {
        min-height: auto;
        border-radius: 24px !important;
    }

    .lf-home-notes__row .lf-home-note,
    .lf-home-notes__row .lf-home-note:nth-child(n) {
        flex: 0 0 84vw;
        min-height: auto;
        border-radius: 24px !important;
        scroll-snap-align: start;
    }

    .lf-home-note__body,
    .lf-home-note--featured .lf-home-note__body {
        padding: 20px;
    }

    .lf-home-note--featured .lf-home-note__title,
    .lf-home-note:not(.lf-home-note--featured) .lf-home-note__title {
        font-size: clamp(1.18rem, 5.6vw, 1.55rem);
        line-height: 1.12;
        letter-spacing: -.034em;
    }

    .lf-home-note__text {
        font-size: .94rem;
    }

    .lf-home-notes__all {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .lf-home-notes__row .lf-home-note,
    .lf-home-notes__row .lf-home-note:nth-child(n) {
        flex-basis: 86vw;
    }
}
/* End */
/* /local/templates/linkfirst/components/bitrix/news.list/link_notes/style.css?177820814412356 */
