/*
Theme Name:  PaddleWorks
Theme URI:   https://example.com
Author:      PaddleWorks
Author URI:  https://example.com
Description: PaddleWorks — a B2B WordPress theme for custom pickleball paddle manufacturers and suppliers. Built for OEM/ODM factory sites targeting overseas bulk buyers: paddle brands, retailers, distributors, clubs, schools and promotional buyers. Integrates natively with the Pickleball Paddle B2B Configurator plugin ([paddle_configurator]) for 3D digital sampling and RFQ inquiries. No cart, no checkout — request-for-quote only.
Version:     2.1.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: paddleworks
Tags:        b2b, manufacturer, sports, custom-logo, custom-menu, responsive, configurator, rfq
*/

/* ════════ DESIGN TOKENS ════════
   Identity: deep court green + electric lime. Athletic and modern but still
   factory-grade — crisp grid, generous whitespace, real product photography
   instead of icon tiles. */
:root {
  --pw-navy:    #10241f; --pw-navy-dk: #08150f; --pw-blue:   #0f7a52;
  --pw-blue-dk: #0a5c3d; --pw-blue-lt: #16a06b; --pw-blue-xlt:#e8f7f0;
  --pw-amber:   #c8f04a; --pw-amber-dk:#7fa312; --pw-amber-lt:#f4fce0;
  --pw-ink:     #111827; --pw-dark:    #1f2937; --pw-mid:    #374151;
  --pw-grey:    #6b7280; --pw-grey-lt: #9ca3af; --pw-line:   #e5e7eb;
  --pw-line-dk: #d1d5db; --pw-surface: #f6f8fc; --pw-surface2:#eef2f9;
  --pw-white:   #ffffff; --pw-green:   #059669;
  --pw-head:    'Sora', system-ui, -apple-system, sans-serif;
  --pw-body:    'Inter', system-ui, -apple-system, sans-serif;
  --pw-radius:  10px; --pw-radius-lg: 18px; --pw-radius-sm: 7px;
  --pw-shadow:  0 1px 2px rgba(17,24,39,.05), 0 6px 22px rgba(17,24,39,.06);
  --pw-shadow-lg:0 8px 24px rgba(17,24,39,.10), 0 24px 60px rgba(17,24,39,.08);
  --pw-t:       .22s cubic-bezier(.4,0,.2,1);
  --pw-nav-h:   72px; --pw-container: 1200px;
}

/* ════════ RESET ════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }
body { font-family: var(--pw-body); font-size: 16px; line-height: 1.7; color: var(--pw-mid); background: var(--pw-white); -webkit-font-smoothing: antialiased; }
img, video, svg, canvas { max-width: 100%; display: block; }
a { color: var(--pw-blue); text-decoration: none; transition: color var(--pw-t); }
a:hover { color: var(--pw-blue-dk); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
.pw-skip { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--pw-blue); color: #fff; padding: 10px 18px; border-radius: 0 0 var(--pw-radius-sm) 0; font-family: var(--pw-head); font-weight: 600; }
.pw-skip:focus { left: 0; color: #fff; }

/* ════════ LAYOUT ════════ */
.pw-container { max-width: var(--pw-container); margin: 0 auto; padding: 0 24px; }
.pw-section    { padding: clamp(52px,7vw,100px) 0; }
.pw-section-sm { padding: clamp(30px,4vw,52px) 0; }
.pw-section.alt { background: var(--pw-surface); }

/* ════════ TYPOGRAPHY ════════ */
h1,h2,h3,h4,h5,h6 { font-family: var(--pw-head); font-weight: 700; line-height: 1.18; color: var(--pw-ink); letter-spacing: -.02em; }
h1 { font-size: clamp(30px,5.2vw,52px); font-weight: 800; }
h2 { font-size: clamp(24px,3.8vw,40px); }
h3 { font-size: clamp(18px,2.6vw,24px); }
h4 { font-size: clamp(16px,2vw,19px); }
p  { margin-bottom: 1rem; color: var(--pw-grey); }
p:last-child { margin-bottom: 0; }
.pw-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--pw-head); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pw-blue); margin-bottom: 14px; }
.pw-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--pw-amber); }
.pw-lead { font-size: clamp(16px,2vw,19px); color: var(--pw-grey); max-width: 720px; }
.pw-section-head { max-width: 760px; margin-bottom: clamp(32px,4vw,52px); }
.pw-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.pw-section-head.center .pw-eyebrow { }

/* ════════ BUTTONS ════════ */
.pw-btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 28px; border-radius: var(--pw-radius); font-family: var(--pw-head); font-weight: 600; font-size: 15px; cursor: pointer; border: 2px solid transparent; transition: all var(--pw-t); white-space: nowrap; text-decoration: none; }
.pw-btn-sm { padding: 9px 18px; font-size: 14px; }
.pw-btn-lg { padding: 16px 36px; font-size: 16px; }
.pw-btn-primary { background: var(--pw-blue); color: var(--pw-white); border-color: var(--pw-blue); }
.pw-btn-primary:hover { background: var(--pw-blue-dk); border-color: var(--pw-blue-dk); color: #fff; transform: translateY(-1px); box-shadow: var(--pw-shadow); }
.pw-btn-amber { background: var(--pw-amber); color: var(--pw-navy); border-color: var(--pw-amber); }
.pw-btn-amber:hover { background: var(--pw-amber-dk); border-color: var(--pw-amber-dk); color: #fff; transform: translateY(-1px); box-shadow: var(--pw-shadow); }
.pw-btn-ghost { background: transparent; color: var(--pw-ink); border-color: var(--pw-line-dk); }
.pw-btn-ghost:hover { border-color: var(--pw-blue); color: var(--pw-blue); }
.pw-btn-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }
.pw-btn-light:hover { background: rgba(255,255,255,.22); color: #fff; }

/* ════════ TOPBAR ════════ */
.pw-topbar { background: var(--pw-navy-dk); color: #c8d2e4; font-size: 13px; }
.pw-topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 14px; }
.pw-topbar a { color: #c8d2e4; }
.pw-topbar a:hover { color: #fff; }
.pw-tb-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pw-tb-right { display: flex; align-items: center; gap: 14px; }
.pw-tb-sep { opacity: .4; }
.pw-topbar-wa { color: var(--pw-amber) !important; font-weight: 600; }

/* ════════ HEADER ════════ */
.pw-header { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--pw-line); transition: box-shadow var(--pw-t); }
.pw-header.scrolled { box-shadow: var(--pw-shadow); }
.pw-header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--pw-nav-h); gap: 20px; }
.pw-logo a, .pw-logo-text { display: inline-flex; align-items: center; gap: 9px; font-family: var(--pw-head); font-weight: 800; font-size: 21px; color: var(--pw-ink); letter-spacing: -.02em; }
.pw-logo-text span:first-child { color: var(--pw-blue); }
.pw-logo img { max-height: 48px; width: auto; }
.pw-nav { display: flex; align-items: center; }
.pw-nav-menu { display: flex; align-items: center; gap: 1px; flex-wrap: nowrap; white-space: nowrap; }
.pw-nav-menu li { position: relative; }
.pw-nav-menu > li > a { display: block; padding: 9px 11px; font-family: var(--pw-head); font-weight: 500; font-size: 14px; color: var(--pw-dark); border-radius: var(--pw-radius-sm); white-space: nowrap; }
.pw-nav-menu > li > a:hover { color: var(--pw-blue); background: var(--pw-blue-xlt); }
.pw-nav-menu .sub-menu { position: absolute; top: 100%; left: 0; min-width: 230px; background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius); box-shadow: var(--pw-shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--pw-t); }
.pw-nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.pw-nav-menu .sub-menu a { display: block; padding: 9px 12px; font-size: 14px; color: var(--pw-mid); border-radius: var(--pw-radius-sm); }
.pw-nav-menu .sub-menu a:hover { background: var(--pw-blue-xlt); color: var(--pw-blue); }
.pw-header-actions { display: flex; align-items: center; gap: 12px; }
.pw-ham { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--pw-line); border-radius: var(--pw-radius-sm); cursor: pointer; }
.pw-ham span { display: block; width: 20px; height: 2px; background: var(--pw-ink); transition: all var(--pw-t); }

