/* ============================================================
   51每日大赛 - News Portal Stylesheet
   Professional media portal theme
   Colors: #0d47a1 (blue), #ffffff (white), #d32f2f (red),
           #ffd600 (yellow accent), #37474f (dark gray)
   ============================================================ */

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --news-blue: #0d47a1;
    --news-blue-dark: #082f6e;
    --news-blue-light: #5472d3;
    --news-red: #d32f2f;
    --news-red-dark: #9a0007;
    --news-yellow: #ffd600;
    --news-gray: #37474f;
    --news-gray-light: #eceff1;
    --news-gray-border: #cfd8dc;
    --news-text: #1a1a1a;
    --news-text-soft: #555;
    --news-bg: #f5f5f5;
    --news-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    color: var(--news-text);
    background: var(--news-bg);
    line-height: 1.6;
    font-size: 15px;
}

a {
    color: var(--news-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--news-red);
}

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

.serif {
    font-family: "Georgia", "SimSun", "Songti SC", serif;
}

/* ---------- Layout Container ---------- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Top Utility Bar ---------- */
.utility-bar {
    background: #f0f0f0;
    border-bottom: 1px solid var(--news-gray-border);
    font-size: 12px;
    color: var(--news-gray);
}

.utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 32px;
}

.utility-bar .util-left {
    display: flex;
    gap: 18px;
}

.utility-bar .util-right {
    display: flex;
    gap: 14px;
    align-items: center;
}

.utility-bar a {
    color: var(--news-gray);
}

.utility-bar .util-date {
    font-weight: bold;
    color: var(--news-blue);
}

/* ---------- Masthead / Logo ---------- */
.masthead {
    background: var(--news-white);
    border-bottom: 3px solid var(--news-blue);
    padding: 18px 0;
}

.masthead .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 56px;
    height: 56px;
    background: var(--news-blue);
    color: var(--news-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Georgia", serif;
    font-weight: bold;
    font-size: 28px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(13, 71, 161, 0.3);
}

.logo-text h1 {
    font-family: "Georgia", "SimSun", serif;
    font-size: 28px;
    color: var(--news-blue);
    line-height: 1.1;
    letter-spacing: 1px;
}

.logo-text .tagline {
    font-size: 12px;
    color: var(--news-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.masthead-meta {
    text-align: right;
    font-size: 12px;
    color: var(--news-gray);
}

.masthead-meta .issue {
    font-family: "Georgia", serif;
    font-size: 14px;
    color: var(--news-blue);
    font-weight: bold;
}

.masthead-meta .weather {
    margin-top: 4px;
}

/* ---------- Main Navigation ---------- */
.main-nav {
    background: var(--news-blue);
    background: linear-gradient(180deg, var(--news-blue) 0%, var(--news-blue-dark) 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    color: var(--news-white);
    padding: 14px 22px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
}

.main-nav a:hover {
    background: var(--news-red);
    color: var(--news-white);
}

.main-nav a.active {
    background: var(--news-red);
    color: var(--news-white);
}

.main-nav .nav-home a {
    background: var(--news-red);
}

.main-nav .nav-home a:hover {
    background: var(--news-red-dark);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--news-white);
    font-size: 22px;
    padding: 10px 16px;
    cursor: pointer;
}

/* ---------- Breaking News Ticker ---------- */
.ticker-bar {
    background: var(--news-red);
    color: var(--news-white);
    overflow: hidden;
    border-bottom: 1px solid var(--news-red-dark);
    height: 38px;
    display: flex;
    align-items: center;
}

.ticker-label {
    background: var(--news-red-dark);
    color: var(--news-yellow);
    padding: 0 18px;
    height: 38px;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 2px;
    flex-shrink: 0;
    text-transform: uppercase;
    position: relative;
}

.ticker-label::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 10px solid var(--news-red-dark);
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
}

.ticker-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: ticker-scroll 40s linear infinite;
    font-size: 14px;
    font-weight: 500;
}

.ticker-content span {
    margin-right: 60px;
}

.ticker-content span::before {
    content: "●";
    color: var(--news-yellow);
    margin-right: 8px;
    font-size: 10px;
    vertical-align: middle;
}

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

.ticker-bar:hover .ticker-content {
    animation-play-state: paused;
}

/* ---------- Section Heading ---------- */
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--news-blue);
    margin-bottom: 20px;
    padding-bottom: 8px;
}

.section-heading h2 {
    font-family: "Georgia", "SimSun", serif;
    font-size: 22px;
    color: var(--news-blue);
    position: relative;
    padding-left: 14px;
}

.section-heading h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 5px;
    background: var(--news-red);
}

