/* ══════════════════════════════════════════════════════════════
   WHAT'S NEW PAGE
   ══════════════════════════════════════════════════════════════ */

/* Week navigation */
.week-nav-row { display:flex; justify-content:center; margin-bottom:36px; }
.week-nav { display:flex; align-items:center; background:rgba(15,20,25,0.6); border:1px solid rgba(99,102,241,0.2); border-radius:10px; overflow:hidden; }
.week-nav-btn { padding:9px 15px; color:#64748b; font-size:13px; font-weight:600; border:none; background:transparent; display:flex; align-items:center; gap:5px; font-family:inherit; text-decoration:none; transition:color 0.2s; cursor:pointer; }
.week-nav-btn:hover:not(.disabled) { color:#fff; }
.week-nav-btn.disabled { pointer-events:none; color:#2d3748 !important; }
.week-nav-btn svg { width:13px; height:13px; fill:none; stroke:currentColor; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }
.week-nav-current { padding:9px 22px; font-size:13px; font-weight:700; color:#fff; border-left:1px solid rgba(99,102,241,0.2); border-right:1px solid rgba(99,102,241,0.2); background:rgba(99,102,241,0.08); white-space:nowrap; }

/* Sections */
.articles-section { margin-bottom:40px; }
.content-divider { height:1px; background:rgba(99,102,241,0.1); margin:0 0 40px; }

.section-heading { display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; padding-bottom:13px; border-bottom:1px solid rgba(99,102,241,0.15); }
.section-heading-left { font-size:18px; font-weight:700; color:#fff; display:flex; align-items:center; gap:10px; }
.count-badge { font-size:11px; font-weight:600; color:#cbd5e1; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); padding:2px 9px; border-radius:3px; }
.section-link { font-size:13px; color:#6366f1; text-decoration:none; font-weight:600; transition:color 0.2s; }
.section-link:hover { color:#a5b4fc; }

/* Article grid — large + small pattern */
.article-grid { display:grid; gap:22px; }
.art-card-large { background:rgba(15,20,25,0.6); border:1px solid rgba(99,102,241,0.2); border-radius:16px; padding:28px; display:flex; flex-direction:column; box-shadow:0 4px 18px rgba(0,0,0,0.5); transition:all 0.3s; }
.art-card-large:hover { border-color:#6366f1; transform:translateY(-3px); box-shadow:0 12px 30px rgba(99,102,241,0.2); }
.art-card-small { display:grid; grid-template-columns:1fr 1fr; gap:22px; }

.art-title-large { font-size:22px; font-weight:700; color:#fff; line-height:1.3; margin-bottom:12px; }
.art-title-large a { color:inherit; text-decoration:none; }
.art-title-large a:hover { color:#a5b4fc; }
.art-desc { font-size:14px; color:#94a3b8; line-height:1.7; flex:1; margin-bottom:16px; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.art-meta { display:flex; align-items:center; gap:14px; font-size:12px; color:#64748b; flex-wrap:wrap; }

.art-save-btn { background:transparent; border:none; cursor:pointer; padding:0; display:inline-flex; align-items:center; justify-content:center; margin-left:auto; }
.art-save-btn:hover svg { stroke:#a78bfa; }

/* View more button */
.view-more-btn { display:block; width:100%; margin-top:20px; padding:14px; background:rgba(15,20,25,0.6); border:1px solid rgba(99,102,241,0.2); border-radius:12px; color:#94a3b8; font-size:14px; font-weight:600; text-align:center; cursor:pointer; font-family:inherit; transition:all 0.2s; }
.view-more-btn:hover { border-color:rgba(99,102,241,0.5); color:#fff; }

/* Books row */
.books-row { display:grid; grid-template-columns:repeat(6,1fr); gap:14px; }
.book-item { display:flex; flex-direction:column; align-items:center; gap:7px; text-decoration:none; }
.book-cover { width:100%; aspect-ratio:2/3; border-radius:6px; overflow:hidden; border:1px solid rgba(99,102,241,0.2); box-shadow:0 8px 28px rgba(0,0,0,0.85); transition:all 0.25s; }
.book-cover img { width:100%; height:100%; object-fit:cover; display:block; }
.book-item:hover .book-cover { transform:translateY(-4px); border-color:#6366f1; box-shadow:0 14px 36px rgba(0,0,0,0.9); }
.book-name { font-size:11px; font-weight:600; color:#cbd5e1; text-align:center; line-height:1.3; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }

/* Book art link (featured book) */
.book-art-link { display:flex; gap:8px; align-items:flex-start; }
.book-art-link-icon svg { width:14px; height:14px; fill:none; stroke:#6366f1; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; margin-top:2px; }
.book-art-label { color:#6366f1; font-weight:700; font-size:11px; margin-bottom:2px; }
.book-art-title { color:#94a3b8; font-size:11px; line-height:1.4; }

/* Mobile */
@media ( max-width: 768px ) {
    .week-nav-current { font-size:11px; padding:9px 12px; }
    .art-card-small { grid-template-columns:1fr !important; }
    .books-row { grid-template-columns:repeat(3,1fr) !important; }
    .art-title-large { font-size:17px !important; }
}
