.article-list-page main {
    min-height: 760px;
}

.article-list-page .layout-cols {
    margin-top: 20px;
}

.article-list-page .layout-main {
    padding: 6px 30px 22px;
}

.article-list-item {
    padding: 19px 0 17px;
    border-bottom: 1px solid #e9e9e9;
}

.article-item-title {
    display: inline-block;
    margin-bottom: 5px;
    color: #424242;
    font-size: 1.12rem;
    font-weight: 400;
    line-height: 1.5;
}

.article-item-title:hover {
    color: var(--primary-red);
}

.article-item-date {
    color: #999;
    font-size: 0.82rem;
    font-variant-numeric: tabular-nums;
}

.article-list-page .layout-sidebar .card-panel {
    padding: 18px 20px 20px;
}

.photo-news-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.photo-news-item {
    position: relative;
    display: block;
    height: 138px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #f4f4f4;
    cursor: pointer;
}

.photo-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal), filter var(--transition-normal);
}

.photo-news-item:hover .photo-news-img {
    transform: scale(1.025);
    filter: brightness(0.9);
}

.photo-news-title-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    padding: 24px 12px 9px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
    color: #fff;
    font-size: 0.82rem;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .article-list-page main {
        min-height: 0;
    }

    .article-list-page .layout-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 650px) {
    .article-list-page .layout-main {
        padding: 0 18px 10px;
    }

    .article-list-item {
        padding: 16px 0;
    }

    .article-item-title {
        font-size: 1rem;
    }

    .article-list-page .layout-sidebar {
        display: block;
    }
}