.section-heading .more-link {
    font-size: 13px;
    color: var(--news-gray);
    font-weight: bold;
}

.section-heading .more-link::after {
    content: " »";
    color: var(--news-red);
}

/* ---------- Page Hero / Breadcrumb ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--news-blue) 0%, var(--news-blue-dark) 100%);
    color: var(--news-white);
    padding: 36px 0;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent 0,
            transparent 40px,
            rgba(255, 255, 255, 0.03) 40px,
            rgba(255, 255, 255, 0.03) 80px
        );
    pointer-events: none;
}

.page-hero h1 {
    font-family: "Georgia", "SimSun", serif;
    font-size: 32px;
    margin-bottom: 8px;
    position: relative;
}

.page-hero .breadcrumb {
    font-size: 13px;
    opacity: 0.85;
    position: relative;
}

.page-hero .breadcrumb a {
    color: var(--news-yellow);
}

.page-hero .breadcrumb span {
    margin: 0 8px;
    opacity: 0.6;
}

/* ---------- Hero Story (Homepage) ---------- */
.hero-story {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    overflow: hidden;
}

.hero-story-image {
    background: linear-gradient(135deg, var(--news-blue) 0%, var(--news-blue-dark) 100%);
    min-height: 380px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    color: var(--news-white);
}

.hero-story-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 214, 0, 0.25) 0, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(211, 47, 47, 0.25) 0, transparent 40%);
}

.hero-story-image .image-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--news-red);
    color: var(--news-white);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-story-image .image-label {
    position: relative;
    font-family: "Georgia", serif;
    font-size: 18px;
    font-style: italic;
    opacity: 0.9;
}

.hero-story-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-story-content .kicker {
    color: var(--news-red);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-story-content h2 {
    font-family: "Georgia", "SimSun", serif;
    font-size: 30px;
    line-height: 1.25;
    color: var(--news-text);
    margin-bottom: 14px;
}

.hero-story-content h2 a {
    color: inherit;
}

.hero-story-content h2 a:hover {
    color: var(--news-blue);
}

.hero-story-content .byline {
    font-size: 12px;
    color: var(--news-gray);
    margin-bottom: 14px;
    border-bottom: 1px solid var(--news-gray-border);
    padding-bottom: 12px;
}

.hero-story-content .byline .author {
    color: var(--news-blue);
    font-weight: bold;
}

.hero-story-content .summary {
    font-family: "Georgia", "SimSun", serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--news-text-soft);
    margin-bottom: 18px;
}

.hero-story-content .read-more {
    display: inline-block;
    background: var(--news-blue);
    color: var(--news-white);
    padding: 10px 22px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    align-self: flex-start;
}

.hero-story-content .read-more:hover {
    background: var(--news-red);
    color: var(--news-white);
}

/* ---------- News Grid 3-column ---------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.news-card {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.12);
}

.news-card-thumb {
    height: 180px;
    position: relative;
    color: var(--news-white);
    padding: 16px;
    display: flex;
    align-items: flex-end;
    font-family: "Georgia", serif;
    font-size: 14px;
    font-style: italic;
}

.news-card-thumb .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--news-yellow);
    color: var(--news-gray);
    padding: 3px 10px;
    font-size: 11px;
    font-weight: bold;
    font-family: "Arial", sans-serif;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card-thumb .badge.red {
    background: var(--news-red);
    color: var(--news-white);
}

.news-card-thumb .badge.blue {
    background: var(--news-blue);
    color: var(--news-white);
}

.news-card-body {
    padding: 16px 18px 20px;
}

.news-card-body .meta {
    font-size: 11px;
    color: var(--news-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.news-card-body .meta .cat {
    color: var(--news-red);
    font-weight: bold;
}

.news-card-body h3 {
    font-family: "Georgia", "SimSun", serif;
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.news-card-body h3 a {
    color: var(--news-text);
}

.news-card-body h3 a:hover {
    color: var(--news-blue);
}

.news-card-body p {
    font-size: 13px;
    color: var(--news-text-soft);
    line-height: 1.55;
    margin-bottom: 12px;
}

.news-card-body .card-foot {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--news-gray);
    border-top: 1px solid var(--news-gray-border);
    padding-top: 10px;
}

/* Thumb color variants */
.thumb-blue {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
}

.thumb-red {
    background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
}

