/*
Theme Name: Wsnew
Theme URI: https://houseofwsnew.casa
Author: House of Wsnew
Description: A warm editorial-style review & affiliate theme — coral, cream and ink with Playfair Display headlines. Built for House of Wsnew.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: wsnew
*/

:root {
  --c-coral: #ee5a4f;
  --c-coral-deep: #d94840;
  --c-coral-soft: #f67b70;
  --c-ink: #171716;
  --c-ink-2: #242321;
  --c-muted: #6f6d68;
  --c-cream: #f4eee8;
  --c-paper: #fbfaf7;
  --c-line: #dedbd5;
  --c-gold: #edc65f;
  --c-star: #edc65f;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 99px;
  --shadow: 0 12px 35px rgba(38, 32, 26, .07);
  --shadow-hover: 0 24px 50px rgba(38, 32, 26, .14);
  --shadow-cta: 0 12px 30px rgba(217, 72, 64, .22);
  --ease: .24s ease;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--c-coral); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-coral-deep); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; }

/* ---------- announcement bar ---------- */
.ws-announce {
  background: var(--c-ink);
  color: #fff;
  text-align: center;
  font-size: 13.5px;
  padding: 9px 16px;
  letter-spacing: .02em;
}
.ws-announce a { color: var(--c-gold); font-weight: 600; }

/* ---------- header ---------- */
.ws-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.ws-header__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 16px;
}
.ws-logo { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--c-ink); line-height: 1.15; }
.ws-logo span { color: var(--c-coral); }
.ws-logo small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 10.5px; color: var(--c-muted); letter-spacing: .14em; text-transform: uppercase; }

.ws-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 30px; }
.ws-nav a { color: var(--c-ink); font-weight: 500; font-size: 15px; }
.ws-nav a:hover, .ws-nav .current-menu-item > a { color: var(--c-coral); }

.ws-header__cta {
  background: var(--c-coral); color: #fff !important;
  padding: 10px 20px; border-radius: var(--radius-pill); font-weight: 600; font-size: 14px;
  box-shadow: 0 6px 16px rgba(217, 72, 64, .28);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.ws-header__cta:hover { background: var(--c-coral-deep); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(217, 72, 64, .34); }

.ws-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.ws-burger span { display: block; width: 22px; height: 2px; background: var(--c-ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

@media (max-width: 860px) {
  .ws-burger { display: block; }
  .ws-header__cta { display: none; }
  .ws-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--c-paper); border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow);
  }
  .ws-nav.open { display: block; }
  .ws-nav ul { flex-direction: column; gap: 0; padding: 10px 22px 16px; }
  .ws-nav li { border-bottom: 1px solid var(--c-line); }
  .ws-nav a { display: block; padding: 13px 0; font-size: 16px; }
}

