/*
Theme Name: We Are Wrestling
Theme URI: https://wearewrestling.net
Author: We Are Wrestling
Author URI: https://wearewrestling.net
Description: Custom dark wrestling news theme with RSS aggregator integration. Black and pink, live feed ticker, hero block, and latest news layout.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: waw-theme
Tags: dark, news, wrestling, custom-header, custom-menu, featured-images, full-width-template
*/

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
    --pink:      #e8006a;
    --pink-dark: #b8004f;
    --pink-glow: rgba(232,0,106,0.18);
    --bg:        #0a0a0a;
    --bg2:       #111111;
    --bg3:       #1a1a1a;
    --border:    #2a2a2a;
    --text:      #f0f0f0;
    --muted:     #888888;
    --white:     #ffffff;

    --font-head: 'Barlow Condensed', 'Impact', sans-serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;

    --radius:    4px;
    --transition: 0.2s ease;
    --container: 1280px;
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.05;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════════ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.screen-reader-text {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════
   NEWS TICKER
═══════════════════════════════════════════════════════ */
.waw-ticker {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    height: 38px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.waw-ticker__label {
    background: var(--pink);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    white-space: nowrap;
}

.waw-ticker__label .dot {
    width: 7px; height: 7px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.4s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.waw-ticker__track {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.waw-ticker__inner {
    display: flex;
    gap: 0;
    animation: ticker-scroll 80s linear infinite;
    white-space: nowrap;
}

.waw-ticker__inner:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.waw-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px 0 0;
    font-size: 13px;
    color: var(--text);
}

.waw-ticker__item::before {
    content: '';
    display: inline-block;
    width: 4px; height: 4px;
    background: var(--pink);
    border-radius: 50%;
    flex-shrink: 0;
}

.waw-ticker__item a:hover { color: var(--pink); }

.waw-ticker__time {
    color: var(--muted);
    font-size: 12px;
}

.waw-ticker__view-all {
    background: var(--bg3);
    border-left: 1px solid var(--border);
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--pink);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background var(--transition);
    flex-shrink: 0;
}
.waw-ticker__view-all:hover { background: var(--pink); color: #fff; }

/* ═══════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════ */
.waw-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
}

.waw-header__inner {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 32px;
}

.waw-header__logo {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    line-height: 1;
    align-items: flex-start;
}

/* Custom logo image — constrained to header height, max 350px wide */
.waw-header__logo .custom-logo-link,
.waw-header__logo .custom-logo-link img {
    display: block;
}
.waw-header__logo .custom-logo-link img {
    height: 52px;       /* fits neatly in the 64px header */
    width: auto;
    max-width: 280px;   /* roughly 350×70 ratio at header scale */
    object-fit: contain;
}

.waw-header__logo .logo-main {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--pink);
    line-height: 1;
}

.waw-header__logo .logo-sub {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

/* ── Sidebar Ad / Promo Block ── */
.waw-widget--ad {
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}
.waw-ad-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    padding: 6px 12px 0;
    margin: 0;
}
.waw-ad-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 12px;
    text-align: center;
}
.waw-ad-content img  { max-width: 100%; height: auto; display: block; }
.waw-ad-content a    { display: block; }
.waw-ad-content iframe { max-width: 100%; }

.waw-nav {
    flex: 1;
    display: flex;
    align-items: center;
}

.waw-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.waw-nav a {
    display: block;
    padding: 6px 12px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    border-radius: var(--radius);
    transition: color var(--transition);
    position: relative;
}

.waw-nav a:hover,
.waw-nav .current-menu-item > a { color: var(--pink); }

.waw-nav .current-menu-item > a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 12px; right: 12px;
    height: 2px;
    background: var(--pink);
}

.waw-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.waw-header__live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    font-family: var(--font-head);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pink);
}

.waw-header__live .live-dot {
    width: 8px; height: 8px;
    background: var(--pink);
    border-radius: 50%;
    animation: pulse 1.4s infinite;
}

.waw-header__search-btn,
.waw-header__menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 8px;
    border-radius: var(--radius);
    transition: color var(--transition);
    line-height: 1;
}
.waw-header__search-btn:hover,
.waw-header__menu-btn:hover { color: var(--pink); }