.thumb-gray {
    background: linear-gradient(135deg, #546e7a 0%, #263238 100%);
}

.thumb-yellow {
    background: linear-gradient(135deg, #fbc02d 0%, #f57f17 100%);
    color: var(--news-gray);
}

.thumb-teal {
    background: linear-gradient(135deg, #00897b 0%, #004d40 100%);
}

.thumb-purple {
    background: linear-gradient(135deg, #7b1fa2 0%, #4a148c 100%);
}

/* ---------- Main Content with Sidebar ---------- */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    margin-bottom: 40px;
}

.main-content {
    min-width: 0;
}

.sidebar {
    min-width: 0;
}

.sidebar-block {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    margin-bottom: 24px;
}

.sidebar-block .block-title {
    background: var(--news-blue);
    color: var(--news-white);
    padding: 12px 16px;
    font-family: "Georgia", serif;
    font-size: 16px;
    letter-spacing: 1px;
}

.sidebar-block .block-title.red {
    background: var(--news-red);
}

.sidebar-block .block-body {
    padding: 16px;
}

/* Today headlines list */
.today-list {
    list-style: none;
}

.today-list li {
    padding: 12px 0;
    border-bottom: 1px dashed var(--news-gray-border);
}

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

.today-list li a {
    display: flex;
    gap: 10px;
    color: var(--news-text);
    font-size: 14px;
    line-height: 1.4;
}

.today-list li a:hover {
    color: var(--news-red);
}

.today-list .num {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--news-gray-light);
    color: var(--news-gray);
    font-family: "Georgia", serif;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.today-list li:nth-child(1) .num {
    background: var(--news-red);
    color: var(--news-white);
}

.today-list li:nth-child(2) .num {
    background: #f57c00;
    color: var(--news-white);
}

.today-list li:nth-child(3) .num {
    background: var(--news-yellow);
    color: var(--news-gray);
}

.today-list .time {
    font-size: 11px;
    color: var(--news-gray);
    margin-top: 2px;
    display: block;
}

/* ---------- Latest Updates Feed ---------- */
.updates-feed {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    padding: 20px;
    margin-bottom: 30px;
}

.update-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--news-gray-border);
    align-items: center;
}

.update-item:last-child {
    border-bottom: none;
}

.update-item .time-stamp {
    text-align: center;
    font-family: "Georgia", serif;
}

.update-item .time-stamp .time {
    display: block;
    font-size: 18px;
    color: var(--news-blue);
    font-weight: bold;
    line-height: 1;
}

.update-item .time-stamp .date {
    font-size: 11px;
    color: var(--news-gray);
    text-transform: uppercase;
}

.update-item .update-text {
    font-size: 14px;
    line-height: 1.5;
}

.update-item .update-text .tag {
    display: inline-block;
    background: var(--news-gray-light);
    color: var(--news-gray);
    padding: 1px 8px;
    font-size: 11px;
    margin-right: 8px;
    border-radius: 2px;
    font-weight: bold;
}

.update-item .update-text .tag.live {
    background: var(--news-red);
    color: var(--news-white);
}

.update-item .update-text .tag.new {
    background: var(--news-yellow);
    color: var(--news-gray);
}

.update-item .update-arrow {
    color: var(--news-gray-border);
    font-size: 18px;
}

.update-item:hover .update-arrow {
    color: var(--news-red);
}

/* ---------- News List Page ---------- */
.news-list-page {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.filter-panel {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    height: fit-content;
    position: sticky;
    top: 70px;
}

.filter-panel h3 {
    background: var(--news-blue);
    color: var(--news-white);
    padding: 12px 16px;
    font-family: "Georgia", serif;
    font-size: 15px;
    letter-spacing: 1px;
}

.filter-panel ul {
    list-style: none;
}

.filter-panel li a {
    display: block;
    padding: 11px 16px;
    color: var(--news-text);
    font-size: 14px;
    border-bottom: 1px solid var(--news-gray-border);
    transition: all 0.2s;
}

.filter-panel li a:hover,
.filter-panel li a.active {
    background: var(--news-gray-light);
    color: var(--news-red);
    padding-left: 22px;
    border-left: 3px solid var(--news-red);
}

.filter-panel li a .count {
    float: right;
    color: var(--news-gray);
    font-size: 12px;
}

/* News list item with thumbnail */
.news-list-item {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    padding: 20px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    transition: box-shadow 0.2s;
}

.news-list-item:hover {
    box-shadow: 0 4px 14px rgba(13, 71, 161, 0.1);
}

.news-list-item .thumb {
    height: 140px;
    color: var(--news-white);
    padding: 14px;
    display: flex;
    align-items: flex-end;
    font-family: "Georgia", serif;
    font-style: italic;
    font-size: 13px;
    position: relative;
}

.news-list-item .thumb .cat-pill {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.4);
    color: var(--news-white);
    padding: 2px 8px;
    font-size: 11px;
    font-family: "Arial", sans-serif;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 1px;
}

.news-list-item .content .meta {
    font-size: 12px;
    color: var(--news-gray);
    margin-bottom: 8px;
}

.news-list-item .content .meta .cat {
    color: var(--news-red);
    font-weight: bold;
    margin-right: 12px;
}

.news-list-item .content h3 {
    font-family: "Georgia", "SimSun", serif;
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.news-list-item .content h3 a {
    color: var(--news-text);
}

.news-list-item .content h3 a:hover {
    color: var(--news-blue);
}

.news-list-item .content p {
    font-size: 13px;
    color: var(--news-text-soft);
    line-height: 1.6;
    margin-bottom: 12px;
}

.news-list-item .content .foot {
    font-size: 12px;
    color: var(--news-gray);
}

.news-list-item .content .foot .author {
    color: var(--news-blue);
    font-weight: bold;
}

.news-list-item .content .foot .views::before {
    content: "👁 ";
}

/* Hot tags */
.hot-tags {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    padding: 18px;
    margin-bottom: 30px;
}

.hot-tags .tag-title {
    font-family: "Georgia", serif;
    font-size: 16px;
    color: var(--news-blue);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--news-red);
}

.hot-tags .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hot-tags .tag-list a {
    display: inline-block;
    padding: 6px 12px;
    background: var(--news-gray-light);
    color: var(--news-gray);
    font-size: 13px;
    border-radius: 2px;
}

.hot-tags .tag-list a:hover {
    background: var(--news-blue);
    color: var(--news-white);
}

.hot-tags .tag-list a.hot {
    background: var(--news-red);
    color: var(--news-white);
}

/* ---------- Pagination ---------- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 30px 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid var(--news-gray-border);
    background: var(--news-white);
    color: var(--news-text);
    font-size: 14px;
    font-weight: bold;
}

.pagination a:hover {
    background: var(--news-gray-light);
    border-color: var(--news-blue);
    color: var(--news-blue);
}

.pagination .current {
    background: var(--news-blue);
    color: var(--news-white);
    border-color: var(--news-blue);
}

.pagination .dots {
    border: none;
    background: transparent;
}

/* ---------- Competition Page ---------- */
.competition-spotlight {
    background: linear-gradient(135deg, var(--news-blue) 0%, var(--news-blue-dark) 100%);
    color: var(--news-white);
    padding: 30px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.competition-spotlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 214, 0, 0.2) 0, transparent 30%);
    pointer-events: none;
}

