/* styles.css */
.article-teaser {
    display: flex;
    flex-direction: column;
    height: 100%; /* для выравнивания по высоте в ряду */
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.article-teaser__image-wrapper {
    width: 100%;
    overflow: hidden;
}

.article-teaser__image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.article-teaser__meta {
    padding: 12px 16px 0;
}

.article-teaser__meta-row {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #6c757d;
}

.article-teaser__date,
.article-teaser__views {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.article-teaser__icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.article-teaser__title {
    padding: 8px 16px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.article-teaser__title-link {
    color: #212529;
    text-decoration: none;
}

.article-teaser__title-link:hover {
    color: #0d6efd;
}

.article-teaser__excerpt {
    padding: 8px 16px 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #6c757d;
}

/* Отступ между карточками */
.articles-list [class*="col-"] {
    margin-bottom: 30px;
}

 .section-list-wrap div.show-more {
    position: absolute;
    z-index: 1;
    background: #F5F6F8;
    width: 100%;
    padding: 5px 10px 5px 30px;
    bottom: 0;
    color: #888;
}