/**
 * Nashville Predators Homepage - v9.0.0
 * Complete restructure to match official NHL site layout
 * - Horizontal schedule bar
 * - Large hero image section
 * - Proper sidebar layout
 * - Image-based news cards
 */

/* ============================================
   MOBILE RESPONSIVE DESIGN - RESTORED
   Proper mobile-first responsive layout
   ============================================ */

/* ============================================
   CRITICAL IMAGE CONSTRAINTS - MUST LOAD FIRST
   ============================================ */

/* Image fills card with proper aspect ratio */
.featured-story-large img,
.featured-story-large .story-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    z-index: 1;
}

.small-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ============================================
   FOUNDATION
   ============================================ */

body {
    background: #ffffff;
    color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

/* Remove margin-top from site-content on homepage */
.page-home .site-content {
    margin-top: 0 !important;
}

/* Remove top padding from page-content on homepage to make schedule flush with nav */
.page-content.page-home {
    padding-top: 0 !important;
}

.page-home {
    margin: 0;
    padding: 0;
    background: #ffffff;
}

/* ============================================
   SCHEDULE BAR - Horizontal scrolling games
   ============================================ */

.schedule-bar {
    position: relative;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 0.5rem;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    height: 110px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
}

/* Visual scroll indicator for schedule bar */
.schedule-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to left, rgba(248, 249, 250, 0.95), transparent);
    pointer-events: none;
    z-index: 2;
}

.schedule-scroll {
    display: flex !important;
    gap: 0.3rem !important;
    padding: 0 0.5rem !important;
    margin: 0 !important;
    overflow: visible !important;
    height: 100%;
    align-items: center;
    min-width: max-content;
}

.schedule-scroll::-webkit-scrollbar {
    height: 4px;
}

.schedule-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 2px;
}

.schedule-game-card {
    flex: 0 0 200px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s ease;
    height: 90px;
    max-height: 90px;
    overflow: hidden;
    box-sizing: border-box;
}

.schedule-game-card.next-game {
    border: 2px solid #FFB81C;
    background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
    box-shadow: 0 4px 12px rgba(255, 184, 28, 0.25);
    transform: scale(1.05);
}

.schedule-game-card:hover {
    border-color: #FFB81C;
    box-shadow: 0 2px 8px rgba(255, 184, 28, 0.2);
}

.schedule-game-time {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.schedule-game-matchup {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 12px;
}

.schedule-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.schedule-team-logo {
    width: 52px;
    height: 52px;
}

.schedule-team-name {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
}

.schedule-score {
    font-size: 1.5rem;
    font-weight: 900;
    color: #041E42;
}

/* ============================================
   TOP STORIES - Large hero + side stories (NHL.com style)
   ============================================ */

.top-stories-section {
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
}

.top-stories-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Left Column with Large + Small Heroes */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Large Featured Story */
.featured-story-large {
    position: relative;
    background: #000000;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    border: none;
    box-shadow: none;
    display: block;
    width: 100%;
}

/* Small Hero Stories (3 cards) */
.small-hero-stories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.small-hero-card {
    position: relative;
    background: #000;
    height: 160px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
}

.small-hero-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.small-hero-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    z-index: 10;
}

.small-hero-card .overlay h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-story-large > a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.featured-story-large:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(255, 184, 28, 0.3);
    border-color: #FFB81C;
}

.featured-story-large .story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    z-index: 10;
}

.featured-story-large .story-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    margin: 0 0 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-story-large .story-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-story-large .story-title a {
    color: #ffffff;
    text-decoration: none;
}

/* Side Stories Column (Right) - Story List */
.side-stories-column {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: white;
}

.side-stories-column h2 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.side-story {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
    transition: background 0.2s ease;
}

.side-story:hover {
    background: #f9fafb;
}

.side-story:last-child {
    border-bottom: none;
}

.side-story .story-text h3 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

.side-story .story-text p {
    font-size: 12px;
    color: #6b7280;
    margin: 4px 0 0 0;
    line-height: 1.4;
}

/* ============================================
   QUICK STATS BAR - ENHANCED
   ============================================ */

.quick-stats-bar {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 3px solid #FFB81C;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quick-stat {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 28px;
    min-width: 130px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quick-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFB81C 0%, #f0a800 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quick-stat:hover {
    border-color: #FFB81C;
    box-shadow: 0 8px 20px rgba(255, 184, 28, 0.3);
    transform: translateY(-5px);
}

.quick-stat:hover::before {
    transform: scaleX(1);
}

.quick-stat .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}

.quick-stat .value {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    color: #FFB81C;
    text-shadow: 0 2px 4px rgba(255, 184, 28, 0.25);
    letter-spacing: -0.5px;
    line-height: 1;
}

/* ============================================
   CONTENT WRAPPER - Main + Sidebar
   ============================================ */

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px;
}

/* DISABLED FOR DESKTOP-ONLY SCALING LAYOUT */
/*
@media (max-width: 1100px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}
*/