/* ═══════════════════════════════════════════════════════
   HERO BLOCK
═══════════════════════════════════════════════════════ */
.waw-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: var(--bg2);
}

/* Pink accent left bar */
.waw-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 6px; height: 100%;
    background: var(--pink);
    z-index: 3;
}

/* ── Split layout ── */
.waw-hero__split {
    display: flex;
    height: 100%;
    width: 100%;
    position: relative;
}

/* Left dark panel — text lives here */
.waw-hero__left {
    position: relative;
    z-index: 2;
    width: 55%;
    height: 100%;
    background: var(--bg2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px 48px 48px 40px;
    flex-shrink: 0;
}

/* Right image panel */
.waw-hero__right {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.waw-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 8s ease;
}
.waw-hero:hover .waw-hero__img { transform: scale(1.04); }

/* Fade overlay on the image panel — dark on left, transparent on right */
.waw-hero__img-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--bg2) 0%,
        rgba(10,10,18,0.55) 35%,
        rgba(10,10,18,0.0) 100%
    );
    pointer-events: none;
}

/* Placeholder when no image found */
.waw-hero__img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 0.05em;
    opacity: 0.07;
    color: var(--white);
    background: #0f0f18;
}

.waw-hero__breaking {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink);
    color: #fff;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-bottom: 14px;
    width: fit-content;
}

.waw-hero__title {
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    line-height: 1.0;
}

.waw-hero__excerpt {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 6px;
    line-height: 1.55;
}

.waw-hero__meta {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 22px;
}

.waw-hero__meta .source-tag {
    color: var(--pink);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.06em;
}

.waw-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--pink);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 11px 22px;
    transition: background var(--transition), color var(--transition);
    width: fit-content;
}
.waw-hero__cta:hover { background: var(--pink); color: #fff; }

/* ═══════════════════════════════════════════════════════
   LIVE FEED SECTION
═══════════════════════════════════════════════════════ */
.waw-live-feed {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.waw-live-feed__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.waw-live-feed__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.waw-live-feed__title .badge {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
}

.waw-live-feed__view-all {
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-head);
    color: var(--pink);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}
.waw-live-feed__view-all:hover { gap: 10px; }

.waw-live-feed__scroll {
    position: relative;
}

.waw-live-feed__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}
.waw-live-feed__track::-webkit-scrollbar { display: none; }

.waw-live-feed__prev,
.waw-live-feed__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background var(--transition), color var(--transition);
}
.waw-live-feed__prev { left: -16px; }
.waw-live-feed__next { right: -16px; }
.waw-live-feed__prev:hover,
.waw-live-feed__next:hover { background: var(--pink); border-color: var(--pink); color: #fff; }

.waw-feed-card {
    flex: 0 0 220px;
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 14px;
    scroll-snap-align: start;
    transition: border-color var(--transition), transform var(--transition);
    cursor: pointer;
}
.waw-feed-card:hover {
    border-color: var(--pink);
    transform: translateY(-2px);
}

.waw-feed-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.waw-feed-card__time {
    color: var(--muted);
    font-size: 11px;
    margin-bottom: 8px;
}

.waw-feed-card__logo {
    width: 36px; height: 36px;
    background: var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.waw-feed-card__logo img {
    width: 100%; height: 100%;
    object-fit: contain;
}

.waw-feed-card__logo-text {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 900;
    color: var(--pink);
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.1;
    padding: 4px;
}

.waw-feed-card__source {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 800;
    color: var(--pink);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.waw-feed-card__title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
}
.waw-feed-card:hover .waw-feed-card__title { color: var(--pink); }

/* ═══════════════════════════════════════════════════════
   BANNER — ABOVE LATEST NEWS
═══════════════════════════════════════════════════════ */
.waw-news-banner {
    background: var(--bg2);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 10px 0;
}
.waw-news-banner__label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    margin: 0 0 4px;
}
.waw-news-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Desktop: up to 970px leaderboard */
    max-width: 970px;
    margin: 0 auto;
}
.waw-news-banner__inner img  { max-width: 100%; height: auto; display: block; }
.waw-news-banner__inner a    { display: block; max-width: 100%; }
.waw-news-banner__inner iframe { max-width: 100%; }