/* ════════ MOBILE DRAWER ════════ */
.pw-nav-overlay { position: fixed; inset: 0; background: rgba(17,24,39,.5); z-index: 300; opacity: 0; visibility: hidden; transition: all var(--pw-t); }
.pw-nav-overlay.active { opacity: 1; visibility: visible; }
.pw-nav-drawer { position: fixed; top: 0; right: -340px; width: 320px; max-width: 86vw; height: 100%; background: #fff; z-index: 310; transition: right var(--pw-t); overflow-y: auto; box-shadow: var(--pw-shadow-lg); }
.pw-nav-drawer.active { right: 0; }
.pw-nav-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--pw-line); }
.pw-nav-drawer-logo { font-family: var(--pw-head); font-weight: 800; font-size: 17px; color: var(--pw-ink); }
.pw-nav-drawer-close { background: none; border: none; font-size: 30px; line-height: 1; color: var(--pw-grey); cursor: pointer; }
.pw-nav-drawer-menu { padding: 10px 0; }
.pw-nav-drawer-menu li a { display: block; padding: 13px 22px; font-family: var(--pw-head); font-weight: 500; font-size: 15px; color: var(--pw-dark); border-bottom: 1px solid var(--pw-surface); }
.pw-nav-drawer-menu li a:hover { background: var(--pw-blue-xlt); color: var(--pw-blue); }
.pw-nav-drawer-menu .sub-menu a { padding-left: 38px; font-size: 14px; color: var(--pw-grey); }