/* ============================================
   MAIN CONTENT AREA
   ============================================ */

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e0e0e0;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 900;
    color: #000000;
    margin: 0;
    letter-spacing: -0.02em;
}

.view-all {
    font-size: 0.875rem;
    font-weight: 700;
    color: #041E42;
    text-decoration: none;
    transition: color 0.2s ease;
}

.view-all:hover {
    color: #FFB81C;
}

/* ============================================
   NEWS GRID - Image-based cards (NHL.com style)
   ============================================ */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.news-card {
    position: relative;
    background: #000000;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.news-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(255, 184, 28, 0.3);
    border-color: #FFB81C;
}

.news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.news-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
}

.news-card-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.news-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card-title a:hover {
    color: #FFB81C;
}

.news-card-meta {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-card-excerpt {
    display: none; /* Hide excerpt on cards to match NHL.com style */
}

/* ============================================
   VIDEO CAROUSEL
   ============================================ */

.video-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: thin;
    margin-bottom: 48px;
}

.video-carousel::-webkit-scrollbar {
    height: 8px;
}

.video-carousel::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
}

.video-card {
    flex: 0 0 320px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 184, 28, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #041E42;
}

.video-card-content {
    padding: 16px;
}

.video-card-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.video-duration {
    font-size: 0.75rem;
    color: #6b7280;
}

/* ============================================
   GAMES LIST
   ============================================ */

.games-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.game-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.2s ease;
    height: 80px;
    box-sizing: border-box;
}

.game-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.game-card.win {
    border-left: 4px solid #10b981;
}

.game-card.loss {
    border-left: 4px solid #ef4444;
}

.game-card-team {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.game-card-logo {
    width: 48px;
    height: 48px;
}

.game-card-info {
    display: flex;
    flex-direction: column;
}

.game-card-opponent {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
}

.game-card-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.game-card-score {
    font-size: 1.5rem;
    font-weight: 900;
    color: #041E42;
}

/* ============================================
   SIDEBAR
   ============================================ */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFB81C 0%, #f0a800 100%);
}

.sidebar-card:hover {
    border-color: #FFB81C;
    box-shadow: 0 8px 20px rgba(255, 184, 28, 0.2);
    transform: translateY(-2px);
}

.sidebar-card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: #000000;
    margin: 0;
    padding: 16px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-card > div:not([style]) {
    padding: 16px;
}

.sidebar-link-btn {
    display: block;
    padding: 12px 20px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #041E42;
    text-decoration: none;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.sidebar-link-btn:hover {
    background: #FFB81C;
    color: #ffffff;
}

/* Live Game Card */
.live-game-card {
    border: 2px solid #ef4444;
}

.live-game-card h3 {
    background: #fef2f2;
    color: #ef4444;
}

/* Sidebar Widgets Content */
.sidebar-game-item,
.sidebar-standing-item,
.sidebar-performer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.875rem;
}

.sidebar-game-item:last-child,
.sidebar-standing-item:last-child,
.sidebar-performer-item:last-child {
    margin-bottom: 0;
}

.sidebar-team-name,
.sidebar-player-name {
    font-weight: 700;
    color: #000000;
}

.sidebar-game-date,
.sidebar-stat-label {
    color: #6b7280;
    font-size: 0.8125rem;
}

.sidebar-standing-item.predators {
    background: rgba(255, 184, 28, 0.15);
    border: 1px solid #FFB81C;
    font-weight: 700;
}

/* ============================================
   LOADING STATES
   ============================================ */

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e5e7eb;
    border-top-color: #FFB81C;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loading-spinner p {
    margin-top: 16px;
    font-size: 0.875rem;
    color: #6b7280;
}

.loading-spinner-sm {
    display: flex;
    justify-content: center;
    padding: 24px;
}

.spinner-sm {
    width: 32px;
    height: 32px;
    border: 3px solid #e5e7eb;
    border-top-color: #FFB81C;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ============================================
   PREDS TV - Video Carousel
   ============================================ */

.preds-tv-section {
    position: relative;
    padding: 32px 24px;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
}

/* Visual scroll indicator for video carousel */
.preds-tv-section::after {
    content: '';
    position: absolute;
    top: 32px;
    right: 24px;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.95), transparent);
    pointer-events: none;
    z-index: 2;
}

.section-header-tv {
    margin-bottom: 20px;
}

.section-header-tv h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header-tv .arrow {
    font-size: 28px;
    font-weight: 300;
}

.video-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 16px;
    scrollbar-width: thin;
    scrollbar-color: #FFB81C #e0e0e0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
}

.video-carousel::-webkit-scrollbar {
    height: 8px;
}

.video-carousel::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 4px;
}

.video-carousel::-webkit-scrollbar-thumb {
    background: #FFB81C;
    border-radius: 4px;
}

.video-carousel::-webkit-scrollbar-thumb:hover {
    background: #e5a519;
}

.video-card {
    flex: 0 0 320px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-card .video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
}

