/*
Theme Name: Wake Surf Untersee
Theme URI: https://deinedomain.ch
Author: Wake Surf Team
Author URI: https://deinedomain.ch
Description: Dunkles, modernes WordPress-Theme fuer Wake Surf Unterricht am Untersee / Bodensee. Glassmorphism-Design mit Cyan/Gruen Akzentfarben.
Version: 1.0.0
Requires at least: 6.0
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: wakesurf
Tags: one-column, custom-menu, custom-logo, featured-images, theme-options, translation-ready
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --bg: #070a12;
  --card: #0e1426;
  --text: #e8eefc;
  --muted: rgba(232, 238, 252, .75);
  --accent: #57d6ff;
  --accent2: #a6ffcb;
  --radius: 22px;
  --line: rgba(232, 238, 252, .12);
  --shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent2);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  line-height: 1.1;
}

/* ============================================
   WRAPPER
   ============================================ */
.ws-wrap {
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(87, 214, 255, .22), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(166, 255, 203, .18), transparent 60%),
    linear-gradient(180deg, #050610, #070a12 30%, #050610);
  color: var(--text);
  padding: 8px 16px 70px;
}

.ws {
  max-width: 1100px;
  margin: auto;
}

/* ============================================
   CARDS
   ============================================ */
.ws-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.ws-cardSoft {
  background: rgba(255, 255, 255, .04);
  box-shadow: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.ws-title {
  font-size: clamp(32px, 5vw, 56px);
  margin: 0 0 10px;
  letter-spacing: -.03em;
  line-height: 1.02;
}

.ws-sub {
  color: var(--muted);
  max-width: 720px;
  line-height: 1.6;
  margin: 0;
}

.ws-h2 {
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -.02em;
}

.ws-h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -.01em;
}

.ws-sportImg {
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  background-size: cover;
  background-position: center;
}

.ws-lead {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 14px;
  max-width: 80ch;
}

.ws-mini {
  font-size: 13px;
  color: rgba(255, 255, 255, .62);
  margin-top: 10px;
  line-height: 1.5;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

/* ============================================
   BUTTONS
   ============================================ */
.ws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
  font-size: inherit;
}

.ws-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .25);
  color: var(--text);
}

.ws-btnPrimary {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #031018;
  border: none;
  box-shadow: 0 16px 40px rgba(87, 214, 255, .18);
}

.ws-btnPrimary:hover {
  box-shadow: 0 22px 60px rgba(87, 214, 255, .24);
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #031018;
}

.ws-btnWa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ws-btnWa:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  color: #fff;
}

.ws-btnSmall {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 900;
  margin-top: 0;
}

.ws-btnSBB {
  background: #EB0000;
  color: #fff;
  border-color: #EB0000;
}
.ws-btnSBB:hover {
  background: #c50000;
  border-color: #c50000;
  color: #fff;
}

/* ============================================
   GRIDS
   ============================================ */
.ws-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ws-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ws-grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .ws-grid2,
  .ws-grid3,
  .ws-grid4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   KICKER & BADGES
   ============================================ */
.ws-kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 10px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-weight: 800;
  letter-spacing: .02em;
}

.ws-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.ws-badges {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
}

.ws-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  font-weight: 800;
}

/* ============================================
   HERO
   ============================================ */
.ws-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  background: #07101a;
  padding: 60px 22px;
}

.ws-heroBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  filter: brightness(1.25);
}

.ws-heroBgA {
  opacity: 1;
}

.ws-heroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .10) 100%);
  z-index: 1;
}

.ws-heroInner {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  padding: 26px 22px;
}

/* ============================================
   PILLS
   ============================================ */
.ws-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(87, 214, 255, .10);
  border: 1px solid rgba(87, 214, 255, .22);
  color: var(--text);
  font-weight: 900;
}

/* ============================================
   PRICING
   ============================================ */
.ws-price {
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -.02em;
  margin: 12px 0 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ws-priceSmall {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 10px;
}

.ws-priceTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.ws-priceTable th {
  text-align: left;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.ws-priceTable td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 15px;
}
.ws-priceTable td:last-child {
  text-align: right;
  white-space: nowrap;
}
.ws-priceTable th:last-child {
  text-align: right;
}
.ws-priceTable tbody tr:last-child td {
  border-bottom: none;
}
.ws-priceTable tbody tr:hover td {
  background: rgba(255,255,255,.03);
}
.ws-price-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-style: italic;
  line-height: 1.5;
}
.ws-price-note-icon {
  font-size: 26px;
  font-style: normal;
  vertical-align: middle;
  margin-right: 4px;
}

/* ============================================
   LISTS
   ============================================ */
