

/* Start:/local/templates/cgs71/components/bitrix/news.list/articles/style.css?17882693254656*/
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
}

.articles-list__item {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.2s ease;
    align-items: stretch;
}

.articles-list__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 146, 180, 0.12);
    border-color: transparent;
}

.articles-list__image-wrapper {
    position: relative;
    width: 35%;
    flex-shrink: 0;
    min-height: 250px;
}

.articles-list__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.articles-list__tag-building {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(90deg, rgba(23, 114, 200, 0.85) 0%, rgba(56, 172, 194, 0.4) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);

    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 9px 16px;
    border-radius: 100px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.articles-list__content {
    width: 65%;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    background-image: url('/local/templates/cgs71/img/articles/articles-list-background-1.png');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.articles-list__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.articles-list__title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.articles-list__title:hover {
    color: #0092b4;
}

.articles-list__tag-purpose {
    background: #f0f8ef;
    color: #3b873e;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 9px 14px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

.articles-list__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.articles-list__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.articles-list__meta-item:not(:last-child)::after {
    content: "";
    display: block;
    width: 1px;
    height: 12px;
    background: #dcdcdc;
    margin-left: 12px;
}

.articles-list__meta-icon {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.articles-list__meta-val {
    font-size: 13px;
    color: #666;
}

.articles-list__excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.articles-list__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.articles-list__read-more {
    font-size: 14px;
    font-weight: 600;
    color: #007ACE;
    text-decoration: none;
    transition: color 0.3s ease;
}

.articles-list__read-more:hover {
    color: #006b85;
}

.articles-list__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ffffff59;
}

.articles-list__arrow img {
    width: 18px;
    height: 18px;
}

.articles-list__item:hover .articles-list__arrow {
    border-color: #f0faff6b;
    background-color: #f0faff65;
    transition: 0.3s;
}



@media screen and (max-width: 900px) {
    .articles-list__item {
        flex-direction: column;
    }

    .articles-list__image-wrapper {
        width: 100%;
        height: 220px;
        min-height: auto;
    }

    .articles-list__content {
        width: 100%;
        padding: 24px;
        background-image: none;
    }

    .articles-list__header {
        flex-direction: column;
        gap: 12px;
    }

    .articles-list__meta-item:not(:last-child)::after {
        display: none;
    }

    .articles-list__meta {
        gap: 16px;
    }
}


/* End */
/* /local/templates/cgs71/components/bitrix/news.list/articles/style.css?17882693254656 */