/* Tablet — 728px banner fits here */
@media (max-width: 1024px) {
    .waw-news-banner__inner { max-width: 728px; }
}
/* Mobile — 320px banner */
@media (max-width: 600px) {
    .waw-news-banner__inner { max-width: 320px; }
    .waw-news-banner { padding: 8px 0; }
}

/* ═══════════════════════════════════════════════════════
   MAIN CONTENT GRID
═══════════════════════════════════════════════════════ */
.waw-main {
    padding: 32px 0 48px;
}

.waw-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

/* ═══════════════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════════════ */
.waw-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    position: relative;
}

.waw-section-header::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 48px; height: 2px;
    background: var(--pink);
}

.waw-section-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   FILTER TABS
═══════════════════════════════════════════════════════ */
.waw-filter-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
}

.waw-filter-tab {
    background: transparent;
    border: 1px solid transparent;
    color: var(--muted);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    cursor: pointer;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.waw-filter-tab:hover { color: var(--text); border-color: var(--border); }
.waw-filter-tab.active {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════
   LATEST NEWS LIST
═══════════════════════════════════════════════════════ */
.waw-news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.waw-news-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: border-color var(--transition);
}
.waw-news-item:hover { border-color: var(--pink); }
.waw-news-item:first-child { padding-top: 0; }

.waw-news-item__thumb {
    flex-shrink: 0;
    width: 88px; height: 66px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waw-news-item__thumb img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 8px;
}

.waw-news-item__thumb-text {
    font-family: var(--font-head);
    font-size: 9px;
    font-weight: 900;
    color: var(--pink);
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.2;
    padding: 6px;
}

.waw-news-item__body {
    flex: 1;
    min-width: 0;
}

.waw-news-item__top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.waw-news-item__tag {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 2px;
    line-height: 1.4;
}
.waw-news-item__tag.tag-wwe  { background: rgba(232,0,106,0.15); color: var(--pink); border: 1px solid rgba(232,0,106,0.3); }
.waw-news-item__tag.tag-aew  { background: rgba(255,218,0,0.1);  color: #ffd700;     border: 1px solid rgba(255,218,0,0.25); }
.waw-news-item__tag.tag-njpw { background: rgba(255,60,60,0.1);  color: #ff6060;     border: 1px solid rgba(255,60,60,0.25); }
.waw-news-item__tag.tag-tna  { background: rgba(80,160,255,0.1); color: #5ab0ff;     border: 1px solid rgba(80,160,255,0.25); }
.waw-news-item__tag.tag-news { background: rgba(255,255,255,0.07); color: var(--muted); border: 1px solid var(--border); }

.waw-news-item__time {
    font-size: 12px;
    color: var(--muted);
}

.waw-news-item__bookmark {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--border);
    padding: 2px;
    transition: color var(--transition);
    line-height: 1;
}
.waw-news-item__bookmark:hover { color: var(--pink); }

.waw-news-item__title {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 5px;
    text-transform: uppercase;
    line-height: 1.15;
    transition: color var(--transition);
}
.waw-news-item:hover .waw-news-item__title { color: var(--pink); }

.waw-news-item__excerpt {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Load More */
.waw-load-more {
    text-align: center;
    margin-top: 24px;
}

.waw-btn-load {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 11px 28px;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
}
.waw-btn-load:hover { border-color: var(--pink); color: var(--pink); }
.waw-btn-load .spinner { display: none; }
.waw-btn-load.loading .spinner { display: inline-block; }

/* ═══════════════════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════════════════ */
.waw-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ─── Widget Box ─── */
.waw-widget {
    background: var(--bg2);
    border: 1px solid var(--border);
}

.waw-widget__title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.waw-widget__title::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--pink);
}

/* ─── Upcoming Events Widget ─── */
.waw-events-list {
    padding: 8px 0;
}

.waw-event-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.waw-event-item:last-child { border-bottom: none; }
.waw-event-item:hover { background: rgba(255,255,255,0.03); }

.waw-event-item__date {
    flex-shrink: 0;
    text-align: center;
    width: 44px;
}

.waw-event-item__month {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--pink);
    letter-spacing: 0.08em;
    line-height: 1;
}

.waw-event-item__day {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.waw-event-item__info {
    flex: 1;
}

.waw-event-item__name {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 3px;
    line-height: 1.2;
}

.waw-event-item__location {
    font-size: 12px;
    color: var(--muted);
}

.waw-event-item__promo {
    flex-shrink: 0;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
    align-self: center;
}
.waw-event-item__promo.promo-aew  { background: rgba(255,218,0,0.15);  color: #ffd700; border: 1px solid rgba(255,218,0,0.3); }
.waw-event-item__promo.promo-wwe  { background: rgba(232,0,106,0.15);  color: var(--pink); border: 1px solid rgba(232,0,106,0.3); }
.waw-event-item__promo.promo-njpw { background: rgba(255,60,60,0.1);   color: #ff6060; border: 1px solid rgba(255,60,60,0.25); }
.waw-event-item__promo.promo-tna  { background: rgba(80,160,255,0.1);  color: #5ab0ff; border: 1px solid rgba(80,160,255,0.25); }

.waw-widget__footer {
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.waw-widget__footer a {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pink);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}
.waw-widget__footer a:hover { gap: 10px; }

/* ─── Top Stories Widget ─── */
.waw-top-stories {
    padding: 8px 0;
}

.waw-top-story {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.waw-top-story:last-child { border-bottom: none; }
.waw-top-story:hover { background: rgba(255,255,255,0.03); }

.waw-top-story__num {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    min-width: 28px;
    flex-shrink: 0;
    transition: color var(--transition);
}
.waw-top-story:hover .waw-top-story__num { color: var(--pink); }

.waw-top-story__body { flex: 1; }

.waw-top-story__title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 4px;
    transition: color var(--transition);
}
.waw-top-story:hover .waw-top-story__title { color: var(--pink); }

.waw-top-story__meta {
    font-size: 11px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.waw-top-story__meta .source-tag {
    color: var(--pink);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════
   NEWSLETTER FOOTER BANNER
═══════════════════════════════════════════════════════ */
.waw-newsletter {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    margin-top: 32px;
}

.waw-newsletter__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.waw-newsletter__icon {
    width: 44px; height: 44px;
    background: var(--pink);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.waw-newsletter__text h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.waw-newsletter__text p {
    font-size: 13px;
    color: var(--muted);
}

.waw-newsletter__form {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.waw-newsletter__input {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 10px 16px;
    width: 260px;
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--transition);
}
.waw-newsletter__input::placeholder { color: var(--muted); }
.waw-newsletter__input:focus { border-color: var(--pink); }

.waw-newsletter__btn {
    background: var(--pink);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--radius);
    transition: background var(--transition);
}
.waw-newsletter__btn:hover { background: var(--pink-dark); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.waw-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 24px 0;
}

.waw-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.waw-footer__nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.waw-footer__nav a {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    transition: color var(--transition);
}
.waw-footer__nav a:hover { color: var(--pink); }

.waw-footer__logo .logo-main { font-size: 18px; }

.waw-footer__copy {
    font-size: 12px;
    color: var(--muted);
    text-align: right;
}

/* ═══════════════════════════════════════════════════════
   SINGLE STORY PAGE
═══════════════════════════════════════════════════════ */
.waw-story-header {
    padding: 40px 0 32px;
    border-bottom: 1px solid var(--border);
}

.waw-story-header .waw-news-item__top { margin-bottom: 14px; }

.waw-story-header h1 {
    font-size: clamp(28px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 14px;
}

.waw-story-header__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--muted);
}

.waw-story-header__meta .source-link {
    color: var(--pink);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.waw-story-content {
    padding: 32px 0;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(240,240,240,0.85);
    max-width: 720px;
}

.waw-story-content p { margin-bottom: 16px; }

.waw-story-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pink);
    color: #fff;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    margin: 8px 0 32px;
    transition: background var(--transition);
}
.waw-story-cta:hover { background: var(--pink-dark); }

/* ═══════════════════════════════════════════════════════
   ARCHIVE / SEARCH
═══════════════════════════════════════════════════════ */
.waw-archive-header {
    padding: 32px 0 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
}

.waw-archive-header h1 {
    font-size: 36px;
    color: var(--white);
}

.waw-archive-header span {
    font-size: 13px;
    color: var(--muted);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .waw-content-grid { grid-template-columns: 1fr; }
    .waw-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 768px) {
    .waw-hero { height: auto; min-height: 340px; }
    .waw-hero__split { flex-direction: column-reverse; }
    .waw-hero__left { width: 100%; padding: 28px 20px 32px; }
    .waw-hero__right { height: 200px; width: 100%; }
    .waw-hero__img-fade {
        background: linear-gradient(to top, var(--bg2) 0%, transparent 60%);
    }
    .waw-nav { display: none; }
    .waw-sidebar { grid-template-columns: 1fr; }
    .waw-newsletter__form { width: 100%; }
    .waw-newsletter__input { flex: 1; width: auto; }
    .waw-footer__inner { flex-direction: column; align-items: flex-start; }
    .waw-footer__copy { text-align: left; }
    .waw-ticker { height: 32px; }
    .waw-header__inner { height: 54px; }
}

@media (max-width: 480px) {
    .waw-hero__right { height: 160px; }
    .waw-feed-card { flex: 0 0 180px; }
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.waw-news-item,
.waw-feed-card,
.waw-top-story,
.waw-event-item {
    animation: fadeInUp 0.3s ease backwards;
}

/* ═══════════════════════════════════════════════════════
   PAGE TEMPLATE
═══════════════════════════════════════════════════════ */

/* Reading progress bar */
.waw-progress {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: transparent;
    z-index: 9999;
    pointer-events: none;
}
.waw-progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--pink), #ff6bb5);
    transition: width 0.1s linear;
    box-shadow: 0 0 8px var(--pink-glow);
}

/* Page Hero */
.waw-page-hero {
    position: relative;
    overflow: hidden;
}
.waw-page-hero--image {
    min-height: 380px;
    display: flex;
    align-items: flex-end;
}
.waw-page-hero--plain {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 52px 0 36px;
}
.waw-page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
    filter: brightness(0.45);
}
.waw-page-hero--image:hover .waw-page-hero__bg { transform: scale(1.0); }
.waw-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.5) 55%,
        rgba(0,0,0,0.15) 100%
    );
}
.waw-page-hero__content {
    position: relative;
    z-index: 2;
    padding: 48px 0 44px;
    max-width: 820px;
}
.waw-page-hero--plain .waw-page-hero__content { padding: 0; }