.ws-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.ws-list li {
  margin: 8px 0;
}

/* ============================================
   MAP
   ============================================ */
.ws-mapFrame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .12);
  min-height: 360px;
}

.ws-mapFrame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  filter: none;
}

.ws-mapFrame::after {
  content: none;
}

/* ============================================
   KEY-VALUE ROWS
   ============================================ */
.ws-kv {
  display: grid;
  gap: 10px;
}

.ws-kvRow {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
}

.ws-kvIcon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(87, 214, 255, .12);
  border: 1px solid rgba(87, 214, 255, .22);
  flex: 0 0 auto;
}

.ws-kvRow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.ws-kvRow strong {
  color: var(--text);
}

.ws-linkRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.ws-quote {
  position: relative;
  padding-left: 14px;
}

.ws-quote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 40px;
  line-height: 1;
  color: rgba(87, 214, 255, .55);
}

.ws-stars {
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .85);
  font-weight: 900;
}

.ws-meta {
  color: rgba(232, 238, 252, .62);
  font-size: 13px;
  margin-top: 10px;
}

/* ============================================
   FAQ
   ============================================ */
.ws-faq details {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
}

.ws-faq summary {
  font-weight: 900;
  cursor: pointer;
}

.ws-faq p {
  color: var(--muted);
  margin: 10px 0 0;
  line-height: 1.65;
}

/* ============================================
   ÜBER UNS
   ============================================ */
.ws-aboutImg {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
}

.ws-galleryImg {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 14px;
  display: block;
}

/* ============================================
   WEATHER WIDGET
   ============================================ */
.lvb-wx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.lvb-wx-now, .lvb-wx-water {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 18px;
}

.lvb-wx-header { display: flex; align-items: flex-start; gap: 14px; }
.lvb-wx-icon { font-size: 64px; line-height: 1; }
.lvb-wx-temp { font-size: 36px; font-weight: 800; letter-spacing: -.02em; }
.lvb-wx-feel { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.lvb-wx-row  { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-top: 6px; color: var(--muted); }
.lvb-wx-row > span:first-child { font-size: 28px; flex-shrink: 0; line-height: 1; }
.lvb-wx-condition { margin-top: 10px; font-size: 14px; font-weight: 700; padding: 6px 12px; border-radius: 20px; display: inline-flex; align-items: center; gap: 6px; }
.lvb-wx-condition.good { background: rgba(87,214,255,.15); color: var(--accent); border: 1px solid rgba(87,214,255,.3); }
.lvb-wx-condition.bad  { background: rgba(255,100,100,.12); color: #ff8080; border: 1px solid rgba(255,100,100,.3); }
.lvb-wx-neo { font-size: 14px; color: var(--muted); margin-top: 8px; display: flex; align-items: center; gap: 6px; }
.lvb-wx-neo-icon { font-size: 28px; line-height: 1; flex-shrink: 0; }

.lvb-wx-forecast {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.lvb-wx-day {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.lvb-wx-dlabel { font-weight: 800; font-size: 13px; margin-bottom: 6px; color: var(--accent); }
.lvb-wx-dicon  { font-size: 56px; line-height: 1; margin: 4px 0; }
.lvb-wx-dtemp  { font-size: 14px; font-weight: 700; margin: 6px 0 4px; }
.lvb-wx-dwind  { font-size: 13px; color: var(--muted); margin-top: 4px; display: flex; align-items: center; gap: 6px; justify-content: center; }
.lvb-wx-dei    { font-size: 28px; flex-shrink: 0; line-height: 1; }
.lvb-wx-conds  { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; margin-top: 6px; }
.lvb-wx-dcond  { font-size: 11px; font-weight: 700; padding: 3px 7px; border-radius: 12px; white-space: nowrap; }
.lvb-wx-dcond.good { background: rgba(87,214,255,.15); color: var(--accent); }
.lvb-wx-dcond.bad  { background: rgba(255,100,100,.12); color: #ff8080; }

@media (max-width: 900px) {
  .lvb-wx-grid     { grid-template-columns: 1fr; }
  .lvb-wx-forecast { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RULES
   ============================================ */
.ws-ruleItem {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 12px 14px;
  line-height: 1.5;
}

.ws-ruleIcon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   INSTAGRAM GRID
   ============================================ */
.ws-igGrid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .ws-igGrid {
    grid-template-columns: 1fr;
  }
}

.ws-igCard {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  padding: 0;
}

/* Smash Balloon feed inside card */
.ws-igCard .instagram-feed-post {
  margin: 0 !important;
}
.ws-igCard .instagram-feed-post img,
.ws-igCard .instagram-feed-post video {
  width: 100% !important;
  height: auto !important;
  display: block;
  border-radius: 0;
}
.ws-igCard #sb_instagram {
  padding: 0 !important;
  width: 100% !important;
}
.ws-igCard #sb_instagram .sbi_follow_btn {
  padding: 12px 0 14px;
  text-align: center;
}

.ws-igImg {
  height: 200px;
  background-size: cover;
  background-position: center;
  filter: contrast(110%) saturate(105%);
}

.ws-igCap {
  padding: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ============================================
   STICKY BOOKING BAR
   ============================================ */
.ws-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
  z-index: 9999;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 999px;
  background: rgba(14, 20, 38, .72);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .55);
  backdrop-filter: blur(10px);
}

.ws-sticky .ws-stickyText {
  color: rgba(232, 238, 252, .82);
  font-weight: 800;
  font-size: 14px;
}

.ws-sticky .ws-stickyText strong {
  color: var(--text);
}

.ws-sticky .ws-btn {
  margin-top: 0;
  padding: 8px 14px;
  font-size: 13px;
}

.ws-sticky.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 520px) {
  .ws-sticky .ws-stickyText {
    display: none;
  }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.ws-header {
  position: relative;
  z-index: 100;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.ws-logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.02em;
  background: none;
  color: transparent;
}

.ws-logo a {
  color: inherit;
  text-decoration: none;
  background: none;
}

.ws-nav {
  display: flex;
  gap: 6px;
  align-items: center;
}

.ws-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  transition: background .15s ease, color .15s ease;
}

.ws-nav a:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
}

.ws-nav .ws-btnPrimary,
.ws-nav .ws-btnPrimary:hover {
  color: #031018;
}

/* Mobile nav toggle */
.ws-navToggle {
  display: none;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 8px 12px;
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
}

@media (max-width: 768px) {
  .ws-navToggle {
    display: block;
  }

  .ws-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background: rgba(14, 20, 38, .95);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    padding: 12px;
    flex-direction: column;
    backdrop-filter: blur(10px);
    min-width: 200px;
  }

  .ws-nav.active {
    display: flex;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.ws-footer {
  background: rgba(0, 0, 0, .75);
  border-top: 1px solid var(--line);
  padding: 20px 16px 80px;
  color: var(--muted);
  font-size: 14px;
}

.ws-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .ws-footer-inner {
    grid-template-columns: 1fr;
  }
}

.ws-footer h4 {
  color: var(--text);
  margin: 0 0 12px;
  font-size: 16px;
}

.ws-footer p {
  margin: 0 0 8px;
  line-height: 1.6;
}

.ws-footer a {
  color: var(--accent);
}

.ws-footer a:hover {
  color: var(--accent2);
}

.ws-footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 0;
  border-top: none;
  text-align: center;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
}

