/* ═══ What's New — standalone full-width page ═══ */
.wn-main {
    min-height: 60vh;
    padding: 2.5rem 0 4rem;
}
.wn-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wn-section-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.wn-section-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: none;
    padding: 1.1rem 1.5rem;
    cursor: pointer;
    text-align: left;
}
.wn-section-header:hover { background: #f1f5f9; }

.wn-section-title {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
}
.wn-section-title i { color: #1a5c38; font-size: 1.1rem; }

.wn-count {
    background: #1a5c38;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .15rem .55rem;
    border-radius: 10px;
}
.wn-count--grey { background: #94a3b8; }

.wn-chevron {
    color: #64748b;
    transition: transform .25s ease;
}
.wn-section-header.wn-open .wn-chevron { transform: rotate(180deg); }

.wn-section-body { padding: 0; }

.wn-table-wrap { overflow-x: auto; }
.wn-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}
.wn-table thead th {
    text-align: left;
    background: #fafbfc;
    color: #64748b;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .75rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.wn-table tbody td {
    padding: .9rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: middle;
}
.wn-table tbody tr:last-child td { border-bottom: none; }
.wn-table tbody tr:hover { background: #fafbfc; }

.wn-date-col { white-space: nowrap; width: 140px; }
.wn-dl-col   { width: 110px; }

.wn-title-cell {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.wn-badge-new {
    background: #fef2f2;
    color: #dc2626;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .04em;
    padding: .1rem .45rem;
    border-radius: 6px;
    border: 1px solid #fecaca;
}

.wn-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: #1a5c38;
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: .4rem .8rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s;
}
.wn-dl-btn:hover { background: #144a2d; color: #fff; }
.wn-dl-btn--grey { background: #64748b; }
.wn-dl-btn--grey:hover { background: #475569; }

.wn-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: #94a3b8;
    font-size: .88rem;
}
.wn-empty i { font-size: 1.8rem; display: block; margin-bottom: .5rem; opacity: .5; }

@media (max-width: 640px) {
    .wn-container { padding: 0 1rem; }
    .wn-table thead th, .wn-table tbody td { padding: .7rem .9rem; }
}