/* ---------- hero (editorial, oversized) ---------- */
.ws-hero {
  position: relative; overflow: hidden;
  padding: 84px 0 40px;
  background:
    radial-gradient(900px 420px at 88% -8%, rgba(246, 123, 112, .35), transparent 60%),
    radial-gradient(700px 380px at -8% 115%, rgba(237, 198, 95, .22), transparent 55%),
    var(--c-cream);
}
.ws-hero__inner { max-width: 1200px; margin: 0 auto; padding: 0 22px; text-align: center; }
.ws-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--c-coral-deep); font-weight: 700; font-size: 12.5px;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px;
}
.ws-eyebrow::before, .ws-eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--c-coral); opacity: .55; }
.ws-hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(44px, 6.4vw, 84px); line-height: 1.02;
  margin: 0 0 20px; letter-spacing: -.02em;
}
.ws-hero h1 .l2 { display: block; color: var(--c-coral); font-style: italic; }
.ws-hero h1 .l3 { display: block; color: var(--c-ink); }
.ws-hero p.lead {
  font-size: 19px; color: var(--c-muted);
  max-width: 620px; margin: 0 auto 30px; line-height: 1.6;
}
.ws-hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.ws-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-pill); font-weight: 600; font-size: 15px;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  cursor: pointer; border: 0;
}
.ws-btn--primary { background: var(--c-coral); color: #fff !important; box-shadow: var(--shadow-cta); }
.ws-btn--primary:hover { background: var(--c-coral-deep); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(217, 72, 64, .3); }
.ws-btn--ghost { border: 1.5px solid var(--c-line); color: var(--c-ink) !important; background: var(--c-paper); }
.ws-btn--ghost:hover { border-color: var(--c-ink); transform: translateY(-2px); }
.ws-hero__facts { display: flex; gap: 44px; justify-content: center; flex-wrap: wrap; }
.ws-hero__facts div b { display: block; font-family: var(--font-display); font-size: 30px; color: var(--c-ink); }
.ws-hero__facts div span { font-size: 13px; color: var(--c-muted); }

/* brand logo wall (marquee) */
.ws-brands { max-width: 1200px; margin: 64px auto 0; padding: 0 22px; }
.ws-brands__label { text-align: center; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 18px; }
.ws-brands__track-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.ws-brands__track { display: flex; gap: 56px; width: max-content; animation: wsMarquee 32s linear infinite; }
.ws-brands__track span { font-family: var(--font-display); font-size: 22px; color: #a9a49c; white-space: nowrap; font-style: italic; }
@keyframes wsMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- editorial section head ---------- */
.ws-section { max-width: 1200px; margin: 0 auto; padding: 70px 22px 10px; }
.ws-section__head { text-align: left; margin-bottom: 30px; max-width: 640px; }
.ws-section__head .ws-eyebrow { margin-bottom: 10px; }
.ws-section__head h2 { font-size: clamp(30px, 3.6vw, 44px); margin: 0; line-height: 1.12; }
.ws-section__head p { margin: 10px 0 0; color: var(--c-muted); font-size: 16px; }
.ws-section__link { font-weight: 600; font-size: 14.5px; display: inline-block; margin-top: 14px; }

/* ---------- product cards (modecritics style: full-card link) ---------- */
.ws-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.ws-card {
  display: block; position: relative;
  background: var(--c-paper); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--c-line); box-shadow: var(--shadow);
  color: var(--c-ink);
  transition: transform var(--ease), box-shadow var(--ease);
}
.ws-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); color: var(--c-ink); }
.ws-card__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; position: relative; background: #ffffff; }
.ws-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.ws-card:hover .ws-card__media img { transform: scale(1.04); }
.ws-card__media--fallback { background: linear-gradient(140deg, #f7d9c2 0%, #f0b49b 100%); display: grid; place-items: center; font-family: var(--font-display); font-size: 52px; color: rgba(23, 23, 22, .5); font-style: italic; }
.ws-card__off {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--c-coral); color: #fff; font-weight: 700; font-size: 13px;
  padding: 5px 12px; border-radius: var(--radius-pill); box-shadow: 0 6px 14px rgba(217, 72, 64, .35);
}
.ws-card__copy { display: block; padding: 22px 22px 20px; }
.ws-card__copy small { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--c-coral-deep); margin-bottom: 8px; }
.ws-card__copy strong { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 600; line-height: 1.25; margin-bottom: 8px; }
.ws-card__copy .ws-card__sum { display: block; color: var(--c-muted); font-size: 14.5px; margin-bottom: 16px; min-height: 42px; }
.ws-card__prices { display: flex; align-items: baseline; gap: 9px; margin-bottom: 14px; }
.ws-card__prices b { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.ws-card__prices del { color: var(--c-muted); font-size: 15px; }
.ws-card__prices em { font-style: normal; background: #f2e2b9; color: #86620f; font-weight: 700; font-size: 12.5px; padding: 3px 8px; border-radius: var(--radius-pill); }
.ws-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 15px; color: var(--c-coral);
  border-top: 1px solid var(--c-line); padding-top: 14px; width: 100%;
}
.ws-card:hover .ws-card__cta { color: var(--c-coral-deep); }
.ws-card__cta i { font-style: normal; transition: transform var(--ease); }
.ws-card:hover .ws-card__cta i { transform: translate(2px, -2px); }

/* legacy card bits (used by article cards) */
.ws-card__cats { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.ws-card__thumb { display: block; aspect-ratio: 4 / 3; overflow: hidden; position: relative; background: #ffffff; }
.ws-card__thumb img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.ws-card:hover .ws-card__thumb img { transform: scale(1.04); }
.ws-card__thumb--fallback { background: linear-gradient(140deg, #f7d9c2 0%, #f0b49b 100%); display: grid; place-items: center; font-family: var(--font-display); font-size: 52px; color: rgba(23, 23, 22, .5); font-style: italic; }
.ws-card__body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.ws-card h3 { margin: 0 0 8px; font-size: 19px; line-height: 1.3; }
.ws-card h3 a { color: var(--c-ink); }
.ws-card h3 a:hover { color: var(--c-coral); }
.ws-card__excerpt { color: var(--c-muted); font-size: 14.5px; flex: 1; margin: 0 0 14px; }
.ws-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--c-line); padding-top: 13px; margin-top: auto; }
.ws-stars { color: var(--c-star); font-size: 15px; letter-spacing: 2px; }
.ws-btn--small { padding: 8px 16px; font-size: 13.5px; border-radius: var(--radius-pill); }
.ws-btn--buy { background: var(--c-coral); color: #fff !important; font-weight: 600; box-shadow: 0 6px 14px rgba(217, 72, 64, .22); }
.ws-btn--buy:hover { background: var(--c-coral-deep); transform: translateY(-2px); }
.ws-chip {
  display: inline-block; background: #f7e7df; color: var(--c-coral-deep);
  font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: var(--radius-pill); letter-spacing: .03em;
}
.ws-post-date { font-size: 12.5px; color: var(--c-muted); }

/* ---------- trust / why-us ---------- */
.ws-trust { max-width: 1200px; margin: 0 auto; padding: 70px 22px 10px; }
.ws-trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ws-trust__item { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.ws-trust__item .ico { font-family: var(--font-display); font-size: 30px; font-style: italic; color: var(--c-coral); margin-bottom: 12px; display: block; }
.ws-trust__item b { font-family: var(--font-display); font-size: 19px; display: block; margin-bottom: 8px; }
.ws-trust__item p { color: var(--c-muted); font-size: 14.5px; margin: 0; }
@media (max-width: 860px) { .ws-trust__grid { grid-template-columns: 1fr; } }

/* ---------- numbers band ---------- */
.ws-numbers { background: var(--c-ink); color: #fff; margin-top: 70px; }
.ws-numbers__inner { max-width: 1200px; margin: 0 auto; padding: 56px 22px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.ws-numbers__item b { font-family: var(--font-display); font-size: clamp(34px, 4vw, 52px); font-weight: 700; color: var(--c-gold); display: block; line-height: 1; }
.ws-numbers__item span { color: rgba(255,255,255,.7); font-size: 14px; display: block; margin-top: 10px; }
@media (max-width: 860px) { .ws-numbers__inner { grid-template-columns: 1fr 1fr; padding: 44px 22px; } }

/* ---------- how it works ---------- */
.ws-how { max-width: 1200px; margin: 0 auto; padding: 70px 22px 10px; }
.ws-how__inner { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: 26px; padding: 54px 44px 46px; text-align: center; box-shadow: var(--shadow); }
.ws-how .ws-eyebrow { margin-bottom: 12px; }
.ws-how h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 0 0 8px; }
.ws-how__sub { color: var(--c-muted); margin: 0 0 40px; font-size: 16px; }
.ws-how__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ws-how__step { position: relative; padding: 0 10px; }
.ws-how__step .n {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: var(--c-coral); color: #fff; font-weight: 700; font-size: 19px;
  font-family: var(--font-display); margin-bottom: 18px; box-shadow: var(--shadow-cta);
}
.ws-how__step b { display: block; font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.ws-how__step p { color: var(--c-muted); font-size: 14.5px; margin: 0; max-width: 260px; margin-left: auto; margin-right: auto; }
@media (max-width: 760px) { .ws-how__steps { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- offer band ---------- */
.ws-offer { max-width: 1200px; margin: 0 auto; padding: 70px 22px; }
.ws-offer__inner { background: linear-gradient(120deg, var(--c-coral-deep), var(--c-coral)); border-radius: 26px; padding: 58px 44px; color: #fff; text-align: center; box-shadow: var(--shadow-hover); }
.ws-offer__text h2 { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 40px); margin: 14px 0 10px; }
.ws-offer__text p { margin: 0 auto 26px; max-width: 520px; color: rgba(255,255,255,.88); font-size: 16px; }
.ws-offer__form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 560px; margin: 0 auto; }
.ws-offer__form input[type="email"] { flex: 1; min-width: 240px; padding: 15px 22px; border-radius: var(--radius-pill); border: 0; font-size: 15px; font-family: var(--font-body); }
.ws-offer__form input[type="email"]:focus { outline: 3px solid rgba(255,255,255,.5); }
.ws-offer__form input[aria-invalid="true"] { outline: 3px solid #ffcfc7; }
.ws-offer__form .ws-btn--primary { background: var(--c-ink); box-shadow: 0 12px 26px rgba(23,23,22,.25); }
.ws-offer__form .ws-btn--primary:hover { background: #000; }
.ws-offer__note { margin: 14px 0 0; font-size: 12.5px; color: rgba(255,255,255,.72); }

/* ---------- success modal ---------- */
.ws-modal { position: fixed; inset: 0; z-index: 999; display: grid; place-items: center; background: rgba(23, 23, 22, .55); padding: 20px; opacity: 0; pointer-events: none; transition: opacity .2s; }
.ws-modal[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.ws-modal__box { background: var(--c-paper); border-radius: 24px; max-width: 410px; width: 100%; padding: 38px 34px; text-align: center; position: relative; box-shadow: 0 30px 70px rgba(23,23,22,.4); }
.ws-modal__icon { width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%; background: #f2e2b9; color: #86620f; font-size: 30px; display: grid; place-items: center; font-weight: 800; }
.ws-modal h3 { font-family: var(--font-display); font-size: 24px; margin: 0 0 8px; color: var(--c-ink); }
.ws-modal__code { background: #fff; border: 1px dashed var(--c-gold); border-radius: 14px; padding: 14px 18px; margin: 18px 0; display: flex; align-items: center; justify-content: center; gap: 10px; }
.ws-modal__code span { color: var(--c-muted); font-size: 14px; }
.ws-modal__code b { font-family: var(--font-display); font-size: 22px; color: var(--c-coral-deep); letter-spacing: .08em; }
.ws-modal__fine { color: var(--c-muted); font-size: 13px; margin: 0 0 18px; }
.ws-modal__close { position: absolute; top: 14px; right: 16px; background: none; border: 0; font-size: 24px; line-height: 1; color: var(--c-muted); cursor: pointer; }
body.ws-modal-open { overflow: hidden; }

/* ---------- single post ---------- */
.ws-single { max-width: 780px; margin: 0 auto; padding: 52px 22px; }
.ws-single__thumb { border-radius: var(--radius-lg); overflow: hidden; margin: 24px 0; box-shadow: var(--shadow); }
.ws-single h1 { font-size: clamp(32px, 4.6vw, 46px); line-height: 1.15; margin: 14px 0 12px; }
.ws-single__byline { color: var(--c-muted); font-size: 14.5px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.ws-single__byline .sep { opacity: .5; }
.ws-single .entry-content { font-size: 17.5px; }
.ws-single .entry-content h2, .ws-single .entry-content h3 { margin-top: 1.7em; }
.ws-single .entry-content img { border-radius: 16px; }
.ws-single .entry-content blockquote { border-left: 4px solid var(--c-coral); margin: 26px 0; padding: 6px 24px; background: #f7e7df; border-radius: 0 14px 14px 0; }
.ws-single .entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.ws-single__verdict {
  background: #fdf3e9; border: 1px solid #f2ddc4; border-left: 5px solid var(--c-gold);
  border-radius: 14px; padding: 20px 22px; margin: 28px 0;
}
.ws-single__verdict b { font-family: var(--font-display); }

/* deal box (single) */
.ws-dealbox {
  background: var(--c-paper); border: 1px solid var(--c-line); border-radius: 24px;
  box-shadow: var(--shadow-hover); padding: 32px 30px; margin: 34px 0; text-align: center; max-width: 580px;
}
.ws-dealbox__brand { color: var(--c-coral-deep); font-weight: 700; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; }
.ws-dealbox h3 { font-size: 24px; margin: 8px 0 6px; }
.ws-dealbox__rating { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.ws-dealbox__rating em { font-style: normal; color: var(--c-muted); font-size: 13.5px; }
.ws-dealbox__prices { display: flex; align-items: baseline; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.ws-dealbox__off { background: #f2e2b9; color: #86620f; font-weight: 800; font-size: 15px; padding: 5px 12px; border-radius: var(--radius-pill); }
.ws-dealbox__orig { color: var(--c-muted); text-decoration: line-through; font-size: 18px; }
.ws-dealbox__price { font-family: var(--font-display); font-weight: 800; font-size: 34px; color: var(--c-ink); line-height: 1; }
.ws-dealbox__label { display: block; width: 100%; color: var(--c-muted); font-size: 12.5px; margin-top: 6px; }
.ws-dealbox .ws-btn--buy { width: 100%; justify-content: center; padding: 16px 28px; font-size: 16px; }
.ws-dealbox__fine { color: var(--c-muted); font-size: 13px; margin: 16px 0 0; }

/* ---------- related / footer ---------- */
.ws-related { max-width: 1200px; margin: 0 auto; padding: 10px 22px 70px; }
.ws-related h2 { font-size: 30px; }
.ws-footer { background: var(--c-ink); color: rgba(255,255,255,.78); margin-top: 70px; }
.ws-footer__grid { max-width: 1200px; margin: 0 auto; padding: 56px 22px 34px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.ws-footer h4 { color: #fff; font-family: var(--font-display); margin: 0 0 14px; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
.ws-footer ul { list-style: none; margin: 0; padding: 0; }
.ws-footer li { margin: 9px 0; }
.ws-footer a { color: rgba(255,255,255,.72); }
.ws-footer a:hover { color: var(--c-gold); }
.ws-footer .ws-logo { color: #fff; }
.ws-footer .ws-logo span { color: var(--c-coral); }
.ws-footer__disclosure { border-top: 1px solid rgba(255,255,255,.12); }
.ws-footer__disclosure div { max-width: 1200px; margin: 0 auto; padding: 22px 22px; font-size: 13px; color: rgba(255,255,255,.58); }
.ws-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); }
.ws-footer__bottom div { max-width: 1200px; margin: 0 auto; padding: 18px 22px; font-size: 13px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
@media (max-width: 860px) {
  .ws-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- archive / page / pagination ---------- */
.ws-pagehead { background: var(--c-ink); color: #fff; padding: 60px 0; }
.ws-pagehead div { max-width: 1200px; margin: 0 auto; padding: 0 22px; }
.ws-pagehead h1 { font-size: 40px; margin: 0; }
.ws-pagehead p { margin: 10px 0 0; color: rgba(255,255,255,.75); }
.ws-container { max-width: 1200px; margin: 0 auto; padding: 48px 22px; }
.ws-page { max-width: 800px; margin: 0 auto; padding: 52px 22px; }
.ws-page h1 { font-size: 38px; }
.ws-pagination { display: flex; gap: 10px; justify-content: center; padding: 44px 0; }
.ws-pagination a, .ws-pagination span { padding: 10px 16px; border-radius: 12px; background: var(--c-paper); border: 1px solid var(--c-line); color: var(--c-ink); font-weight: 600; font-size: 14px; }
.ws-pagination .current { background: var(--c-coral); color: #fff; border-color: var(--c-coral); }

.ws-search { max-width: 1200px; margin: 0 auto; padding: 48px 22px; }
.ws-search input[type="search"] { width: 100%; max-width: 520px; padding: 13px 20px; border-radius: var(--radius-pill); border: 1.5px solid var(--c-line); font-size: 15px; font-family: var(--font-body); background: var(--c-paper); }
.ws-search input[type="search"]:focus { outline: none; border-color: var(--c-coral); }
.ws-search button { margin-left: 8px; padding: 13px 24px; border-radius: var(--radius-pill); border: 0; background: var(--c-coral); color: #fff; font-weight: 600; cursor: pointer; }

.ws-note { text-align: center; color: var(--c-muted); padding: 60px 0; }
.ws-btn--lg { padding: 15px 30px; font-size: 16px; }