/* ════════ HERO ════════ */
.pw-hero { position: relative; background: linear-gradient(160deg, var(--pw-navy) 0%, var(--pw-navy-dk) 60%, #0a1224 100%); color: #fff; overflow: hidden; }
.pw-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 18% 20%, rgba(31,79,214,.35), transparent 42%), radial-gradient(circle at 88% 78%, rgba(245,158,11,.16), transparent 40%); }
.pw-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%); }
.pw-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: clamp(56px,8vw,104px) 0; }
.pw-hero .pw-eyebrow { color: var(--pw-amber); }
.pw-hero .pw-eyebrow::before { background: var(--pw-amber); }
.pw-hero h1 { color: #fff; margin-bottom: 20px; }
.pw-hero h1 .accent { color: var(--pw-amber); }
.pw-hero-sub { font-size: clamp(16px,2.1vw,19px); color: #c4cfe2; max-width: 560px; margin-bottom: 30px; }
.pw-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.pw-hero-entity { display: grid; gap: 10px; padding: 18px 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--pw-radius); max-width: 560px; }
.pw-hero-entity p { color: #d4dcec; font-size: 14.5px; margin: 0; line-height: 1.6; }
.pw-hero-entity strong { color: #fff; }
.pw-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.pw-hero-tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 100px; font-size: 13px; color: #d4dcec; }
.pw-hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--pw-amber); }
/* hero visual */
.pw-hero-visual { position: relative; }
.pw-hero-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--pw-radius-lg); padding: 26px; backdrop-filter: blur(6px); }
.pw-hero-card-title { font-family: var(--pw-head); font-weight: 700; color: #fff; font-size: 15px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.pw-spec-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px dashed rgba(255,255,255,.14); font-size: 14px; }
.pw-spec-row:last-child { border-bottom: none; }
.pw-spec-row span:first-child { color: #9fb0cc; }
.pw-spec-row span:last-child { color: #fff; font-weight: 600; }
.pw-hero-stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 18px; }
.pw-hero-stat { text-align: center; padding: 14px 8px; background: rgba(255,255,255,.05); border-radius: var(--pw-radius); }
.pw-hero-stat b { display: block; font-family: var(--pw-head); font-size: 22px; color: var(--pw-amber); font-weight: 800; }
.pw-hero-stat span { font-size: 11.5px; color: #9fb0cc; text-transform: uppercase; letter-spacing: .05em; }

/* ════════ TRUST STRIP ════════ */
.pw-trust { border-bottom: 1px solid var(--pw-line); background: #fff; }
.pw-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.pw-trust-item { display: flex; gap: 14px; align-items: flex-start; padding: 28px 24px; border-right: 1px solid var(--pw-line); }
.pw-trust-item:last-child { border-right: none; }
.pw-trust-ico { flex: none; width: 42px; height: 42px; border-radius: var(--pw-radius-sm); background: var(--pw-blue-xlt); color: var(--pw-blue); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.pw-trust-item b { display: block; font-family: var(--pw-head); font-size: 15px; color: var(--pw-ink); margin-bottom: 2px; }
.pw-trust-item p { font-size: 13px; margin: 0; }

/* ════════ CARD GRID GENERIC ════════ */
.pw-grid { display: grid; gap: 22px; }
.pw-grid-2 { grid-template-columns: repeat(2,1fr); }
.pw-grid-3 { grid-template-columns: repeat(3,1fr); }
.pw-grid-4 { grid-template-columns: repeat(4,1fr); }

/* ════════ TYPE CARDS ════════ */
.pw-type-card { background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius-lg); overflow: hidden; transition: all var(--pw-t); display: flex; flex-direction: column; }
.pw-type-card:hover { border-color: var(--pw-blue-lt); box-shadow: var(--pw-shadow-lg); transform: translateY(-3px); }
.pw-type-card-top { height: 132px; background: linear-gradient(135deg, var(--pw-surface2), var(--pw-blue-xlt)); display: flex; align-items: center; justify-content: center; position: relative; }
.pw-type-card-top .pw-type-ico { font-size: 50px; filter: saturate(.85); }
.pw-type-card-tag { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; font-family: var(--pw-head); text-transform: uppercase; letter-spacing: .05em; color: var(--pw-blue); background: #fff; padding: 4px 10px; border-radius: 100px; box-shadow: var(--pw-shadow); }
.pw-type-card-body { padding: 20px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.pw-type-card-body h3 { font-size: 18px; margin-bottom: 8px; }
.pw-type-card-body p { font-size: 13.5px; margin-bottom: 14px; }
.pw-type-meta { display: grid; gap: 6px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--pw-line); font-size: 12.5px; }
.pw-type-meta div { display: flex; gap: 8px; }
.pw-type-meta b { color: var(--pw-dark); font-family: var(--pw-head); font-weight: 600; min-width: 78px; flex: none; }
.pw-type-meta span { color: var(--pw-grey); }

/* ════════ CONFIGURATOR ENTRY ════════ */
.pw-config { background: linear-gradient(160deg, var(--pw-navy) 0%, var(--pw-navy-dk) 100%); color: #fff; border-radius: var(--pw-radius-lg); overflow: hidden; }
.pw-config-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.pw-config-left { padding: clamp(32px,5vw,56px); }
.pw-config-left .pw-eyebrow { color: var(--pw-amber); } .pw-config-left .pw-eyebrow::before { background: var(--pw-amber); }
.pw-config-left h2 { color: #fff; margin-bottom: 16px; }
.pw-config-left p { color: #c4cfe2; }
.pw-config-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin: 22px 0 28px; }
.pw-config-opts li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: #dbe3f0; }
.pw-config-opts li::before { content: '✓'; flex: none; width: 20px; height: 20px; border-radius: 5px; background: rgba(245,158,11,.18); color: var(--pw-amber); font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.pw-config-note { font-size: 13px; color: #9fb0cc; padding: 12px 16px; background: rgba(255,255,255,.05); border-left: 3px solid var(--pw-amber); border-radius: 0 var(--pw-radius-sm) var(--pw-radius-sm) 0; margin-bottom: 24px; }
.pw-config-right { background: rgba(0,0,0,.18); padding: clamp(32px,5vw,56px); display: flex; flex-direction: column; justify-content: center; }
.pw-config-step { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px dashed rgba(255,255,255,.12); }
.pw-config-step:last-child { border-bottom: none; }
.pw-config-step b { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--pw-amber); color: var(--pw-navy); font-family: var(--pw-head); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.pw-config-step div strong { display: block; color: #fff; font-family: var(--pw-head); font-size: 14.5px; margin-bottom: 2px; }
.pw-config-step div span { font-size: 13px; color: #9fb0cc; }

/* configurator embed wrapper (plugin renders inside) */
.pw-config-embed { margin-top: 28px; }
.pw-config-embed-inner { background: #fff; border-radius: var(--pw-radius-lg); padding: 8px; box-shadow: var(--pw-shadow-lg); }

/* ════════ MATERIALS ════════ */
.pw-mat-card { background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius); padding: 20px; transition: all var(--pw-t); }
.pw-mat-card:hover { border-color: var(--pw-blue-lt); box-shadow: var(--pw-shadow); }
.pw-mat-card .pw-mat-ico { font-size: 24px; margin-bottom: 10px; }
.pw-mat-card h4 { font-size: 16px; margin-bottom: 6px; }
.pw-mat-card p { font-size: 13px; margin: 0; }
.pw-mat-card .pw-mat-use { display: inline-block; margin-top: 10px; font-size: 11.5px; font-weight: 600; font-family: var(--pw-head); color: var(--pw-blue); background: var(--pw-blue-xlt); padding: 3px 9px; border-radius: 100px; }
.pw-comp-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pw-comp-chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; background: #fff; border: 1px solid var(--pw-line); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--pw-dark); }
.pw-comp-chip span { color: var(--pw-blue); }

/* ════════ PRINTING TABLE ════════ */
.pw-print-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius-lg); overflow: hidden; font-size: 14px; }
.pw-print-table th { background: var(--pw-navy); color: #fff; font-family: var(--pw-head); font-weight: 600; text-align: left; padding: 15px 18px; font-size: 13px; letter-spacing: .02em; }
.pw-print-table td { padding: 15px 18px; border-top: 1px solid var(--pw-line); color: var(--pw-mid); vertical-align: top; }
.pw-print-table tr:hover td, .pw-print-table tbody tr:hover td { background: var(--pw-surface); }
.pw-print-table td b { color: var(--pw-ink); font-family: var(--pw-head); }

/* ════════ PROCESS FLOW ════════ */
.pw-flow { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.pw-flow-step { position: relative; background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius); padding: 22px 20px; }
.pw-flow-step .pw-flow-num { font-family: var(--pw-head); font-weight: 800; font-size: 13px; color: var(--pw-amber); letter-spacing: .08em; margin-bottom: 10px; }
.pw-flow-step h4 { font-size: 16px; margin-bottom: 7px; }
.pw-flow-step p { font-size: 13px; margin: 0; }
.pw-flow-step::after { content: '→'; position: absolute; right: -14px; top: 50%; transform: translateY(-50%); color: var(--pw-line-dk); font-size: 18px; font-weight: 700; z-index: 2; }
.pw-flow-step:nth-child(4n)::after, .pw-flow-step:last-child::after { display: none; }

/* ════════ QC CHECKLIST ════════ */
.pw-qc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 32px; }
.pw-qc-item { display: flex; gap: 13px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--pw-line); }
.pw-qc-check { flex: none; width: 26px; height: 26px; border-radius: 6px; background: var(--pw-blue-xlt); color: var(--pw-blue); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; }
.pw-qc-item b { display: block; font-family: var(--pw-head); font-size: 15px; color: var(--pw-ink); margin-bottom: 2px; }
.pw-qc-item p { font-size: 13px; margin: 0; }

/* ════════ APPLICATIONS ════════ */
.pw-app-card { background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius); padding: 22px; transition: all var(--pw-t); }
.pw-app-card:hover { border-color: var(--pw-blue-lt); box-shadow: var(--pw-shadow); transform: translateY(-2px); }
.pw-app-ico { width: 44px; height: 44px; border-radius: var(--pw-radius-sm); background: var(--pw-amber-lt); color: var(--pw-amber-dk); display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 14px; }
.pw-app-card h4 { font-size: 16px; margin-bottom: 8px; }
.pw-app-card p { font-size: 13px; margin-bottom: 12px; }
.pw-app-tags { display: flex; flex-direction: column; gap: 4px; font-size: 12.5px; }
.pw-app-tags div { display: flex; gap: 6px; }
.pw-app-tags b { font-family: var(--pw-head); font-weight: 600; color: var(--pw-dark); min-width: 88px; flex: none; }
.pw-app-tags span { color: var(--pw-grey); }

/* ════════ CASE STUDIES ════════ */
.pw-case-card { background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius-lg); padding: 26px; position: relative; overflow: hidden; }
.pw-case-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--pw-amber); }
.pw-case-type { font-family: var(--pw-head); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--pw-blue); margin-bottom: 10px; }
.pw-case-card h3 { font-size: 19px; margin-bottom: 14px; }

/* ════════ CARD MEDIA (media-library product photos) ════════
   Replaces the old emoji icon tiles. Every card that shows a product photo
   uses .pw-card-media as a fixed-ratio frame so a mixed-aspect media library
   still yields a clean grid. .pw-card-img-fallback covers missing
   attachments with a gradient tile instead of a broken image. */
.pw-card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: linear-gradient(135deg, var(--pw-surface2), var(--pw-blue-xlt)); }
.pw-card-media-sm { aspect-ratio: 16 / 10; }
.pw-card-media .pw-card-img,
.pw-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.pw-card-img-fallback { display: block; width: 100%; height: 100%; background:
  radial-gradient(120% 90% at 25% 15%, var(--pw-blue-xlt), transparent 60%),
  linear-gradient(135deg, var(--pw-surface2), var(--pw-line)); }
.pw-type-card:hover .pw-card-media img,
.pw-app-card:hover .pw-card-media img,
.pw-mat-card:hover .pw-card-media img,
.pw-case-card:hover .pw-card-media img { transform: scale(1.05); }
/* Photo cards need a readable float for the tag chip. */
.pw-card-tag { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 11px; font-weight: 700; font-family: var(--pw-head); text-transform: uppercase; letter-spacing: .05em; color: var(--pw-navy); background: rgba(255,255,255,.94); backdrop-filter: blur(4px); padding: 5px 11px; border-radius: 100px; box-shadow: 0 2px 8px rgba(8,21,15,.18); }
/* Subtle top-down scrim so tags and edges stay legible on light photos. */
.pw-card-media::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(8,21,15,.18), transparent 42%, rgba(8,21,15,.06)); }

/* Materials cards become photo cards: padding moves to an inner body. */
.pw-mat-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.pw-mat-card-body { padding: 18px 18px 20px; flex: 1; }
.pw-mat-card-body h4 { font-size: 16px; margin-bottom: 6px; }
.pw-mat-card-body p { font-size: 13px; margin: 0; }

/* Application cards become photo cards. */
.pw-app-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.pw-app-card-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }

/* Case cards become photo cards; the amber rule moves under the image. */
.pw-case-card { padding: 0; display: flex; flex-direction: column; }
.pw-case-card::before { display: none; }
.pw-case-card-body { padding: 22px 26px 26px; border-top: 3px solid var(--pw-amber); flex: 1; }

/* Hero product shot sits behind the spec card. */
.pw-hero-shot { border-radius: var(--pw-radius-lg); overflow: hidden; margin-bottom: -56px; box-shadow: 0 18px 50px rgba(8,21,15,.35); }
.pw-hero-shot img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 10; object-fit: cover; }
.pw-hero-card { position: relative; z-index: 2; background: rgba(10,25,20,.72); backdrop-filter: blur(14px); }