.competition-spotlight .spotlight-tag {
    display: inline-block;
    background: var(--news-yellow);
    color: var(--news-gray);
    padding: 4px 14px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
}

.competition-spotlight h2 {
    font-family: "Georgia", "SimSun", serif;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 14px;
    position: relative;
}

.competition-spotlight p {
    font-family: "Georgia", serif;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 18px;
    position: relative;
}

.competition-spotlight .spotlight-meta {
    display: flex;
    gap: 24px;
    font-size: 13px;
    opacity: 0.9;
    position: relative;
}

.competition-spotlight .spotlight-meta strong {
    color: var(--news-yellow);
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spotlight-visual {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 214, 0, 0.3);
    padding: 30px;
    position: relative;
    text-align: center;
}

.spotlight-visual .trophy {
    font-size: 70px;
    color: var(--news-yellow);
    line-height: 1;
}

.spotlight-visual .event-name {
    font-family: "Georgia", serif;
    font-size: 22px;
    margin-top: 14px;
    color: var(--news-white);
}

.spotlight-visual .event-date {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 6px;
}

/* Competition cards grid */
.competition-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.comp-card {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    overflow: hidden;
    display: grid;
    grid-template-columns: 120px 1fr;
    transition: box-shadow 0.2s;
}

.comp-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.comp-card .comp-thumb {
    color: var(--news-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Georgia", serif;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}

.comp-card .comp-body {
    padding: 16px 18px;
}

.comp-card .comp-body .cat {
    font-size: 11px;
    color: var(--news-red);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.comp-card .comp-body h3 {
    font-family: "Georgia", "SimSun", serif;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.comp-card .comp-body h3 a {
    color: var(--news-text);
}

.comp-card .comp-body h3 a:hover {
    color: var(--news-blue);
}

.comp-card .comp-body p {
    font-size: 12px;
    color: var(--news-text-soft);
    line-height: 1.5;
    margin-bottom: 10px;
}

.comp-card .comp-body .comp-meta {
    font-size: 11px;
    color: var(--news-gray);
    border-top: 1px solid var(--news-gray-border);
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
}

/* Results table */
.results-table {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    margin-bottom: 30px;
    overflow-x: auto;
}

.results-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.results-table thead {
    background: var(--news-blue);
    color: var(--news-white);
}

.results-table th {
    padding: 12px 14px;
    text-align: left;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.results-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--news-gray-border);
    font-size: 14px;
}

.results-table tbody tr:hover {
    background: var(--news-gray-light);
}

.results-table .rank {
    font-family: "Georgia", serif;
    font-weight: bold;
    font-size: 16px;
    width: 50px;
    text-align: center;
}

.results-table .rank-1 {
    color: var(--news-yellow);
    background: var(--news-gray);
    color: var(--news-yellow);
}

.results-table .rank-2 {
    color: #c0c0c0;
}

.results-table .rank-3 {
    color: #cd7f32;
}

.results-table .medal {
    font-size: 18px;
}

.results-table .score {
    font-family: "Georgia", serif;
    font-weight: bold;
    color: var(--news-blue);
}

.results-table .status-live {
    color: var(--news-red);
    font-weight: bold;
}

.results-table .status-done {
    color: var(--news-gray);
}

.results-table .status-upcoming {
    color: #f57c00;
    font-weight: bold;
}

/* Calendar */
.events-calendar {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    margin-bottom: 30px;
}

.events-calendar .cal-head {
    background: var(--news-blue);
    color: var(--news-white);
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.events-calendar .cal-head h3 {
    font-family: "Georgia", serif;
    font-size: 17px;
}

.events-calendar .cal-head .month-nav {
    font-size: 13px;
    opacity: 0.9;
}

.events-calendar .cal-body {
    padding: 16px;
}

.cal-event {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--news-gray-border);
    align-items: center;
}

.cal-event:last-child {
    border-bottom: none;
}

.cal-event .cal-date {
    text-align: center;
    background: var(--news-gray-light);
    padding: 8px 0;
    border-left: 3px solid var(--news-blue);
}

.cal-event .cal-date .day {
    font-family: "Georgia", serif;
    font-size: 22px;
    font-weight: bold;
    color: var(--news-blue);
    line-height: 1;
}

.cal-event .cal-date .month {
    font-size: 11px;
    color: var(--news-gray);
    text-transform: uppercase;
}

.cal-event .cal-info h4 {
    font-family: "Georgia", serif;
    font-size: 15px;
    margin-bottom: 2px;
}

.cal-event .cal-info p {
    font-size: 12px;
    color: var(--news-gray);
}

.cal-event .cal-loc {
    font-size: 12px;
    color: var(--news-gray);
    text-align: right;
}

.cal-event .cal-loc strong {
    color: var(--news-red);
    display: block;
}

/* ---------- Results Page ---------- */
.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    border-top: 4px solid var(--news-blue);
    padding: 20px;
    text-align: center;
}

.stat-card.red {
    border-top-color: var(--news-red);
}

.stat-card.yellow {
    border-top-color: var(--news-yellow);
}

.stat-card.gray {
    border-top-color: var(--news-gray);
}

.stat-card .stat-label {
    font-size: 12px;
    color: var(--news-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stat-card .stat-value {
    font-family: "Georgia", serif;
    font-size: 34px;
    font-weight: bold;
    color: var(--news-blue);
    line-height: 1;
}

.stat-card.red .stat-value {
    color: var(--news-red);
}

.stat-card.yellow .stat-value {
    color: #f57f17;
}

.stat-card.gray .stat-value {
    color: var(--news-gray);
}

.stat-card .stat-trend {
    font-size: 11px;
    margin-top: 8px;
    color: var(--news-gray);
}

.stat-card .stat-trend .up {
    color: #2e7d32;
}

.stat-card .stat-trend .down {
    color: var(--news-red);
}

/* Winner highlights */
.winner-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.winner-card {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    text-align: center;
    padding: 24px 18px;
    position: relative;
    overflow: hidden;
}

.winner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--news-yellow), var(--news-red));
}

.winner-card.gold::before {
    background: var(--news-yellow);
}

.winner-card.silver::before {
    background: #c0c0c0;
}

.winner-card.bronze::before {
    background: #cd7f32;
}

.winner-card .medal {
    width: 70px;
    height: 70px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Georgia", serif;
    font-size: 32px;
    font-weight: bold;
    color: var(--news-white);
}

.winner-card.gold .medal {
    background: linear-gradient(135deg, #ffd54f 0%, #f57f17 100%);
    box-shadow: 0 4px 14px rgba(245, 127, 23, 0.4);
}

.winner-card.silver .medal {
    background: linear-gradient(135deg, #cfd8dc 0%, #90a4ae 100%);
    box-shadow: 0 4px 14px rgba(144, 164, 174, 0.4);
}

.winner-card.bronze .medal {
    background: linear-gradient(135deg, #d7a374 0%, #8d4e1a 100%);
    box-shadow: 0 4px 14px rgba(141, 78, 26, 0.4);
}

.winner-card .winner-name {
    font-family: "Georgia", serif;
    font-size: 19px;
    margin-bottom: 4px;
    color: var(--news-text);
}

.winner-card .winner-event {
    font-size: 12px;
    color: var(--news-gray);
    margin-bottom: 12px;
}

.winner-card .winner-score {
    font-family: "Georgia", serif;
    font-size: 22px;
    color: var(--news-blue);
    font-weight: bold;
}

.winner-card .winner-quote {
    font-family: "Georgia", serif;
    font-style: italic;
    font-size: 13px;
    color: var(--news-text-soft);
    margin-top: 12px;
    line-height: 1.5;
    border-top: 1px solid var(--news-gray-border);
    padding-top: 12px;
}

/* Archive list */
.archive-list {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    margin-bottom: 30px;
}

.archive-list .archive-head {
    background: var(--news-gray);
    color: var(--news-white);
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.archive-list .archive-head h3 {
    font-family: "Georgia", serif;
    font-size: 16px;
}

.archive-list .archive-head .archive-years {
    font-size: 13px;
    opacity: 0.85;
}

.archive-list ul {
    list-style: none;
    padding: 8px 0;
}

.archive-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 18px;
    border-bottom: 1px solid var(--news-gray-border);
    font-size: 14px;
}

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

.archive-list li:hover {
    background: var(--news-gray-light);
}

.archive-list .archive-event {
    color: var(--news-text);
}

.archive-list .archive-event strong {
    color: var(--news-blue);
    margin-right: 10px;
}

.archive-list .archive-info {
    color: var(--news-gray);
    font-size: 12px;
}

/* ---------- Columns Page ---------- */
.columnists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.columnist-card {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
}

.columnist-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.columnist-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Georgia", serif;
    font-size: 28px;
    font-weight: bold;
    color: var(--news-white);
}

.columnist-card h3 {
    font-family: "Georgia", serif;
    font-size: 17px;
    margin-bottom: 4px;
}

.columnist-card .role {
    font-size: 12px;
    color: var(--news-red);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.columnist-card .bio {
    font-size: 12px;
    color: var(--news-text-soft);
    line-height: 1.5;
}

/* Opinion articles */
.opinion-list {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    margin-bottom: 30px;
}

.opinion-item {
    padding: 22px 24px;
    border-bottom: 1px solid var(--news-gray-border);
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
}

.opinion-item:last-child {
    border-bottom: none;
}

.opinion-item .opinion-mark {
    font-family: "Georgia", serif;
    font-size: 60px;
    line-height: 1;
    color: var(--news-yellow);
    text-align: center;
}

.opinion-item .opinion-content .opinion-meta {
    font-size: 12px;
    color: var(--news-gray);
    margin-bottom: 6px;
}

.opinion-item .opinion-content .opinion-meta .author {
    color: var(--news-blue);
    font-weight: bold;
}

.opinion-item .opinion-content h3 {
    font-family: "Georgia", "SimSun", serif;
    font-size: 21px;
    line-height: 1.35;
    margin-bottom: 10px;
}

.opinion-item .opinion-content h3 a {
    color: var(--news-text);
}

.opinion-item .opinion-content h3 a:hover {
    color: var(--news-red);
}

.opinion-item .opinion-content p {
    font-family: "Georgia", serif;
    font-size: 14px;
    color: var(--news-text-soft);
    line-height: 1.6;
}

/* Reader letters */
.reader-letters {
    background: var(--news-gray-light);
    border-left: 4px solid var(--news-red);
    padding: 20px 24px;
    margin-bottom: 30px;
}

.reader-letters h3 {
    font-family: "Georgia", serif;
    color: var(--news-red);
    font-size: 18px;
    margin-bottom: 16px;
}

.letter-item {
    background: var(--news-white);
    padding: 16px 18px;
    margin-bottom: 12px;
    border-left: 3px solid var(--news-yellow);
}

.letter-item:last-child {
    margin-bottom: 0;
}

.letter-item .letter-text {
    font-family: "Georgia", serif;
    font-style: italic;
    font-size: 14px;
    line-height: 1.6;
    color: var(--news-text);
    margin-bottom: 8px;
}

.letter-item .letter-author {
    font-size: 12px;
    color: var(--news-gray);
}

.letter-item .letter-author strong {
    color: var(--news-blue);
}

/* ---------- Video Page ---------- */
.video-featured {
    background: var(--news-text);
    color: var(--news-white);
    padding: 0;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.video-player {
    height: 420px;
    background:
        radial-gradient(circle at center, rgba(13, 71, 161, 0.4) 0, transparent 60%),
        linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    width: 90px;
    height: 90px;
    background: rgba(211, 47, 47, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.video-play-btn::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 28px solid var(--news-white);
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 8px;
}

.video-play-btn:hover {
    background: var(--news-red);
    transform: scale(1.08);
}

.video-live-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--news-red);
    color: var(--news-white);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-live-tag::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--news-white);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.video-meta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}

.video-meta-overlay .v-cat {
    color: var(--news-yellow);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.video-meta-overlay h2 {
    font-family: "Georgia", "SimSun", serif;
    font-size: 26px;
    margin-bottom: 8px;
}

.video-meta-overlay .v-stats {
    font-size: 13px;
    opacity: 0.8;
}

.video-meta-overlay .v-stats span {
    margin-right: 18px;
}

.video-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--news-gray-border);
}

.video-cat {
    padding: 8px 18px;
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    color: var(--news-text);
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.video-cat:hover,
.video-cat.active {
    background: var(--news-blue);
    color: var(--news-white);
    border-color: var(--news-blue);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 30px;
}

.video-card {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.video-thumb {
    height: 170px;
    position: relative;
    color: var(--news-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumb .v-play {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: background 0.2s;
}

.video-thumb .v-play::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 14px solid var(--news-white);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 4px;
}

.video-card:hover .video-thumb .v-play {
    background: var(--news-red);
}

.video-thumb .duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--news-white);
    padding: 2px 8px;
    font-size: 11px;
    font-family: "Georgia", serif;
}

.video-thumb .live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--news-red);
    color: var(--news-white);
    padding: 2px 8px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
}

.video-card .v-body {
    padding: 14px 16px 18px;
}

.video-card .v-body .v-meta {
    font-size: 11px;
    color: var(--news-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.video-card .v-body .v-meta .cat {
    color: var(--news-red);
    font-weight: bold;
}

.video-card .v-body h3 {
    font-family: "Georgia", "SimSun", serif;
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.video-card .v-body h3 a {
    color: var(--news-text);
}

.video-card .v-body h3 a:hover {
    color: var(--news-blue);
}

.video-card .v-body .v-foot {
    font-size: 11px;
    color: var(--news-gray);
    border-top: 1px solid var(--news-gray-border);
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
}

/* ---------- About Page ---------- */
.about-intro {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    padding: 36px;
    margin-bottom: 30px;
    border-left: 5px solid var(--news-blue);
}

.about-intro h2 {
    font-family: "Georgia", "SimSun", serif;
    font-size: 26px;
    color: var(--news-blue);
    margin-bottom: 16px;
}

.about-intro p {
    font-family: "Georgia", serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--news-text);
    margin-bottom: 14px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.about-stat {
    background: var(--news-blue);
    color: var(--news-white);
    padding: 24px 16px;
    text-align: center;
}

.about-stat:nth-child(2) {
    background: var(--news-red);
}

.about-stat:nth-child(3) {
    background: var(--news-gray);
}

.about-stat:nth-child(4) {
    background: #f57c00;
}

.about-stat .stat-num {
    font-family: "Georgia", serif;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--news-yellow);
}

.about-stat .stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

/* Editorial team */
.editorial-team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.team-card {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    padding: 24px;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 16px;
    align-items: center;
}

.team-card .team-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Georgia", serif;
    font-size: 24px;
    font-weight: bold;
    color: var(--news-white);
}

.team-card .team-info h3 {
    font-family: "Georgia", serif;
    font-size: 17px;
    margin-bottom: 2px;
}

.team-card .team-info .role {
    font-size: 12px;
    color: var(--news-red);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.team-card .team-info p {
    font-size: 12px;
    color: var(--news-text-soft);
    line-height: 1.5;
}

/* Standards list */
.standards-list {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    padding: 24px 30px;
    margin-bottom: 30px;
}

.standards-list h3 {
    font-family: "Georgia", serif;
    font-size: 20px;
    color: var(--news-blue);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--news-red);
}

.standards-list ul {
    list-style: none;
}

.standards-list li {
    padding: 12px 0 12px 28px;
    border-bottom: 1px dashed var(--news-gray-border);
    font-family: "Georgia", serif;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
}

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

.standards-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--news-red);
    font-weight: bold;
    font-size: 16px;
}