/* Breadcrumb */
.waw-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}
.waw-breadcrumb a { color: var(--pink); }
.waw-breadcrumb a:hover { text-decoration: underline; }

.waw-page-hero__title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 14px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.6);
    line-height: 1.0;
}
.waw-page-hero--plain .waw-page-hero__title { color: var(--white); }

.waw-page-hero__intro {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 18px;
    max-width: 640px;
}
.waw-page-hero__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
}
.waw-page-hero__date,
.waw-page-hero__read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Article layout */
.waw-page-main { padding: 40px 0 56px; }
.waw-page-article { min-width: 0; }

/* Table of Contents — inline (mobile/article) */
.waw-toc {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-left: 3px solid var(--pink);
    border-radius: var(--radius);
    margin-bottom: 36px;
    overflow: hidden;
}
.waw-toc__toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}
.waw-toc__chevron {
    margin-left: auto;
    transition: transform var(--transition);
}
.waw-toc__toggle[aria-expanded="false"] .waw-toc__chevron { transform: rotate(-90deg); }
.waw-toc__list {
    list-style: none;
    padding: 4px 0 14px;
    border-top: 1px solid var(--border);
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 1000px;
    overflow: hidden;
}
.waw-toc__list--collapsed { max-height: 0; opacity: 0; padding: 0; border: none; }

