.ws-filters-section {
    padding-top: 24px;
}
.wst-page *,
.wst-page *::before,
.wst-page *::after {
    box-sizing: border-box;
}

.wst-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Hero ────────────────────────────────────────────────── */
.wst-hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

.wst-hero__count {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin: 0 0 1rem;
    animation: wst-fade-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.wst-hero__title {
    font-family: var(--font-display, Georgia, serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 auto 0.9rem;
    animation: wst-fade-up 0.5s 0.06s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.wst-hero__sub {
    font-size: 1rem;
    color: var(--muted, #6b7280);
    margin: 0 auto;
    max-width: 420px;
    line-height: 1.6;
    animation: wst-fade-up 0.5s 0.12s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ── Grid Section ────────────────────────────────────────── */
.wst-grid-section {
    padding: 2rem 0 5rem;
}

/* ── Pagination ──────────────────────────────────────────── */
.wst-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

.wst-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    border-radius: var(--radius, 8px);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted, #6b7280);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 160ms ease;
}

.wst-page-btn:hover {
    color: var(--fg, #111);
    border-color: var(--border, oklch(92% 0.004 250));
    background: oklch(97% 0.004 250);
}

.wst-page-btn--active {
    background: var(--fg, #111);
    color: var(--surface, #fff);
    border-color: var(--fg, #111);
}

.wst-page-btn--nav {
    color: var(--fg, #111);
    border-color: var(--border, oklch(92% 0.004 250));
}

.wst-page-btn--nav svg {
    width: 15px;
    height: 15px;
}

.wst-page-ellipsis {
    font-size: 0.85rem;
    color: var(--muted, #9ca3af);
    padding: 0 0.25rem;
    line-height: 36px;
}

/* ── Empty State ─────────────────────────────────────────── */
.wst-empty {
    text-align: center;
    padding: 5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.wst-empty__icon {
    width: 48px;
    height: 48px;
    color: var(--border, oklch(85% 0.006 250));
    margin-bottom: 0.5rem;
}

.wst-empty__icon svg {
    width: 100%;
    height: 100%;
}

.wst-empty__title {
    font-family: var(--font-display, Georgia, serif);
    font-size: 1.25rem;
    font-weight: 590;
    letter-spacing: -0.01em;
    color: var(--fg, #111);
    margin: 0;
}

.wst-empty__desc {
    font-size: 0.9rem;
    color: var(--muted, #6b7280);
    margin: 0;
}

.wst-empty__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius, 8px);
    border: 1px solid var(--border, oklch(92% 0.004 250));
    font-size: 0.875rem;
    font-weight: 520;
    color: var(--fg, #111);
    text-decoration: none;
    transition: all 180ms ease;
}

.wst-empty__link svg {
    width: 15px;
    height: 15px;
}

.wst-empty__link:hover {
    border-color: var(--muted, #9ca3af);
    background: oklch(97.5% 0.003 250);
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes wst-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
    .wst-hero {
        padding: 2.5rem 0 2rem;
    }

    .wst-hero__title {
        font-size: 1.8rem;
    }

    .wst-container {
        padding: 0 1rem;
    }
}