/* Страница всех новостей */
.news-archive-title {
    font-size: 42px;
    font-weight: 700;
    color: #80001C;
    font-family: 'MontserratBold', sans-serif;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
    position: relative;
}

.news-archive-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F3474E, #E06878);
    margin: 15px auto 0;
    border-radius: 2px;
}

.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    z-index: 5;
    position: relative;
}

.news-archive-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(224,104,120,0.08);
}

.news-archive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(224,104,120,0.2);
}

.news-archive-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

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

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

.news-archive-card-content {
    padding: 16px;
}

.news-archive-card-date {
    font-size: 11px;
    color: #E06878;
    font-family: 'MontserratMedium', sans-serif;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.news-archive-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #80001C;
    font-family: 'MontserratSemiBold', sans-serif;
    margin: 0 0 10px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-archive-card:hover .news-archive-card-title {
    color: #F3474E;
}

.news-archive-card-excerpt {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    font-family: 'MontserratRegular', sans-serif;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Пагинация */
.news-archive-pagination {
    grid-column: span 4;
    text-align: center;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 30px;
}

.news-archive-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    font-size: 14px;
    font-family: 'MontserratMedium', sans-serif;
    color: #80001C;
    background: #fff;
    border: 1px solid rgba(224,104,120,0.2);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-archive-pagination .page-numbers.current {
    background: #F3474E;
    color: #fff;
    border-color: #F3474E;
}

.news-archive-pagination .page-numbers:hover:not(.current) {
    background: #FFF4F4;
    border-color: #F3474E;
    transform: translateY(-2px);
}

/* Нет новостей */
.no-news {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 24px;
    color: #999;
    font-family: 'MontserratMedium', sans-serif;
    font-size: 18px;
    grid-column: span 4;
}

/* Адаптация */
@media (max-width: 1200px) {
    .news-archive-grid {
        gap: 20px;
    }
    
    .news-archive-card-image {
        height: 160px;
    }
}

@media (max-width: 992px) {
    .news-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-archive-pagination {
        grid-column: span 2;
    }
    
    .no-news {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .news-archive-title {
        font-size: 32px;
        margin-bottom: 35px;
    }
    
    .news-archive-card-image {
        height: 180px;
    }
    
    .news-archive-card-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .news-archive-grid {
        grid-template-columns: 1fr;
    }
    
    .news-archive-pagination {
        grid-column: span 1;
    }
    
    .no-news {
        grid-column: span 1;
    }
    
    .news-archive-card-image {
        height: 200px;
    }
}

.flowers-bg{
    position: absolute;
    pointer-events: none;
    height: auto;
}


.flowers-bg-left{
    top: 0;
    left: -20%;
    
}

.flowers-bg-right{
    top: 0;
    right: -20%;
}



.site-main {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.site-main .container {
    position: relative;
    z-index: 2;
}