/*
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 60s 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;
}

.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;
}

.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); }

/* ═══════════════════════════════════════════════════════
   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;
}