@media (max-width: 900px) {
  .pw-hero-shot { margin-bottom: -32px; }
}

.pw-case-specs { display: grid; gap: 8px; }
.pw-case-specs div { display: flex; gap: 10px; font-size: 13.5px; }
.pw-case-specs b { font-family: var(--pw-head); font-weight: 600; color: var(--pw-dark); min-width: 110px; flex: none; }
.pw-case-specs span { color: var(--pw-grey); }

/* ════════ FAQ ════════ */
.pw-faq { max-width: 860px; margin: 0 auto; }
.pw-faq-item { background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius); margin-bottom: 12px; overflow: hidden; }
.pw-faq-q { width: 100%; text-align: left; background: none; border: none; padding: 19px 22px; font-family: var(--pw-head); font-weight: 600; font-size: 16px; color: var(--pw-ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.pw-faq-q::after { content: '+'; flex: none; font-size: 22px; font-weight: 400; color: var(--pw-blue); transition: transform var(--pw-t); }
.pw-faq-item.open .pw-faq-q::after { transform: rotate(45deg); }
.pw-faq-a { max-height: 0; overflow: hidden; transition: max-height var(--pw-t); }
.pw-faq-a-inner { padding: 0 22px 20px; font-size: 14.5px; color: var(--pw-grey); }
.pw-faq-item.open .pw-faq-a { max-height: 400px; }

/* ════════ RFQ / CONTACT ════════ */
.pw-rfq { background: var(--pw-navy); color: #fff; }
.pw-rfq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.pw-rfq-info .pw-eyebrow { color: var(--pw-amber); } .pw-rfq-info .pw-eyebrow::before { background: var(--pw-amber); }
.pw-rfq-info h2 { color: #fff; margin-bottom: 16px; }
.pw-rfq-info > p { color: #c4cfe2; margin-bottom: 26px; }
.pw-rfq-flow { display: grid; gap: 2px; }
.pw-rfq-flow li { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px dashed rgba(255,255,255,.12); font-size: 14px; color: #dbe3f0; }
.pw-rfq-flow li b { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(245,158,11,.18); color: var(--pw-amber); font-family: var(--pw-head); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.pw-rfq-flow li strong { color: #fff; }
.pw-rfq-contacts { margin-top: 26px; display: grid; gap: 10px; font-size: 14px; }
.pw-rfq-contacts a, .pw-rfq-contacts div { color: #dbe3f0; display: flex; align-items: center; gap: 9px; }
.pw-rfq-form-wrap { background: #fff; border-radius: var(--pw-radius-lg); padding: 30px; box-shadow: var(--pw-shadow-lg); }
.pw-rfq-form-wrap h3 { color: var(--pw-ink); font-size: 20px; margin-bottom: 6px; }
.pw-rfq-form-wrap > p { font-size: 13.5px; margin-bottom: 20px; }
.pw-form { display: grid; gap: 14px; }
.pw-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pw-field { display: flex; flex-direction: column; gap: 5px; }
.pw-field label { font-family: var(--pw-head); font-size: 13px; font-weight: 600; color: var(--pw-dark); }
.pw-field input, .pw-field select, .pw-field textarea { background: var(--pw-surface); border: 1.5px solid var(--pw-line); border-radius: var(--pw-radius-sm); padding: 11px 13px; font-size: 14px; color: var(--pw-ink); transition: all var(--pw-t); }
.pw-field input:focus, .pw-field select:focus, .pw-field textarea:focus { outline: none; border-color: var(--pw-blue); background: #fff; box-shadow: 0 0 0 3px var(--pw-blue-xlt); }
.pw-field textarea { resize: vertical; min-height: 92px; }
.pw-form-status { font-size: 13.5px; }
.pw-form-status.ok { color: var(--pw-green); }
.pw-form-status.err { color: #dc2626; }
.pw-hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ════════ CTA BAND ════════ */
.pw-cta-band { background: linear-gradient(120deg, var(--pw-blue) 0%, var(--pw-blue-dk) 100%); color: #fff; border-radius: var(--pw-radius-lg); padding: clamp(34px,5vw,56px); text-align: center; }
.pw-cta-band h2 { color: #fff; margin-bottom: 12px; }
.pw-cta-band p { color: #d7e0fb; max-width: 580px; margin: 0 auto 26px; }
.pw-cta-band .pw-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════ BREADCRUMB ════════ */
.pw-bc-bar { background: var(--pw-surface); border-bottom: 1px solid var(--pw-line); }
.pw-bc-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 13px 0; font-size: 13px; }
.pw-bc-list li { color: var(--pw-grey); }
.pw-bc-list li:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--pw-line-dk); }
.pw-bc-list a { color: var(--pw-blue); }

/* ════════ PAGE / POST CONTENT ════════ */
.pw-page-hero { background: var(--pw-surface); border-bottom: 1px solid var(--pw-line); padding: clamp(40px,5vw,64px) 0; }
.pw-page-hero h1 { margin-bottom: 12px; }
.pw-prose { max-width: 820px; }
.pw-prose h2 { margin: 32px 0 14px; } .pw-prose h3 { margin: 26px 0 12px; }
.pw-prose p, .pw-prose ul, .pw-prose ol { margin-bottom: 16px; color: var(--pw-mid); }
.pw-prose ul, .pw-prose ol { padding-left: 22px; } .pw-prose ul li { list-style: disc; } .pw-prose ol li { list-style: decimal; } .pw-prose li { margin-bottom: 6px; }
.pw-prose img { border-radius: var(--pw-radius); margin: 20px 0; }
.pw-prose blockquote { border-left: 4px solid var(--pw-amber); padding: 8px 20px; background: var(--pw-surface); border-radius: 0 var(--pw-radius-sm) var(--pw-radius-sm) 0; margin: 20px 0; font-style: italic; }

/* ════════ BLOG ════════ */
.pw-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pw-blog-card { background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius-lg); overflow: hidden; transition: all var(--pw-t); display: flex; flex-direction: column; }
.pw-blog-card:hover { box-shadow: var(--pw-shadow-lg); transform: translateY(-3px); }
.pw-blog-card-img img { width: 100%; height: 200px; object-fit: cover; }
.pw-blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pw-blog-card-cat { font-size: 11.5px; font-weight: 700; font-family: var(--pw-head); text-transform: uppercase; letter-spacing: .05em; color: var(--pw-blue); margin-bottom: 9px; }
.pw-blog-card-title { font-size: 18px; margin-bottom: 9px; }
.pw-blog-card-excerpt { font-size: 13.5px; margin-bottom: 14px; }
.pw-blog-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--pw-line); font-size: 13px; }
.pw-blog-card-date { color: var(--pw-grey-lt); }
.pw-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.pw-page-num, .pw-page-btn { padding: 9px 15px; border: 1px solid var(--pw-line); border-radius: var(--pw-radius-sm); font-family: var(--pw-head); font-weight: 600; font-size: 14px; color: var(--pw-dark); }
.pw-page-current { background: var(--pw-blue); color: #fff; border-color: var(--pw-blue); }
.pw-page-num:hover:not(.pw-page-current), .pw-page-btn:hover { border-color: var(--pw-blue); color: var(--pw-blue); }

/* WordPress-native paginate_links( type=list ) output */
.pw-pagination .page-numbers { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 0; margin: 0; }
.pw-pagination .page-numbers li { list-style: none; }
.pw-pagination a.page-numbers,
.pw-pagination span.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; padding: 9px 14px; border: 1px solid var(--pw-line); border-radius: var(--pw-radius-sm); font-family: var(--pw-head); font-weight: 600; font-size: 14px; color: var(--pw-dark); text-decoration: none; transition: all var(--pw-t); }
.pw-pagination a.page-numbers:hover { border-color: var(--pw-blue); color: var(--pw-blue); }
.pw-pagination span.page-numbers.current { background: var(--pw-blue); color: #fff; border-color: var(--pw-blue); }
.pw-pagination span.page-numbers.dots { border-color: transparent; }

/* ════════ SEO SINGLE PAGE ELEMENTS ════════ */
.pw-spec-summary { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 32px; }
.pw-spec-summary-item { background: var(--pw-surface); border: 1px solid var(--pw-line); border-radius: var(--pw-radius); padding: 16px 18px; }
.pw-spec-summary-item strong { display: block; font-family: var(--pw-head); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--pw-blue); margin-bottom: 6px; }
.pw-spec-summary-item span { font-size: 14.5px; color: var(--pw-ink); font-weight: 500; }
.pw-spec-table-wrap { margin-top: 36px; }
.pw-spec-table-wrap h2 { margin-bottom: 16px; }
.pw-info-card { background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius); padding: 24px; }
.pw-info-card h3 { font-size: 18px; margin-bottom: 12px; }
.pw-info-card p { font-size: 14px; }
@media (max-width: 768px) { .pw-spec-summary { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .pw-spec-summary { grid-template-columns: 1fr; } }

/* ════════ NEWS / BLOG BLOCK (home: 1 featured + 4 grid) ════════ */
.pw-news-feat-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.pw-news-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.pw-news-featured { display: grid; grid-template-columns: 1.25fr 1fr; gap: 0; background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius-lg); overflow: hidden; transition: transform var(--pw-t), box-shadow var(--pw-t); }
.pw-news-featured:hover { box-shadow: var(--pw-shadow-lg); transform: translateY(-2px); }
.pw-news-featured-img { min-height: 280px; background: var(--pw-surface2); overflow: hidden; }
.pw-news-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.6,.2,1); }
.pw-news-featured:hover .pw-news-featured-img img { transform: scale(1.04); }
.pw-news-featured-body { padding: clamp(24px,3vw,44px); display: flex; flex-direction: column; justify-content: center; }
.pw-news-cat { display: inline-flex; align-self: flex-start; align-items: center; font-size: 11px; font-weight: 700; font-family: var(--pw-head); text-transform: uppercase; letter-spacing: .06em; color: var(--pw-blue); background: var(--pw-blue-xlt); padding: 4px 10px; border-radius: 100px; margin-bottom: 14px; }
.pw-news-featured-body h3 { font-size: clamp(20px,2.6vw,28px); margin-bottom: 12px; line-height: 1.25; }
.pw-news-featured-body h3 a { color: var(--pw-ink); }
.pw-news-featured-body h3 a:hover { color: var(--pw-blue); }
.pw-news-featured-body p { font-size: 14.5px; margin-bottom: 18px; }
.pw-news-card { background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--pw-t), box-shadow var(--pw-t), border-color var(--pw-t); }
.pw-news-card:hover { box-shadow: var(--pw-shadow-lg); transform: translateY(-3px); border-color: var(--pw-blue-lt); }
.pw-news-card-img { height: 142px; background: var(--pw-surface2); overflow: hidden; }
.pw-news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.6,.2,1); }
.pw-news-card:hover .pw-news-card-img img { transform: scale(1.05); }
.pw-news-card-body { padding: 16px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.pw-news-card .pw-news-cat { font-size: 10.5px; padding: 3px 9px; margin-bottom: 10px; }
.pw-news-card h4 { font-size: 15px; line-height: 1.38; margin-bottom: 10px; }
.pw-news-card h4 a { color: var(--pw-ink); }
.pw-news-card h4 a:hover { color: var(--pw-blue); }
.pw-news-date { font-size: 12px; color: var(--pw-grey-lt); margin-top: auto; }

/* ════════ SEO CATEGORY PANELS (home + index menu pages) ════════ */
.pw-cats { background: var(--pw-white); }
.pw-seo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.pw-seo-grid.cols-4 { grid-template-columns: repeat(4,1fr); }
.pw-seo-grid.cols-3 { grid-template-columns: repeat(3,1fr); }

.pw-seo-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius); padding: 24px 22px 20px; overflow: hidden; transition: transform var(--pw-t), box-shadow var(--pw-t), border-color var(--pw-t); }
.pw-seo-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--pw-amber); transform: scaleY(0); transform-origin: top; transition: transform var(--pw-t); }
.pw-seo-card:hover { border-color: var(--pw-blue-lt); box-shadow: var(--pw-shadow-lg); transform: translateY(-3px); }
.pw-seo-card:hover::before { transform: scaleY(1); }
.pw-seo-card-num { font-family: var(--pw-head); font-weight: 800; font-size: 12px; letter-spacing: .08em; color: var(--pw-grey-lt); margin-bottom: 12px; }
.pw-seo-card strong { font-family: var(--pw-head); font-size: 16.5px; line-height: 1.3; color: var(--pw-ink); margin-bottom: 9px; }
.pw-seo-card .pw-seo-card-ex,
.pw-seo-card > span:not(.pw-seo-card-num) { font-size: 13.5px; line-height: 1.55; color: var(--pw-grey); margin-bottom: 16px; }
.pw-seo-card em { font-style: normal; margin-top: auto; font-family: var(--pw-head); font-weight: 600; font-size: 13.5px; color: var(--pw-blue); display: inline-flex; align-items: center; gap: 6px; }
.pw-seo-card em span { transition: transform var(--pw-t); }
.pw-seo-card:hover em { color: var(--pw-blue-dk); }
.pw-seo-card:hover em span { transform: translateX(4px); }