.video-card .video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Thumbnail Container (replaces embedded iframe) */
.video-card .video-thumbnail-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
}

.video-card .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card .play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
    z-index: 2;
}

.video-card:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card .video-duration-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
}

/* Legacy support - keep for old code references */
.video-card .video-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
}

.video-card .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.2s ease;
}

.video-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-card .play-button {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.video-card:hover .play-button {
    transform: scale(1.1);
    background: white;
}

.video-card .play-icon {
    width: 0;
    height: 0;
    border-left: 16px solid #041E42;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}

.video-card .video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.video-card .video-info {
    padding: 12px;
}

.video-card .video-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card .video-description {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card .video-date {
    font-size: 12px;
    color: #9ca3af;
}

/* ============================================
   RESPONSIVE DESIGN - DISABLED FOR DESKTOP-ONLY SCALING
   ============================================ */

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .schedule-bar {
        padding: 12px 0;
        padding-top: 82px;
    }

    .schedule-scroll {
        padding: 0 16px;
        gap: 12px;
    }

    .schedule-game-card {
        flex: 0 0 200px;
        min-height: 100px;
    }

    .hero-image {
        height: 280px;
    }

    .hero-overlay {
        padding: 40px 20px 28px;
    }

    .quick-stats-bar {
        gap: 8px;
        padding: 16px;
    }

    .quick-stat {
        padding: 14px 18px;
        min-width: 110px;
        min-height: 48px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .content-wrapper {
        padding: 24px 16px;
        gap: 24px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Mobile Layout Reordering for Top Stories Section */
    .top-stories-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .left-column {
        display: flex;
        flex-direction: column;
        gap: 18px;
        order: 1; /* Left column content first (large hero + small heroes) */
    }

    .featured-story-large {
        height: 300px;
        min-height: 300px;
        width: 100%;
    }

    .small-hero-stories {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: 16px;
    }

    .side-stories-column {
        order: 2; /* Top stories list after left column */
    }

    .small-hero-card {
        height: 180px; /* Slightly taller for mobile stacking */
    }

    .video-carousel {
        gap: 12px;
        padding-bottom: 12px;
    }

    .video-card {
        flex: 0 0 260px;
    }

    .video-card .video-info {
        padding: 10px;
    }

    .video-card .video-title {
        font-size: 14px;
    }

    .video-card .video-description {
        font-size: 13px;
    }

    .preds-tv-section {
        padding: 24px 16px;
    }

    .section-header-tv h2 {
        font-size: 24px;
    }

    .game-card {
        padding: 16px;
    }

    .game-card-logo {
        width: 40px;
        height: 40px;
    }

    /* Slightly smaller schedule cards for mobile */
    .schedule-game-card {
        flex: 0 0 180px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .video-card {
        flex: 0 0 240px;
    }

    .schedule-game-card {
        flex: 0 0 160px;
        height: 90px;
        min-height: 90px;
    }

    .schedule-team-logo {
        width: 24px !important;
        height: 24px !important;
    }

    .hero-overlay h1 {
        font-size: 20px !important;
    }

    .hero-overlay p {
        font-size: 13px !important;
    }

    .quick-stats-bar {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .section-header h2,
    .section-header-tv h2 {
        font-size: 20px;
    }
}

/* ============================================
   FULL-WIDTH SINGLE-COLUMN LAYOUT
   ============================================ */

.content-wrapper-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 20px;
}

.main-content-full {
    width: 100%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--predators-gold);
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--predators-navy);
    margin: 0;
}

.section-header .view-all {
    font-size: 16px;
    font-weight: 600;
    color: var(--predators-navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-header .view-all:hover {
    color: var(--predators-gold);
}

.news-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.news-card-modern {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.news-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: var(--predators-gold);
}

.news-card-modern .news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #041E42 0%, #FFB81C 100%);
}

.news-card-modern .news-content {
    padding: 20px;
}

.news-card-modern .news-source {
    font-size: 12px;
    font-weight: 600;
    color: var(--predators-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.news-card-modern .news-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--predators-navy);
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-modern .news-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-modern .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #9ca3af;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .content-wrapper-full {
        padding: 20px 16px;
    }

    .news-grid-modern {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-header h2 {
        font-size: 24px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gold {
    color: #FFB81C !important;
}

.text-navy {
    color: #041E42 !important;
}

.bg-gold {
    background-color: #FFB81C !important;
}

.bg-navy {
    background-color: #041E42 !important;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: #041E42;
    color: #ffffff;
    margin-top: 64px;
}

.footer-main {
    padding: 48px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #FFB81C;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-description,
.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FFB81C;
    color: #041E42;
    transform: translateY(-2px);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #FFB81C;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 184, 28, 0.3);
    padding: 24px;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom-content p {
    margin: 0 0 8px 0;
}

.footer-bottom-content p:last-child {
    margin: 0;
}

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

    .footer-main {
        padding: 32px 16px;
    }

    .footer-bottom {
        padding: 20px 16px;
    }
}