/* ============================================
   WORDPRESS CLASSES
   ============================================ */
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}

.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
}

.aligncenter {
  display: block;
  margin: 0 auto 20px;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* WordPress block editor support */
.wp-block-button__link {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #031018;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
}

.entry-content {
  color: var(--muted);
  line-height: 1.65;
}

.entry-content h2 {
  color: var(--text);
  font-size: 26px;
  letter-spacing: -.02em;
}

.entry-content h3 {
  color: var(--text);
}

.entry-content strong {
  color: var(--text);
}

/* ============================================
   SINGLE / PAGE CONTENT
   ============================================ */
.ws-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 16px 70px;
}

.ws-content .ws-card {
  max-width: 800px;
}

/* ============================================
   COMMENTS
   ============================================ */
.comment-list {
  list-style: none;
  padding: 0;
}

.comment-body {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
}

.comment-author {
  font-weight: 800;
  color: var(--text);
}

.comment-content {
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================
   FORMS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 15px;
  width: 100%;
  max-width: 500px;
  transition: border-color .15s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: none;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #031018;
  cursor: pointer;
  font-size: inherit;
  box-shadow: 0 16px 40px rgba(87, 214, 255, .18);
}

/* ============================================
   PAGINATION / NAVIGATION
   ============================================ */
.pagination,
.nav-links {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.page-numbers {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--muted);
  font-weight: 700;
}

.page-numbers.current {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #031018;
  border: none;
}

/* ============================================
   SIDEBAR WIDGETS
   ============================================ */
.widget {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 20px;
}

.widget-title {
  font-size: 18px;
  margin: 0 0 12px;
  color: var(--text);
}

.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget li {
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

.widget li:last-child {
  border-bottom: none;
}

.widget a {
  color: var(--muted);
}

.widget a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .ws-heroOverlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .35) 100%);
  }
}