/* Each category is a panel; alternate panels get a soft surface + inset padding. */
.pw-cat-block + .pw-cat-block { margin-top: clamp(28px,4vw,44px); }
.pw-cat-block.is-alt { background: var(--pw-surface); border: 1px solid var(--pw-line); border-radius: var(--pw-radius-lg); padding: clamp(26px,3.4vw,44px); }
.pw-cat-block-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px 24px; margin-bottom: clamp(20px,2.4vw,28px); flex-wrap: wrap; }
.pw-cat-block-intro { max-width: 760px; }
.pw-cat-block-intro h2 { font-size: clamp(22px,3vw,32px); margin-bottom: 8px; }
.pw-cat-block-intro .pw-lead { margin-top: 0; }
.pw-cat-viewall { display: inline-flex; align-items: center; gap: 7px; font-family: var(--pw-head); font-weight: 600; font-size: 14px; white-space: nowrap; padding: 9px 16px; border: 1px solid var(--pw-line-dk); border-radius: 100px; color: var(--pw-ink); transition: all var(--pw-t); }
.pw-cat-viewall span { transition: transform var(--pw-t); }
.pw-cat-viewall:hover { border-color: var(--pw-blue); color: var(--pw-blue); background: var(--pw-blue-xlt); }
.pw-cat-viewall:hover span { transform: translateX(4px); }

/* ════════ EMBEDDED 3D CONFIGURATOR (home) ════════ */
.pw-config-embed-section { background: linear-gradient(180deg, var(--pw-surface) 0%, var(--pw-white) 100%); }
.pw-config-embed-wrap { background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius-lg); box-shadow: var(--pw-shadow-lg); padding: clamp(14px,2vw,28px); }
.pw-config-embed-wrap .ubc-app { max-width: 100%; }

@media (max-width: 900px) {
  .pw-news-row { grid-template-columns: repeat(2,1fr); }
  .pw-seo-grid, .pw-seo-grid.cols-4, .pw-seo-grid.cols-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .pw-news-featured { grid-template-columns: 1fr; }
  .pw-news-featured-img { min-height: 180px; }
  .pw-news-row { grid-template-columns: 1fr; }
  .pw-seo-grid, .pw-seo-grid.cols-4, .pw-seo-grid.cols-3 { grid-template-columns: 1fr; }
  .pw-cat-block.is-alt { padding: 22px 18px; }
}