.waw-toc__item { }
.waw-toc__item--h3 .waw-toc__link { padding-left: 44px; font-size: 13px; opacity: 0.8; }
.waw-toc__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    font-size: 14px;
    color: var(--text);
    transition: color var(--transition), background var(--transition);
}
.waw-toc__link:hover { color: var(--pink); background: rgba(232,0,106,0.05); }
.waw-toc__num {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 800;
    color: var(--pink);
    min-width: 22px;
    letter-spacing: 0.05em;
}

/* Sidebar sticky TOC */
.waw-widget--toc-sticky {
    position: sticky;
    top: 90px;
}
.waw-toc__list--sidebar { padding: 8px 0 4px; border: none; max-height: none; }
.waw-toc__list--sidebar .waw-toc__link {
    padding: 6px 16px;
    font-size: 13px;
    border-left: 2px solid transparent;
}
.waw-toc__list--sidebar .waw-toc__link.is-active {
    color: var(--pink);
    border-left-color: var(--pink);
    background: rgba(232,0,106,0.05);
}

/* Page content (Gutenberg + classic editor) */
.waw-page-content {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(240,240,240,0.88);
    max-width: 720px;
}
.waw-page-content h2 {
    font-size: clamp(22px, 3vw, 32px);
    color: var(--white);
    margin: 40px 0 14px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}