.standards-list li strong {
    color: var(--news-blue);
}

/* Contact info */
.contact-info {
    background: var(--news-white);
    border: 1px solid var(--news-gray-border);
    padding: 30px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info h3 {
    font-family: "Georgia", serif;
    font-size: 20px;
    color: var(--news-blue);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--news-red);
}

.contact-info .contact-item {
    padding: 10px 0;
    border-bottom: 1px dashed var(--news-gray-border);
    display: flex;
    gap: 12px;
    font-size: 14px;
}

.contact-info .contact-item:last-child {
    border-bottom: none;
}

.contact-info .contact-item .label {
    width: 80px;
    color: var(--news-gray);
    font-weight: bold;
    flex-shrink: 0;
}

.contact-info .contact-item .value {
    color: var(--news-text);
}

.contact-info .contact-item .value a {
    color: var(--news-blue);
}

.contact-form {
    background: var(--news-gray-light);
    padding: 24px;
}

.contact-form .form-row {
    margin-bottom: 14px;
}

.contact-form label {
    display: block;
    font-size: 12px;
    color: var(--news-gray);
    font-weight: bold;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--news-gray-border);
    background: var(--news-white);
    font-size: 14px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--news-blue);
}

.contact-form button {
    background: var(--news-blue);
    color: var(--news-white);
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: var(--news-red);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--news-gray);
    color: #cfd8dc;
    padding: 40px 0 0;
    margin-top: 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #4a565d;
}