/* ════════ FOOTER ════════ */
.pw-footer { background: var(--pw-navy-dk); color: #aab6cc; padding: clamp(48px,6vw,72px) 0 0; }
.pw-footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.pw-footer-brand .pw-footer-logo { font-family: var(--pw-head); font-weight: 800; font-size: 20px; color: #fff; margin-bottom: 14px; display: inline-flex; align-items: center; gap: 9px; }
.pw-footer-logo-img { max-height: 48px; margin-bottom: 14px; }
.pw-footer-brand p { font-size: 14px; max-width: 320px; margin-bottom: 16px; }
.pw-footer-brand div { font-size: 13.5px; margin-bottom: 6px; }
.pw-footer-brand a { color: #aab6cc; } .pw-footer-brand a:hover { color: #fff; }
.pw-footer-title { font-family: var(--pw-head); font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 16px; letter-spacing: .02em; }
.pw-footer-col ul li { margin-bottom: 9px; }
.pw-footer-col a { font-size: 13.5px; color: #aab6cc; } .pw-footer-col a:hover { color: var(--pw-amber); }
.pw-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.pw-footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding: 22px 0; font-size: 12.5px; color: #7a89a6; }

/* ════════ 404 / NO RESULTS ════════ */
.pw-empty { text-align: center; padding: 60px 20px; }
.pw-empty .pw-empty-ico { font-size: 54px; margin-bottom: 16px; }
.pw-empty h2 { margin-bottom: 10px; }
.pw-empty p { margin-bottom: 22px; }

/* ════════ MISC ════════ */
.pw-hero-content { min-width: 0; }
.pw-blog-card-link { font-family: var(--pw-head); font-weight: 600; color: var(--pw-blue); white-space: nowrap; }
.pw-blog-card-link:hover { color: var(--pw-blue-dk); }
.pw-page-links { margin-top: 20px; font-family: var(--pw-head); font-weight: 600; font-size: 14px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.pw-page-links a { display: inline-flex; min-width: 34px; justify-content: center; padding: 6px 10px; border: 1px solid var(--pw-line); border-radius: var(--pw-radius-sm); }
.pw-page-links a:hover { border-color: var(--pw-blue); }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1024px) {
  .pw-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .pw-hero-visual { max-width: 520px; }
  .pw-config-grid { grid-template-columns: 1fr; }
  .pw-rfq-grid { grid-template-columns: 1fr; gap: 32px; }
  .pw-grid-4 { grid-template-columns: repeat(3,1fr); }
  .pw-flow { grid-template-columns: repeat(2,1fr); }
  .pw-flow-step:nth-child(4n)::after { display: block; }
  .pw-flow-step:nth-child(2n)::after, .pw-flow-step:last-child::after { display: none; }
  .pw-trust-grid { grid-template-columns: repeat(2,1fr); }
  .pw-trust-item:nth-child(2) { border-right: none; }
  .pw-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 1080px) {
  .pw-nav, .pw-header-actions .pw-btn { display: none; }
  .pw-ham { display: flex; }
}
@media (max-width: 768px) {
  .pw-grid-2, .pw-grid-3, .pw-grid-4 { grid-template-columns: 1fr; }
  .pw-blog-grid { grid-template-columns: 1fr; }
  .pw-qc-grid { grid-template-columns: 1fr; }
  .pw-config-opts { grid-template-columns: 1fr; }
  .pw-form-row { grid-template-columns: 1fr; }
  .pw-print-table { display: block; overflow-x: auto; white-space: nowrap; }
  .pw-footer-inner { grid-template-columns: 1fr; }
  .pw-topbar-inner { font-size: 12px; }
  .pw-tb-left span:not(:first-child), .pw-tb-sep { display: none; }
}
@media (max-width: 520px) {
  .pw-trust-grid { grid-template-columns: 1fr; }
  .pw-trust-item { border-right: none; }
  .pw-flow { grid-template-columns: 1fr; }
  .pw-flow-step::after { display: none !important; }
  .pw-hero-stat-grid { grid-template-columns: repeat(3,1fr); }
}

/* ════════ PADDLE HOMEPAGE LAYOUTS ════════
   Top-view pickleball-paddle components. Content remains normal crawlable HTML
   links; the paddle face, weave and grip are CSS/SVG decoration only. */
.pw-layout-network { position: relative; }

/* ── Paddle frame cards (Manufacturing / Solutions blocks + SEO archive) ──
   Photo on top, content below, paddle silhouette watermark behind the text.
   The v1.x umbrella-canopy clip-path and conic panel gradients are gone; see
   the v2.0 override block below for the current visual treatment. */
.pw-pdl-frame-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 30px 26px; align-items: stretch; }
.pw-pdl-frame-grid.cols-4 { grid-template-columns: repeat(4,minmax(0,1fr)); }
.pw-pdl-frame-grid.cols-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.pw-pdl-frame-card { position: relative; display: flex; text-decoration: none; flex-direction: column; color: var(--pw-ink); transition: transform var(--pw-t), border-color var(--pw-t), box-shadow var(--pw-t); }
.pw-pdl-frame-media { display: block; background: var(--pw-surface2); overflow: hidden; }
.pw-pdl-frame-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pw-pdl-frame-body { position: relative; z-index: 1; display: flex; flex-direction: column; flex: 1; }
.pw-pdl-frame-content { position: relative; z-index: 6; display: flex; flex-direction: column; height: 100%; }
.pw-pdl-frame-lines { display: none !important; }
.pw-pdl-frame-num { display: inline-flex; align-items: center; justify-content: center; align-self: flex-start; width: 29px; height: 29px; border-radius: 50%; margin-bottom: 10px; font-family: var(--pw-head); font-weight: 800; font-size: 12px; }
.pw-pdl-frame-card strong { font-family: var(--pw-head); color: var(--pw-ink); font-size: 15.5px; line-height: 1.25; margin-bottom: 7px; }
.pw-pdl-frame-ex { font-size: 12.8px; line-height: 1.48; color: var(--pw-grey); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.pw-pdl-frame-card em { font-style: normal; margin-top: auto; font-family: var(--pw-head); font-weight: 700; font-size: 13px; display: inline-flex; align-items: center; gap: 5px; }
.pw-pdl-frame-card em span { transition: transform var(--pw-t); }
.pw-pdl-frame-card:hover em span { transform: translateX(4px); }
.pw-js .pw-reveal { opacity: 0; transform: translateY(20px) scale(.985); transition: opacity .5s ease var(--pw-delay,0ms), transform .5s cubic-bezier(.2,.7,.2,1) var(--pw-delay,0ms); }
.pw-js .pw-reveal.is-on { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .pw-pdl-frame-card,
  .pw-linkcard,
  .pw-js .pw-reveal { transition: none !important; transform: none !important; opacity: 1 !important; }
}
@media (max-width: 980px) {
  .pw-pdl-frame-grid, .pw-pdl-frame-grid.cols-4, .pw-pdl-frame-grid.cols-3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .pw-pdl-frame-grid, .pw-pdl-frame-grid.cols-4, .pw-pdl-frame-grid.cols-3 { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════════════
 * v2.0 PADDLE IDENTITY OVERRIDES
 *
 * The v1.x theme clipped every homepage link card into an umbrella-canopy
 * polygon and layered conic "panel" gradients behind the text. That reads as
 * an umbrella brand and hurts legibility at small sizes, so v2.0 replaces it
 * with a clean rounded card plus a low-opacity paddle silhouette watermark.
 *
 * This block comes last so it wins on specificity ties without needing to
 * unpick the older rules above.
 * ══════════════════════════════════════════════════════════════════ */

/* ── Shared paddle silhouette watermark ───────────────────────────── */
[class$="-paddle"] { position: absolute; inset: 8% 50% auto auto; z-index: 0; width: 62%; height: 84%; transform: translateX(50%); pointer-events: none; opacity: .10; }
[class$="-face"] { position: absolute; left: 0; top: 0; width: 100%; height: 68%; border-radius: 44% 44% 40% 40% / 46% 46% 42% 42%; background: linear-gradient(150deg, var(--pw-navy), var(--pw-navy-dk)); }
[class$="-edge"] { position: absolute; left: -2%; top: -2%; width: 104%; height: 72%; border-radius: 44% 44% 40% 40% / 46% 46% 42% 42%; border: 2px solid var(--pw-amber); opacity: .55; }
[class$="-weave"] { position: absolute; height: 1px; transform-origin: left center; background: rgba(255,255,255,.5); }
[class$="-throat"] { position: absolute; left: 38%; top: 64%; width: 24%; height: 10%; background: var(--pw-navy-dk); clip-path: polygon(0 0, 100% 0, 74% 100%, 26% 100%); }
[class$="-handle"] { position: absolute; left: 43%; top: 72%; width: 14%; height: 24%; border-radius: 7px; background: linear-gradient(90deg, var(--pw-navy-dk), var(--pw-mid), var(--pw-navy-dk)); }
[class$="-cap"] { position: absolute; left: 40.5%; top: 94%; width: 19%; height: 5%; border-radius: 4px; background: var(--pw-ink); }

/* ── Frame cards: rounded card, paddle watermark, real photo on top ─ */
.pw-pdl-frame-card { background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius-lg); overflow: hidden; }
.pw-pdl-frame-card:hover { transform: translateY(-4px); border-color: var(--pw-blue-lt); box-shadow: var(--pw-shadow-lg); filter: none; }
.pw-pdl-frame-media { height: 172px; margin: 0; border: 0; border-radius: 0; }
.pw-pdl-frame-body {
  --pw-frame-poly: none;
  position: relative;
  aspect-ratio: auto;
  min-height: 0;
  padding: 20px 22px 24px;
  filter: none;
  overflow: hidden;
}
.pw-pdl-frame-content { padding: 0; }
.pw-pdl-frame-content::before { display: none; }
.pw-pdl-frame-num { background: var(--pw-blue-xlt); color: var(--pw-blue-dk); }
.pw-pdl-frame-card em { color: var(--pw-blue); }


/* ════════════════════════════════════════════════════════════════════
 * v2.1 — HERO BANNER, LOGO MARK, COMPACT LINK GRID
 * ══════════════════════════════════════════════════════════════════ */

/* ── Hero banner photo ────────────────────────────────────────────
   The photo sits behind the existing gradient, dimmed enough that the
   white headline keeps a >7:1 contrast ratio at every viewport. */
.pw-hero.has-banner::before {
  background-image:
    linear-gradient(100deg, rgba(8,21,15,.94) 0%, rgba(8,21,15,.86) 42%, rgba(8,21,15,.62) 100%),
    var(--pw-hero-bg);
  background-size: cover, cover;
  background-position: center, center center;
}
.pw-hero.has-banner::after { opacity: .5; }

/* ── Logo mark: a small CSS paddle, replacing the old umbrella glyph ── */
.pw-logo-mark { position: relative; display: inline-block; width: 20px; height: 24px; flex: 0 0 auto; }
.pw-logo-mark::before { content: ''; position: absolute; left: 0; top: 0; width: 20px; height: 17px; border-radius: 42% 42% 38% 38% / 44% 44% 40% 40%; background: var(--pw-blue); }
.pw-logo-mark::after { content: ''; position: absolute; left: 7.5px; top: 14px; width: 5px; height: 10px; border-radius: 2px; background: var(--pw-navy); }
.pw-nav-drawer-logo .pw-logo-mark::after,
.pw-logo-text .pw-logo-mark::after { background: var(--pw-ink); }
.pw-logo-text { display: inline-flex; align-items: center; gap: 9px; }
.pw-nav-drawer-logo { display: inline-flex; align-items: center; gap: 8px; }


/* ── Compact category link block (replaces the old paddle-network stage) ── */
.pw-linkblock { position: relative; }
.pw-linkblock-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 26px 22px; margin-top: 34px; }
.pw-linkblock-grid[data-count="1"] { grid-template-columns: minmax(0, 420px); justify-content: center; }
.pw-linkblock-grid[data-count="2"] { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 820px; margin-inline: auto; }
.pw-linkblock-grid[data-count="3"],
.pw-linkblock-grid[data-count="5"],
.pw-linkblock-grid[data-count="6"] { grid-template-columns: repeat(3, minmax(0,1fr)); }
.pw-linkcard { display: flex; flex-direction: column; text-decoration: none; color: var(--pw-ink); background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius-lg); overflow: hidden; box-shadow: var(--pw-shadow); transition: transform var(--pw-t), border-color var(--pw-t), box-shadow var(--pw-t); }
.pw-linkcard:hover { transform: translateY(-4px); border-color: var(--pw-blue-lt); box-shadow: var(--pw-shadow-lg); color: var(--pw-ink); }
.pw-linkcard-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, var(--pw-surface2), var(--pw-blue-xlt)); }
.pw-linkcard-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.pw-linkcard:hover .pw-linkcard-media img { transform: scale(1.05); }
.pw-linkcard-media-blank { display: flex; align-items: center; justify-content: center; }
.pw-linkcard-media-blank .pw-linkcard-paddle { position: relative; inset: auto; transform: none; width: 46%; height: 78%; opacity: .16; }
.pw-linkcard-body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.pw-linkcard-num { display: inline-flex; align-items: center; justify-content: center; align-self: flex-start; width: 29px; height: 29px; border-radius: 50%; margin-bottom: 10px; background: var(--pw-blue-xlt); color: var(--pw-blue-dk); font-family: var(--pw-head); font-weight: 800; font-size: 12px; }
.pw-linkcard strong { font-family: var(--pw-head); font-size: 16px; line-height: 1.28; margin-bottom: 7px; }
.pw-linkcard-ex { font-size: 13px; line-height: 1.5; color: var(--pw-grey); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.pw-linkcard em { font-style: normal; margin-top: auto; font-family: var(--pw-head); font-weight: 700; font-size: 13px; color: var(--pw-blue); display: inline-flex; align-items: center; gap: 5px; }
.pw-linkcard em span { transition: transform var(--pw-t); }
.pw-linkcard:hover em span { transform: translateX(4px); }
.pw-linkblock-foot { display: flex; justify-content: center; margin-top: 32px; }

@media (max-width: 1080px) {
  .pw-linkblock-grid,
  .pw-linkblock-grid[data-count="3"],
  .pw-linkblock-grid[data-count="5"],
  .pw-linkblock-grid[data-count="6"] { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .pw-linkblock-grid,
  .pw-linkblock-grid[data-count="2"],
  .pw-linkblock-grid[data-count="3"],
  .pw-linkblock-grid[data-count="5"],
  .pw-linkblock-grid[data-count="6"] { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════
 * v2.1 — INNER PAGES, ARTICLES, SPEC TABLES, VIDEO
 * ══════════════════════════════════════════════════════════════════ */

/* ── Inner page hero ──────────────────────────────────────────────── */
.pw-page-hero { background: linear-gradient(160deg, var(--pw-navy) 0%, var(--pw-navy-dk) 70%, #061410 100%); color: #fff; padding: clamp(40px,5.5vw,68px) 0; position: relative; overflow: hidden; }
.pw-page-hero::after { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(circle at 84% 22%, rgba(200,240,74,.13), transparent 46%), radial-gradient(circle at 12% 88%, rgba(22,160,107,.20), transparent 44%); }
.pw-page-hero > * { position: relative; z-index: 1; }
.pw-page-hero .pw-eyebrow { color: var(--pw-amber); }
.pw-page-hero .pw-eyebrow::before { background: var(--pw-amber); }
.pw-page-hero h1 { color: #fff; margin-bottom: 16px; font-size: clamp(27px,3.6vw,42px); }
.pw-page-hero .pw-lead { color: #c9d8d1; max-width: 62ch; margin-bottom: 26px; }
.pw-page-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.pw-page-hero-text.wide { max-width: 78ch; }
.pw-page-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.pw-page-hero-media { border-radius: var(--pw-radius-lg); overflow: hidden; box-shadow: 0 18px 50px rgba(6,20,16,.45); }
.pw-page-hero-media img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 3; object-fit: cover; }

/* ── Article + sidebar ────────────────────────────────────────────── */
.pw-article-grid { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 54px; align-items: start; }
.pw-article { max-width: 74ch; font-size: 16.5px; line-height: 1.72; color: var(--pw-mid); }
.pw-article-solo { max-width: 78ch; margin: 0 auto; }
.pw-article-intro { font-size: 18.5px; line-height: 1.68; color: var(--pw-dark); font-weight: 500; margin-bottom: 30px; padding-bottom: 26px; border-bottom: 1px solid var(--pw-line); }
.pw-article h2 { font-size: clamp(21px,2.4vw,27px); margin: 40px 0 14px; color: var(--pw-ink); }
.pw-article h2:first-child { margin-top: 0; }
.pw-article h3 { font-size: 19px; margin: 28px 0 10px; }
.pw-article p { margin-bottom: 18px; }
.pw-article a { color: var(--pw-blue); text-decoration: underline; text-underline-offset: 2px; }
.pw-article a:hover { color: var(--pw-blue-dk); }
.pw-article-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 11px; }
.pw-article-list li { position: relative; padding-left: 28px; font-size: 15.5px; line-height: 1.6; }
.pw-article-list li::before { content: ''; position: absolute; left: 8px; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--pw-amber); box-shadow: 0 0 0 3px var(--pw-amber-lt); }
.pw-article .pw-faq { margin-top: 8px; }

/* ── Sidebar cards ────────────────────────────────────────────────── */
.pw-aside { display: grid; gap: 20px; position: sticky; top: calc(var(--pw-nav-h) + 20px); }
.pw-aside-card { background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius-lg); padding: 22px 24px; box-shadow: var(--pw-shadow); }
.pw-aside-card h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .06em; color: var(--pw-grey); margin-bottom: 14px; font-family: var(--pw-head); }
.pw-aside-cta { background: linear-gradient(160deg, var(--pw-navy), var(--pw-navy-dk)); border-color: transparent; }
.pw-aside-cta h3 { color: var(--pw-amber); }
.pw-aside-cta p { color: #c9d8d1; font-size: 14px; margin-bottom: 16px; line-height: 1.55; }
.pw-aside-link { display: block; margin-top: 12px; text-align: center; font-size: 13.5px; font-weight: 600; color: #c9d8d1; font-family: var(--pw-head); }
.pw-aside-link:hover { color: #fff; }
.pw-aside-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.pw-aside-links li { border-bottom: 1px dashed var(--pw-line); }
.pw-aside-links li:last-child { border-bottom: none; }
.pw-aside-links a { display: block; padding: 10px 0; font-size: 14.5px; line-height: 1.4; color: var(--pw-dark); font-weight: 500; }
.pw-aside-links a:hover { color: var(--pw-blue); }

/* ── Specification table ──────────────────────────────────────────── */
.pw-spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.pw-spec-table th,
.pw-spec-table td { text-align: left; padding: 10px 0; border-bottom: 1px dashed var(--pw-line); vertical-align: top; line-height: 1.5; }
.pw-spec-table tr:last-child th,
.pw-spec-table tr:last-child td { border-bottom: none; }
.pw-spec-table th { color: var(--pw-grey); font-weight: 600; width: 42%; padding-right: 14px; }
.pw-spec-table td { color: var(--pw-ink); font-weight: 500; }

/* ── Lazy YouTube embed ───────────────────────────────────────────── */
.pw-video { margin: 30px 0; }
.pw-video-frame { position: relative; aspect-ratio: 16 / 9; border-radius: var(--pw-radius-lg); overflow: hidden; background: var(--pw-navy-dk); box-shadow: var(--pw-shadow-lg); }
.pw-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pw-video-btn { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer; background: none; display: block; }
.pw-video-btn img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.4,0,.2,1), filter var(--pw-t); filter: saturate(.92) brightness(.9); }
.pw-video-btn:hover img { transform: scale(1.03); filter: saturate(1) brightness(1); }
.pw-video-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 74px; height: 52px; border-radius: 14px; background: rgba(8,21,15,.78); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.22); transition: background var(--pw-t), transform var(--pw-t); }
.pw-video-play::after { content: ''; position: absolute; left: 52%; top: 50%; transform: translate(-50%,-50%); border-style: solid; border-width: 10px 0 10px 17px; border-color: transparent transparent transparent #fff; }
.pw-video-btn:hover .pw-video-play { background: var(--pw-amber); transform: translate(-50%,-50%) scale(1.06); }
.pw-video-btn:hover .pw-video-play::after { border-left-color: var(--pw-navy-dk); }
.pw-video-btn:focus-visible .pw-video-play { outline: 3px solid var(--pw-amber); outline-offset: 3px; }
.pw-video figcaption { margin-top: 10px; font-size: 13.5px; color: var(--pw-grey); }
.pw-video-src { color: var(--pw-grey-lt); }

/* ── Homepage cards become links ──────────────────────────────────── */
a.pw-type-card, a.pw-mat-card { text-decoration: none; color: inherit; }
a.pw-type-card:hover, a.pw-mat-card:hover { color: inherit; }
.pw-type-card-more { display: inline-flex; align-items: center; gap: 5px; margin-top: auto; padding-top: 12px; font-family: var(--pw-head); font-weight: 700; font-size: 13px; color: var(--pw-blue); }
a.pw-type-card:hover .pw-type-card-more span { transform: translateX(4px); display: inline-block; transition: transform var(--pw-t); }
a.pw-mat-card .pw-mat-use { background: var(--pw-blue-xlt); color: var(--pw-blue-dk); }

/* ── Nav: submenus for the Products / Capabilities / Guides trees ── */
.pw-nav-menu { position: relative; }
.pw-nav-menu li { position: relative; }
.pw-nav-menu .sub-menu { position: absolute; left: 0; top: 100%; z-index: 60; min-width: 246px; margin: 0; padding: 8px; list-style: none; background: #fff; border: 1px solid var(--pw-line); border-radius: var(--pw-radius); box-shadow: var(--pw-shadow-lg); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity var(--pw-t), transform var(--pw-t), visibility var(--pw-t); }
.pw-nav-menu li:hover > .sub-menu,
.pw-nav-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.pw-nav-menu .sub-menu a { display: block; padding: 9px 12px; border-radius: var(--pw-radius-sm); font-size: 14px; white-space: nowrap; color: var(--pw-dark); }
.pw-nav-menu .sub-menu a:hover { background: var(--pw-blue-xlt); color: var(--pw-blue-dk); }
.pw-nav-menu .menu-item-has-children > a::after { content: '▾'; margin-left: 5px; font-size: 10px; opacity: .6; }

/* Mobile drawer: submenus are always expanded, indented under the parent. */
.pw-nav-drawer-menu .sub-menu { list-style: none; margin: 0 0 6px; padding: 0 0 0 16px; border-left: 2px solid var(--pw-line); }
.pw-nav-drawer-menu .sub-menu a { font-size: 14px; padding: 9px 0; color: var(--pw-grey); }
.pw-nav-drawer-menu .sub-menu a:hover { color: var(--pw-blue); }

@media (max-width: 1024px) {
  .pw-article-grid { grid-template-columns: 1fr; gap: 38px; }
  .pw-aside { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .pw-page-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .pw-page-hero-media { order: -1; }
}
@media (max-width: 620px) {
  .pw-aside { grid-template-columns: 1fr; }
  .pw-article { font-size: 16px; }
}