.waw-page-content h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--white);
    margin: 28px 0 10px;
}
.waw-page-content h4 {
    font-size: 16px;
    color: var(--white);
    margin: 22px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.waw-page-content p { margin-bottom: 18px; }
.waw-page-content a { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }
.waw-page-content a:hover { color: #ff6bb5; }
.waw-page-content ul,
.waw-page-content ol {
    margin: 0 0 18px 0;
    padding-left: 0;
    list-style: none;
}
.waw-page-content ul li,
.waw-page-content ol li {
    position: relative;
    padding: 6px 0 6px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.waw-page-content ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: 900;
    font-size: 16px;
}
.waw-page-content ol {
    counter-reset: page-list;
}
.waw-page-content ol li {
    counter-increment: page-list;
}
.waw-page-content ol li::before {
    content: counter(page-list, decimal-leading-zero);
    position: absolute;
    left: 0;
    color: var(--pink);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 800;
    top: 8px;
}
.waw-page-content blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    background: var(--bg2);
    border-left: 4px solid var(--pink);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 17px;
    font-style: italic;
    color: rgba(255,255,255,0.75);
}
.waw-page-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    font-style: normal;
    color: var(--pink);
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.waw-page-content img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 20px 0;
}
.waw-page-content figure { margin: 24px 0; }
.waw-page-content figcaption {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 8px;
    letter-spacing: 0.04em;
}
.waw-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}
.waw-page-content th {
    background: var(--bg2);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 14px;
    border-bottom: 2px solid var(--pink);
    text-align: left;
}
.waw-page-content td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.waw-page-content tr:hover td { background: rgba(255,255,255,0.02); }
.waw-page-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 36px 0;
}
.waw-page-content code {
    background: var(--bg3);
    color: #ff6bb5;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    padding: 2px 6px;
    border-radius: 3px;
}
.waw-page-content pre {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    overflow-x: auto;
    margin: 20px 0;
}
.waw-page-content pre code {
    background: none;
    color: var(--text);
    padding: 0;
}

/* Page navigation */
.waw-page-nav {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.waw-page-nav__link {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition), background var(--transition);
}
.waw-page-nav__link:hover {
    border-color: var(--pink);
    background: rgba(232,0,106,0.04);
}
.waw-page-nav__link--next { text-align: right; }
.waw-page-nav__dir {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pink);
    font-family: var(--font-head);
    font-weight: 800;
}
.waw-page-nav__title {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.2;
}

/* Sidebar latest news list */
.waw-widget-news-list { display: flex; flex-direction: column; }
.waw-widget-news-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.waw-widget-news-item:last-child { border-bottom: none; }
.waw-widget-news-item:hover { background: rgba(255,255,255,0.02); margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
.waw-widget-news-item__body { flex: 1; min-width: 0; }
.waw-widget-news-item__tag { display: inline-block; margin-bottom: 5px; }
.waw-widget-news-item__title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 4px;
}
.waw-widget-news-item__meta {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 900px) {
    /* Hide sidebar sticky TOC on tablet — inline one handles it */
    .waw-widget--toc-sticky { display: none; }
    .waw-page-hero--image { min-height: 300px; }
}
@media (max-width: 600px) {
    .waw-page-hero__content { padding: 36px 0 32px; }
    .waw-page-hero__title { font-size: 36px; }
    .waw-page-nav { flex-direction: column; }
    .waw-page-nav__link--next { text-align: left; }
}
