/* div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}
 */
 /* ===== СПИСОК НОВОСТЕЙ ===== */
.news-list-container {
    margin: 0 15px;
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(121, 66, 37, 0.1);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.news-item:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(121, 66, 37, 0.2);
}

.news-item-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover .news-item-image img {
    transform: scale(1.05);
}

.news-item-content {
    flex: 1;
    min-width: 0; /* Для правильного переноса текста */
}

.news-item-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    /* color: #888; */
    align-items: center;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date:before {
    content: "📅";
    font-size: 0.9rem;
}

.news-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-views:before {
    content: "👁";
    font-size: 0.9rem;
}

.news-item-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    /* color: #3a100a; */
    font-family: 'Cormorant', 'Inter', sans-serif;
}

.news-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-item-title a:hover {
    color: #794225;
}

.news-item-preview {
    /* color: #666; */
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 300;
}

.news-read-more {
    display: inline-block;
    color: #794225;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    border-bottom-color: #794225;
    padding: 6px 15px;
    background: rgba(121, 66, 37, 0.05);
    border-radius: 5px;
}

.news-pagination {
    margin-top: 40px;
    text-align: center;
}

/* Адаптивность для новостей */
@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .news-item-image {
        width: 100%;
        height: 180px;
    }
    
    .news-item-title {
        font-size: 1.2rem;
    }
    
    .news-item-meta {
        flex-wrap: wrap;
        gap: 10px 20px;
    }
}

@media (max-width: 576px) {
    .news-item {
        padding: 15px;
    }
    
    .news-item-image {
        height: 150px;
    }
}

/* Иконки для просмотров (опционально, можно использовать FontAwesome) */
.icon-eye:before {
    content: "👁";
    margin-right: 5px;
}

/* Стили для пагинации (если используете стандартную битриксовую) */
.news-pagination .nav-pages {
    display: inline-block;
}

.news-pagination .nav-page {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 3px;
    border: 1px solid rgba(121, 66, 37, 0.2);
    border-radius: 5px;
    color: #3a100a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-pagination .nav-page:hover,
.news-pagination .nav-page.current {
    background: #794225;
    color: white;
    border-color: #794225;
}