.footer-brand h3 {
    font-family: "Georgia", serif;
    color: var(--news-white);
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: #b0bec5;
}

.footer-col h4 {
    color: var(--news-yellow);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #4a565d;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #b0bec5;
    font-size: 13px;
}

.footer-col a:hover {
    color: var(--news-yellow);
}

.footer-bottom {
    padding: 18px 0;
    text-align: center;
    font-size: 12px;
    color: #90a4ae;
}

.footer-bottom p {
    margin-bottom: 4px;
}

.footer-bottom .disclaimer {
    color: #78909c;
    font-style: italic;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
    .news-grid,
    .video-grid,
    .winner-highlights,
    .columnists-grid,
    .editorial-team {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-dashboard,
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-story,
    .competition-spotlight,
    .main-layout,
    .news-list-page,
    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-panel {
        position: static;
    }

    .competition-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 14px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav ul {
        display: none;
        flex-direction: column;
    }

    .main-nav ul.show {
        display: flex;
    }

    .main-nav a {
        padding: 12px 18px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .masthead .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .masthead-meta {
        text-align: center;
    }

    .logo {
        flex-direction: column;
    }

    .utility-bar .container {
        flex-direction: column;
        height: auto;
        padding: 6px 14px;
        gap: 4px;
    }

    .hero-story-content h2,
    .page-hero h1,
    .competition-spotlight h2 {
        font-size: 22px;
    }

    .news-list-item {
        grid-template-columns: 1fr;
    }

    .news-list-item .thumb {
        height: 160px;
    }

    .section-heading h2 {
        font-size: 18px;
    }

    .ticker-content {
        font-size: 12px;
    }

    .video-player {
        height: 280px;
    }

    .video-play-btn {
        width: 64px;
        height: 64px;
    }

    .comp-card {
        grid-template-columns: 80px 1fr;
    }

    .comp-card .comp-thumb {
        font-size: 22px;
    }

    .update-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .update-item .time-stamp {
        text-align: left;
        display: flex;
        gap: 8px;
        align-items: baseline;
    }

    .update-item .time-stamp .time {
        font-size: 14px;
    }

    .update-item .update-arrow {
        display: none;
    }

    .cal-event {
        grid-template-columns: 60px 1fr;
    }

    .cal-event .cal-loc {
        grid-column: 1 / -1;
        text-align: left;
    }

    .results-table th,
    .results-table td {
        padding: 8px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .news-grid,
    .video-grid,
    .winner-highlights,
    .columnists-grid,
    .editorial-team,
    .stats-dashboard,
    .about-stats,
    .footer-top,
    .competition-cards {
        grid-template-columns: 1fr;
    }

    .hero-story-content {
        padding: 18px;
    }

    .hero-story-content h2 {
        font-size: 20px;
    }

    .team-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-card .team-avatar {
        margin: 0 auto;
    }

    .ticker-label {
        font-size: 11px;
        padding: 0 12px;
    }
}

/* Print-friendly */
@media print {
    .ticker-bar,
    .main-nav,
    .utility-bar,
    .site-footer,
    .video-play-btn,
    .pagination {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
