/* ═══════════════════════════════════════════════
   Mollusca All News page
   ═══════════════════════════════════════════════ */

.news-root {
    position: relative;
    color: #f0f0f0;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 80px;
}

.news-root *, .news-root *::before, .news-root *::after { box-sizing: border-box; }

.news-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 32px 0;
}

/* Title */
.news-page-title {
    font-family: 'Cormorant', serif !important;
    font-size: 48px !important;
    font-weight: 300 !important;
    color: #f0f0f0 !important;
    margin: 0 0 48px !important;
    padding: 0 !important;
    line-height: 1.1 !important;
    text-align: center;
}

/* Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card */
.news-card {
    cursor: pointer;
    transition: opacity .3s, transform .3s;
}

.news-card:hover {
    opacity: 0.85;
}

.news-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 12px;
}

.news-card__image--empty {
    background: rgba(255,255,255,0.05);
}

.news-card__date {
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(240,240,240,0.5);
    margin-bottom: 4px;
}

.news-card__cats {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.news-card__cat {
    font-size: 10px;
    font-weight: 500;
    color: #c8a97e;
    background: rgba(200,169,126,0.10);
    padding: 2px 8px;
    border-radius: 100px;
}

.news-card__title {
    font-family: 'Cormorant', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: #f0f0f0;
    line-height: 130%;
    margin-bottom: 6px;
}

.news-card__text {
    font-size: 13px;
    line-height: 170%;
    color: rgba(240,240,240,0.7);
}

/* Empty */
.news-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(240,240,240,0.5);
    font-size: 16px;
}

/* Pagination */
.news-pagination {
    text-align: center;
    margin-top: 48px;
}

.news-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    font-size: 12px;
    color: rgba(240,240,240,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.news-pagination .page-numbers:hover,
.news-pagination .page-numbers.current {
    color: #f0f0f0;
    border-color: rgba(255,255,255,0.35);
}

/* Animations */
.news-anim {
    opacity: 0;
    transform: translateY(24px);
}

.news-anim.news-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
}

/* Responsive */
@media (max-width: 900px) {
    .news-container { padding: 100px 20px 0; }
    .news-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .news-page-title { font-size: 38px !important; }
}

@media (max-width: 680px) {
    .news-container { padding: 100px 16px 0; }
    .news-grid { grid-template-columns: 1fr; gap: 28px; }
    .news-page-title { font-size: 32px !important; margin-bottom: 32px !important; }
}
