/* ============================================
   CricDasti - Complete CSS Stylesheet
   Cricinfo-inspired Design
   ============================================ */

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-primary: #0e2e52;
    --brand-primary-dark: #0a2038;
    --shell-bg: #f5f5f5;
    --header-nav-height: 56px;
    --header-ticker-height: 36px;
    --z-header: 1000;
    --z-backdrop: 1090;
    --z-drawer: 1100;
    --mobile-drawer-width: min(340px, 90vw);
    --mobile-nav-accent: #38bdf8;
}

html {
    overflow-x: clip;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--shell-bg);
    color: #333333;
    line-height: 1.6;
    font-size: 14px;
    min-height: 100vh;
    min-height: 100dvh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#site-main {
    display: block;
    min-height: 40vh;
}

/* ========== SITE HEADER & NAVIGATION ========== */
.site-header {
    background-color: var(--shell-bg);
    padding-top: 0;
    margin-bottom: 0;
}

.site-header__pin {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    width: 100%;
}

.cricinfo-nav {
    background-color: var(--brand-primary);
    color: #ffffff;
    box-shadow: none;
    margin-bottom: 0;
    min-height: var(--header-nav-height);
    width: 100%;
}

/* ========== MATCHES TICKER BAR (below blue header) ========== */
.matches-ticker-bar {
    display: flex;
    align-items: stretch;
    background-color: #3d3d3d;
    border-top: none;
    margin: 0;
    padding: 0;
    min-height: 36px;
    overflow: hidden;
    width: 100%;
}

.matches-ticker-tab {
    background-color: #1e1e1e;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0 18px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.matches-ticker-list {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.matches-ticker-list::-webkit-scrollbar {
    display: none;
}

.matches-ticker-nav {
    flex-shrink: 0;
    width: 34px;
    border: none;
    background: #2a2a2a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.15s;
}

.matches-ticker-nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.12);
}

.matches-ticker-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.matches-ticker-item {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    padding: 10px 20px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.15s;
}

.matches-ticker-item--box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
}

.matches-ticker-box__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.matches-ticker-box__teams {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.matches-ticker-box__team {
    color: #ffffff;
}

.matches-ticker-box__vs {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

.matches-ticker-box__result {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.matches-ticker-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.matches-ticker-all {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    cursor: pointer;
    font-family: inherit;
}

.matches-ticker-all:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.matches-ticker-caret {
    font-size: 10px;
    line-height: 1;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0;
}

.nav-logo {
    flex-shrink: 0;
    margin-left: 17px;
}

.logo-link {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.logo-text {
    font-weight: 700;
}

.site-logo__img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    margin: 0 40px;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
}

.nav-item--has-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link--dropdown::after {
    content: '▾';
    font-size: 12px;
    line-height: 1;
    opacity: 0.9;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    min-width: 360px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
    padding: 12px;
    display: none;
    z-index: 2000;
}

.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown.is-open .nav-dropdown {
    display: block;
}

.nav-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 6px 24px;
}

.nav-dropdown__grid--1col {
    grid-template-columns: 1fr;
}

.nav-dropdown__link {
    display: block;
    padding: 6px 8px;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-dropdown__icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    object-fit: cover;
    flex: 0 0 20px;
}

.nav-dropdown__link:hover {
    background: rgba(3, 169, 244, 0.12);
    color: #0b66c3;
}

.nav-dropdown__heading {
    grid-column: 1 / -1;
    padding: 8px 8px 4px;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(17, 24, 39, 0.6);
}

.nav-dropdown__section-title {
    grid-column: 1 / -1;
    padding: 10px 8px 4px;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    text-transform: none;
    letter-spacing: normal;
}

.nav-dropdown__section-title:first-child {
    margin-top: 0;
    padding-top: 4px;
}

.nav-dropdown__btn {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    background: var(--brand-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
}

.nav-dropdown__btn:hover {
    background: var(--brand-primary-dark);
    color: #ffffff;
}

/* Shared static page shell (same paint behaviour as news) */
.news-page,
.series-index-page,
.ranking-page,
.team-page,
.series-schedule-page,
.player-profile-page,
.page-container {
    padding: 10px 0 40px;
    background: #f5f5f5;
}

.series-index-filters {
    margin: 12px 0 16px;
}

.series-index-filters__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: end;
}

.series-index-filters__label {
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: rgba(17, 24, 39, 0.8);
}

.series-index-filters__label--search {
    flex: 1;
    min-width: 240px;
}

.series-index-filters__select,
.series-index-filters__input {
    height: 38px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 8px;
    padding: 0 10px;
    background: #ffffff;
    color: #111827;
}

.series-index-filters__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 38px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: var(--brand-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
    box-sizing: border-box;
    cursor: pointer;
    white-space: nowrap;
}

.series-index-filters__btn--ghost {
    background: transparent;
    border-color: rgba(0, 0, 0, 0.14);
    color: #111827;
}

.series-index-filters__btn--ghost:hover {
    background: #ffffff;
    color: #111827;
    text-decoration: none;
}

.fixture-list-page .fixture-list-filters__team {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 0;
}

.fixture-list-tabs {
    margin-top: 4px;
}

@media (min-width: 768px) {
    .fixture-list-page .fixture-list-filters__team {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.fixture-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.fixture-list-page .fixture-list-card {
    min-width: 0;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fixture-list-page .fixture-list-card__date {
    margin: 0;
    border-radius: 0;
}

.fixture-list-page .fixture-list-card .team-fixture-link {
    display: block;
    flex: 1;
}

.fixture-list-page .fixture-list-card .series-fixture-row {
    border: none;
    border-radius: 0;
    padding: 14px 16px 12px;
    background: #ffffff;
    height: 100%;
    box-sizing: border-box;
    box-shadow: none;
}

.fixture-list-page .fixture-list-card:has(.team-fixture-link:hover) {
    border-color: rgba(11, 102, 195, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.fixture-list-more-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.fixture-list-more-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    min-height: 42px;
    padding: 10px 28px;
    border: 1px solid var(--brand-primary, #0b66c3);
    border-radius: 999px;
    background: #ffffff;
    color: var(--brand-primary, #0b66c3);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.fixture-list-more-btn:hover:not(:disabled) {
    background: var(--brand-primary, #0b66c3);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(11, 102, 195, 0.22);
}

.fixture-list-more-btn:disabled {
    cursor: wait;
}

.fixture-list-more-btn__loader {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(11, 102, 195, 0.25);
    border-top-color: #0b66c3;
    border-radius: 50%;
    animation: fixture-list-spin 0.7s linear infinite;
}

.fixture-list-more-btn.is-loading {
    background: #ffffff;
    color: var(--brand-primary, #0b66c3);
}

@keyframes fixture-list-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 767px) {
    .fixture-list-grid {
        grid-template-columns: 1fr;
    }
}

.series-index-list {
    display: grid;
    gap: 10px;
}

.series-index-item {
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background: #ffffff;
    color: #111827;
}

.series-index-item:hover {
    border-color: rgba(11, 102, 195, 0.35);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.series-index-item__title {
    font-size: 15px;
    font-weight: 800;
}

.series-index-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: rgba(17, 24, 39, 0.7);
}

.series-index-pill {
    display: inline-flex;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    color: rgba(17, 24, 39, 0.85);
    font-weight: 700;
    font-size: 12px;
}

.series-index-pill--ongoing {
    background: rgba(16, 185, 129, 0.16);
    color: #047857;
}

.series-index-pill--upcoming {
    background: rgba(59, 130, 246, 0.14);
    color: #1d4ed8;
}

.team-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.team-tabs {
    display: inline-flex;
    gap: 10px;
    margin: 6px 0 14px;
    padding: 6px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 999px;
}

.team-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    color: rgba(17, 24, 39, 0.8);
    background: transparent;
}

.team-tab--active {
    background: var(--brand-primary);
    color: #ffffff;
}

.team-leagues {
    display: grid;
    gap: 14px;
}

@media (min-width: 980px) {
    .team-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.team-panel {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px;
}

.team-panel__title {
    margin: 4px 4px 10px;
    font-size: 16px;
    font-weight: 900;
    color: #111827;
}

.team-fixture-link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.team-fixture-link .series-fixture-row,
.team-fixture-link .series-day-bar {
    cursor: pointer;
}

.team-fixture-link:hover .series-fixture-row {
    border-color: rgba(11, 102, 195, 0.35);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.team-fixture-link--with-date:hover .series-day-bar {
    filter: brightness(0.97);
}

.nav-link {
    color: #ffffff;
    padding: 18px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
    white-space: nowrap;
    position: relative;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #ffffff;
}

.nav-search {
    flex-shrink: 0;
}

.search-form {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
    transition: background-color 0.2s;
}

.search-form:focus-within {
    background-color: rgba(255, 255, 255, 0.25);
}

.search-input {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 8px 12px;
    font-size: 14px;
    width: 200px;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-button {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.search-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ========== CONTAINER ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.max-w-7xl {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== GRID SYSTEM ========== */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:flex {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }
    
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ========== CARDS ========== */
.bg-white {
    background-color: #ffffff;
}

.rounded-lg {
    border-radius: 8px;
}

.shadow-md {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s;
}

/* ========== SPACING ========== */
.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-16 {
    margin-top: 4rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

/* Space utilities */
.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-x-6 > * + * {
    margin-left: 1.5rem;
}

/* ========== TYPOGRAPHY ========== */
.text-xs {
    font-size: 12px;
    line-height: 1.5;
}

.text-sm {
    font-size: 14px;
    line-height: 1.5;
}

.text-lg {
    font-size: 18px;
    line-height: 1.5;
}

.text-xl {
    font-size: 20px;
    line-height: 1.5;
}

.text-2xl {
    font-size: 24px;
    line-height: 1.5;
}

.text-3xl {
    font-size: 30px;
    line-height: 1.5;
}

.text-4xl {
    font-size: 36px;
    line-height: 1.5;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* Text Colors */
.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-900 {
    color: #111827;
}

.text-red-600 {
    color: #dc2626;
}

.text-red-700 {
    color: #b91c1c;
}

.text-green-600 {
    color: #16a34a;
}

.text-blue-600 {
    color: #2563eb;
}

.text-white {
    color: #ffffff;
}

/* ========== BACKGROUND COLORS ========== */
.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-red-100 {
    background-color: #fee2e2;
}

.bg-red-500 {
    background-color: #ef4444;
}

.bg-red-600 {
    background-color: #dc2626;
}

.bg-red-700 {
    background-color: #b91c1c;
}

.bg-red-800 {
    background-color: #991b1b;
}

.bg-blue-600 {
    background-color: #2563eb;
}

.bg-green-600 {
    background-color: #16a34a;
}

.bg-purple-600 {
    background-color: #9333ea;
}

.bg-gradient-to-br {
    background: linear-gradient(to bottom right, var(--gradient-from), var(--gradient-to));
}

.from-red-500 {
    --gradient-from: #ef4444;
}

.to-red-700 {
    --gradient-to: #b91c1c;
}

.from-gray-400 {
    --gradient-from: #9ca3af;
}

.to-gray-600 {
    --gradient-to: #4b5563;
}

/* ========== BORDERS ========== */
.border {
    border-width: 1px;
    border-style: solid;
}

.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

.border-l {
    border-left-width: 1px;
    border-left-style: solid;
}

.border-l-4 {
    border-left-width: 4px;
    border-left-style: solid;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-red-600 {
    border-color: #dc2626;
}

.border-gray-800 {
    border-color: #1f2937;
}

/* ========== BORDER RADIUS ========== */
.rounded {
    border-radius: 4px;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 8px;
}

/* ========== FLEXBOX ========== */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

/* ========== TRANSITIONS ========== */
.transition {
    transition: all 0.2s ease-in-out;
}

.hover\:text-red-600:hover {
    color: #dc2626;
}

.hover\:text-red-700:hover {
    color: #b91c1c;
}

.hover\:bg-gray-50:hover {
    background-color: #f9fafb;
}

.hover\:bg-white:hover {
    background-color: #ffffff;
}

/* ========== UTILITIES ========== */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.overflow-hidden {
    overflow: hidden;
}

.object-cover {
    object-fit: cover;
}

.w-full {
    width: 100%;
}

.w-2 {
    width: 0.5rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.h-6 {
    height: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-48 {
    height: 12rem;
}

.h-64 {
    height: 16rem;
}

.last\:border-0:last-child {
    border: none;
}

.last\:pb-0:last-child {
    padding-bottom: 0;
}

/* ========== FOOTER (Cricbuzz-style) ========== */
.site-footer {
    background-color: #1e1e1e;
    color: #ffffff;
    margin-top: 0;
    padding: 36px 0 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.site-footer__inner {
    max-width: 1200px;
}

.site-footer__top {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    padding-bottom: 28px;
}

.site-footer__brand {
    flex: 0 0 auto;
    min-width: 140px;
    padding-top: 4px;
}

.site-footer__logo {
    display: inline-block;
    text-decoration: none;
}

.site-footer__logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: lowercase;
}

.site-footer__logo-img {
    display: block;
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.site-footer__columns {
    display: flex;
    flex: 1;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.site-footer__col {
    min-width: 120px;
}

.site-footer__col--no-heading {
    padding-top: 30px;
}

.site-footer__heading {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 14px;
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__links li {
    margin-bottom: 10px;
}

.site-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e8e8e8 !important;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.35;
}

.site-footer__links a:hover {
    color: #ffffff !important;
}

.site-footer__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #ffffff;
}

.site-footer__icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.site-footer__links--contact a {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.site-footer__contact-label {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.site-footer__contact-email {
    font-size: 13px;
    font-weight: 400;
    color: #d0d0d0;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0 20px;
    text-align: center;
}

.site-footer__copyright {
    margin: 0;
    font-size: 12px;
    color: #b8b8b8;
    line-height: 1.6;
}

.site-footer__copyright a {
    color: #b8b8b8 !important;
    text-decoration: none;
}

.site-footer__copyright a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.site-footer__copyright-sep {
    margin: 0 6px;
    color: #8a8a8a;
}

/* ========== MOBILE MENU TOGGLE ========== */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.mobile-nav-drawer__head,
.mobile-nav-backdrop {
    display: none;
}

@media (min-width: 769px) {
    .mobile-nav-drawer__body,
    .mobile-nav-drawer__nav {
        display: contents;
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .nav-menu {
        margin: 0 20px;
    }
    
    .nav-link {
        padding: 18px 12px;
        font-size: 13px;
    }
    
    .search-input {
        width: 150px;
    }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .site-header > .container {
        max-width: none;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .cricinfo-nav {
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .mobile-menu-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        margin-left: auto;
        padding: 0;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.08);
        transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-toggle:active {
        background: rgba(255, 255, 255, 0.16);
        transform: scale(0.96);
    }

    .nav-content {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
        height: 56px;
        min-height: 56px;
        padding: 0 14px 0 0;
        gap: 0;
    }

    .nav-logo {
        flex: 0 1 auto;
        min-width: 0;
    }

    .logo-link {
        font-size: 20px;
        letter-spacing: -0.03em;
    }

    .site-logo__img {
        height: 32px;
        max-width: 140px;
    }

    .mobile-nav-drawer__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 64px;
        padding: max(16px, env(safe-area-inset-top)) 16px 16px;
        background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-primary) 100%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
    }

    .mobile-nav-drawer__brand {
        min-width: 0;
        font-size: 20px;
        letter-spacing: -0.03em;
    }

    .mobile-nav-drawer__brand .logo-text {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-nav-drawer__close {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        cursor: pointer;
        transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-nav-drawer__close:hover,
    .mobile-nav-drawer__close:active {
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.24);
    }

    .mobile-nav-drawer__close:active {
        transform: scale(0.94);
    }

    .mobile-nav-drawer__body {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 12px 0 calc(24px + env(safe-area-inset-bottom));
        background: linear-gradient(180deg, #0c2846 0%, var(--brand-primary) 48%, #10365c 100%);
    }

    .mobile-nav-drawer__nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 0 12px;
    }

    .mobile-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: var(--z-backdrop);
        background: rgba(6, 18, 32, 0.55);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.28s ease;
    }

    .mobile-nav-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        z-index: var(--z-drawer);
        flex-direction: column;
        align-items: stretch;
        width: var(--mobile-drawer-width);
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: 0;
        background: var(--brand-primary);
        color: #ffffff;
        box-shadow: 8px 0 40px rgba(0, 0, 0, 0.28);
        overflow: hidden;
        flex: none;
        transform: translateX(-102%);
        pointer-events: none;
        transition: none;
    }

    .nav-menu.nav-menu--interactive {
        transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .nav-menu.active {
        display: flex !important;
        transform: translateX(0);
        pointer-events: auto;
    }

    body.mobile-nav-open {
        overflow: hidden;
    }

    .nav-item {
        width: 100%;
        flex-direction: column;
    }

    .nav-item--has-dropdown > .nav-link {
        width: 100%;
    }

    .nav-item--has-dropdown:hover .nav-dropdown {
        display: none;
    }

    .nav-item--has-dropdown.is-open > .nav-link {
        background: rgba(255, 255, 255, 0.12);
        border-radius: 12px 12px 0 0;
        margin-bottom: 0;
    }

    .nav-item--has-dropdown.is-open .nav-dropdown {
        display: block;
    }

    .nav-link--dropdown::after {
        content: '';
        width: 7px;
        height: 7px;
        margin-left: auto;
        border-right: 2px solid rgba(255, 255, 255, 0.85);
        border-bottom: 2px solid rgba(255, 255, 255, 0.85);
        transform: rotate(45deg) translateY(-2px);
        transition: transform 0.22s ease;
        opacity: 1;
    }

    .nav-item--has-dropdown.is-open > .nav-link--dropdown::after {
        transform: rotate(-135deg) translateY(1px);
    }

    .nav-dropdown {
        position: static;
        display: none;
        min-width: 0;
        width: auto;
        margin: 0 0 6px;
        padding: 6px 10px 10px;
        border-radius: 0 0 12px 12px;
        border: none;
        border-left: 3px solid var(--mobile-nav-accent);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
        background: rgba(0, 0, 0, 0.22);
    }

    .nav-dropdown__grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .nav-dropdown__heading {
        padding: 10px 10px 4px;
        margin-top: 2px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.48);
    }

    .nav-dropdown__section-title {
        padding: 12px 10px 6px;
        margin-top: 4px;
        font-size: 13px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.92);
    }

    .nav-dropdown__link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.92);
        font-size: 14px;
        font-weight: 500;
        white-space: normal;
        transition: background-color 0.18s ease, color 0.18s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-dropdown__link:hover,
    .nav-dropdown__link:active {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    .nav-dropdown__btn {
        margin-top: 8px;
        padding: 11px 14px;
        border-radius: 10px;
        background: var(--mobile-nav-accent);
        color: var(--brand-primary-dark);
        font-size: 13px;
        font-weight: 700;
        text-align: center;
    }

    .nav-dropdown__btn:hover {
        background: #7dd3fc;
        color: var(--brand-primary-dark);
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: auto;
        margin: 0 0 2px;
        padding: 14px 16px;
        border-radius: 12px;
        border-bottom: none;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: -0.01em;
        line-height: 1.3;
        white-space: normal;
        transition: background-color 0.18s ease, box-shadow 0.18s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-link:active {
        background: rgba(255, 255, 255, 0.14);
    }

    .nav-link.active {
        background: rgba(56, 189, 248, 0.16);
        box-shadow: inset 3px 0 0 var(--mobile-nav-accent);
        font-weight: 700;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-search {
        order: 2;
        margin-left: auto;
    }

    .search-input {
        width: 120px;
    }

    .site-footer__top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .site-footer__brand {
        min-width: 0;
        padding-top: 0;
        width: 100%;
    }

    .site-footer__columns {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        width: 100%;
    }

    .site-footer__col {
        min-width: 100%;
        width: 100%;
        text-align: center;
    }

    .site-footer__col--no-heading {
        padding-top: 0;
    }

    .site-footer__heading {
        text-align: center;
    }

    .site-footer__links a {
        justify-content: center;
    }

    .site-footer__links--contact a {
        align-items: center;
    }

    .quick-access {
        border-radius: 0;
        padding: 4px 0;
        gap: 8px;
        margin: 4px 0 6px;
    }

    .quick-access__label {
        font-size: 13px;
    }

    .quick-access__chip {
        padding: 8px 10px;
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .site-footer__columns {
        flex-direction: column;
    }

    .site-footer__col {
        min-width: 100%;
    }

    .site-footer__col--no-heading {
        padding-top: 0;
    }

    .site-footer__copyright-sep {
        display: none;
    }

    .site-footer__copyright a {
        display: inline-block;
        margin: 0 4px;
    }
    
    .nav-link {
        padding: 13px 14px;
        font-size: 14px;
    }
    
    .search-input {
        width: 100px;
        font-size: 12px;
    }
}

/* ========== MAIN CONTENT STYLES ========== */
main {
    min-height: calc(100vh - 200px);
}

/* Section Headers */
.flex.items-center {
    display: flex;
    align-items: center;
}

/* Live Badge */
.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

/* Card Hover Effects */
.hover\:shadow-lg {
    transition: box-shadow 0.2s;
}

/* Additional utility classes */
.hidden {
    display: none;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ========== MATCH WIDGET (slider) ========== */
.match-widget {
    background-color: #f5f5f5;
    border-bottom: none;
    margin-bottom: 0;
}

.match-widget .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.match-slider-links {
    background: #f5f5f5;
    margin-top: 10px;
}

.match-slider-links__nav {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 40px;
    padding: 6px 0;
}

.match-slider-links__link {
    font-size: 13px;
    font-weight: 700;
    color: #1a5276;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.match-slider-links__link:hover {
    color: #0d3d56;
    text-decoration: none;
}

.match-slider-links__link--active {
    color: #1a1a1a;
    pointer-events: none;
}

.match-slider-links__link--live {
    color: #c62828;
    padding: 4px 12px;
    border: 2px solid #e53935;
    border-radius: 5px;
    animation: match-list-live-blink 1.4s ease-in-out infinite;
}

.match-slider-links__link--live:hover {
    color: #b71c1c;
    text-decoration: none;
}

.match-slider-links__link--live.match-slider-links__link--active {
    color: #c62828;
    background: #ffebee;
    pointer-events: none;
}

@keyframes match-list-live-blink {
    0%,
    100% {
        border-color: #e53935;
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.5);
    }

    50% {
        border-color: #ff8a80;
        box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.22);
    }
}

@media (prefers-reduced-motion: reduce) {
    .match-slider-links__link--live {
        animation: none;
        box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.28);
    }
}

/* ========== MATCH SLIDER (ESPN Cricinfo style) ========== */
.match-cards-section {
    padding: 8px 0 2px;
    overflow: visible;
}

.match-cards-section .container {
    position: relative;
    overflow: visible;
}

.match-cards-outer {
    position: relative;
    width: 100%;
    overflow: visible;
}

.match-cards-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-sizing: border-box;
}

.match-cards-container::-webkit-scrollbar {
    display: none;
}

.match-cards-wrapper {
    display: flex;
    gap: 10px;
    width: max-content;
    padding: 2px 0;
}

.match-card {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    min-width: 248px;
    max-width: 248px;
    flex-shrink: 0;
    padding: 12px 14px 10px;
    display: flex;
    flex-direction: column;
}

.match-card--clickable {
    cursor: pointer;
}

.match-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 8px;
}

.match-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.match-card-status {
    font-size: 11px;
    font-weight: 700;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.match-card--live {
    border-color: #ef9a9a;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.12);
}

.match-card-status--live {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #c62828;
}

.live-dot {
    width: 6px;
    height: 6px;
    background-color: #e53935;
    border-radius: 50%;
    display: inline-block;
}

.match-card-series {
    font-size: 11px;
    color: #888888;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.match-card-teams {
    margin-bottom: 8px;
}

.match-card-teams--upcoming {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.match-teams-list {
    flex: 1;
    min-width: 0;
}

.match-team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.match-team:last-child {
    margin-bottom: 0;
}

.match-team-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.team-flag,
.team-flag-img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    flex-shrink: 0;
    display: block;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.team-flag-default {
    background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%);
}

.team-flag-ban { background: linear-gradient(180deg, #006a4e 50%, #f42a41 50%); }
.team-flag-pak { background: #01411c; }
.team-flag-gt { background: #1c2d5e; }
.team-flag-csk { background: #ffdd00; }
.team-flag-aus { background: linear-gradient(90deg, #00843d 33%, #ffcd00 33%, #ffcd00 66%, #00843d 66%); }
.team-flag-eng { background: linear-gradient(180deg, #012169 40%, #fff 40%, #fff 60%, #c8102e 60%); }
.team-flag-adkr { background: #e4002b; }
.team-flag-dv { background: #00a651; }
.team-flag-ind { background: linear-gradient(180deg, #ff9933 33%, #fff 33%, #fff 66%, #138808 66%); }
.team-flag-sa { background: linear-gradient(90deg, #007749 40%, #ffb81c 40%, #ffb81c 60%, #e03c31 60%); }

.team-abbr {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.team-score {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.match-card .match-team-left {
    flex-shrink: 0;
}

.match-card .team-score {
    font-size: 11px;
    line-height: 1.25;
    min-width: 0;
    flex: 1 1 auto;
    flex-shrink: 1;
}

.match-card .team-overs {
    font-size: 10px;
}

.team-overs {
    font-size: 12px;
    font-weight: 400;
    color: #333333;
}

.match-time-block {
    text-align: right;
    flex-shrink: 0;
}

.match-day {
    display: block;
    font-size: 11px;
    color: #666666;
    line-height: 1.2;
}

.match-time {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.match-card-summary {
    font-size: 12px;
    color: #444444;
    line-height: 1.4;
    margin: 0 0 10px;
    font-weight: 400;
}

.match-card-summary--toss {
    color: #0b66c3;
    font-weight: 600;
}

.match-card-links {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.match-card-links a {
    font-size: 12px;
    color: #000000;
    font-weight: 400;
    transition: color 0.15s;
}

.match-card-links a:hover {
    color: #000000;
    text-decoration: underline;
}

/* ========== MATCH SLIDER BUTTONS ========== */
.match-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    pointer-events: auto;
    transition: background-color 0.15s, box-shadow 0.15s;
    background-color: var(--brand-primary) !important;
    border: none;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(21, 101, 192, 0.35);
}

.match-slider-btn svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    stroke-width: 3;
}

.match-slider-prev {
    left: -20px;
}

.match-slider-next {
    right: -20px;
}

.match-slider-btn:hover:not(:disabled) {
    background-color: var(--brand-primary-dark) !important;
    transform: translateY(-50%);
    box-shadow: 0 3px 8px rgba(13, 71, 161, 0.4);
}

.match-slider-btn:hover:not(:disabled) svg {
    stroke: #ffffff;
}

.match-slider-btn:active:not(:disabled) {
    transform: translateY(-50%) scale(0.96);
}

.match-slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #b0b0b0 !important;
    box-shadow: none;
}

.match-slider-btn:disabled svg {
    stroke: #ffffff;
}

/* ========== QUICK LINKS (below slider) ========== */
.sub-nav-bar {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e8e8e8;
    padding: 12px 0 14px;
}

.sub-nav-content {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sub-nav-content::-webkit-scrollbar {
    display: none;
}

.sub-nav-pill {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #d4d4d4;
    border-radius: 20px;
    white-space: nowrap;
    transition: border-color 0.15s;
}

.sub-nav-pill:hover {
    border-color: #b0b0b0;
    color: #000000;
}

.sub-nav-pill .arrow {
    color: #888888;
    font-size: 14px;
    line-height: 1;
}

/* ========== NAV ICONS ========== */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.nav-icon:hover {
    opacity: 0.8;
}

.search-icon {
    width: 32px;
    height: 32px;
}

/* ========== HOME CONTAINER ========== */
.home-container {
    background-color: #f5f5f5;
    min-height: calc(100vh - 200px);
    padding: 4px 0 20px;
    border: none;
    margin-bottom: 0;
    margin-top: 0;
}

.quick-access {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 4px 0;
    margin: 4px 0 6px;
}

.quick-access__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.quick-access__label {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    padding: 0 2px;
}

.quick-access__scroller {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    min-width: 0;
}

.quick-access__scroller::-webkit-scrollbar {
    display: none;
}

.quick-access__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #111827;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: background-color 0.15s, border-color 0.15s, transform 0.15s;
}

.quick-access__chip:hover {
    background: #eaf6fe;
    border-color: rgba(3, 169, 244, 0.4);
    transform: translateY(-1px);
}

.quick-access__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    opacity: 0.9;
}

.quick-access__icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.quick-access__text {
    line-height: 1;
}

.quick-access__view-all {
    font-size: 14px;
    font-weight: 600;
    color: #0b66c3;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.quick-access__view-all:hover {
    color: #094d92;
    text-decoration: underline;
}

/* ========== HOME NEWS HUB (3-column) ========== */
.home-news-hub {
    margin-top: 8px;
    margin-bottom: 40px;
}

.home-news-hub__grid {
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(380px, 580px) minmax(200px, 1fr);
    column-gap: 10px;
    row-gap: 20px;
    align-items: start;
}

.home-news-hub__col {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    height: auto;
    align-self: start;
}

.home-news-hub__box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px 10px;
    background-color: transparent;
    border-bottom: 1px solid #eeeeee;
}

.home-news-hub__box-header .home-news-hub__heading {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111827;
    line-height: 1.2;
}

.home-news-hub__view-all {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: #094d92;
    text-decoration: none;
    white-space: nowrap;
}

.home-news-hub__view-all:hover {
    color: #094d92;
    text-decoration: underline;
}

.home-news-hub__box-body {
    padding: 12px 18px 18px;
}

.home-news-hub__empty {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

/* Center feed */
.home-news-hub__col--main {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 580px;
    width: 100%;
    justify-self: start;
}

.home-news-hub__col--main .home-news-hub__box-body {
    padding: 12px 16px 16px;
}

.home-news-hub__story {
    margin-bottom: 16px;
    border-bottom: 1px solid #eeeeee;
}

.home-news-hub__story:has(+ .home-news-hub__stories-loading),
.home-news-hub__story:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.home-news-hub__story-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 4px;
    transition: background-color 0.15s ease;
}

.home-news-hub__story-link:hover {
    background-color: #f9fafb;
}

.home-news-hub__story-link:hover .home-news-hub__story-title {
    color: #094d92;
}

.home-news-hub__col--main .home-news-hub__story-title {
    margin: 0 2px 8px;
    font-size: clamp(14px, 1.35vw, 17px);
    font-weight: 700;
    line-height: 1.35;
    color: #111827;
}

.home-news-hub__story-byline {
    margin: 0 2px 10px;
    font-size: 12px;
    line-height: 1.45;
    color: #6b7280;
}

.home-news-hub__story-author {
    font-weight: 600;
    color: #094d92;
}

.home-news-hub__story-byline-sep {
    margin: 0 5px;
    color: #9ca3af;
}

.home-news-hub__col--main .home-news-hub__story-figure {
    margin: 0 0 10px;
    border-radius: 4px;
    overflow: hidden;
    background: #e8eef5;
}

.home-news-hub__col--main .home-news-hub__story-figure--placeholder {
    background: #0e2e52;
}

.home-news-hub__col--main .home-news-hub__story-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
    background: #0e2e52;
}

.home-news-hub__col--main .home-news-hub__story-image--placeholder {
    object-fit: cover;
    object-position: center center;
    background: #0e2e52;
}

.home-news-hub__col--main .home-news-hub__story-figure .news-image-figure__caption {
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.4;
    color: #5f6368;
    background: #f8f9fa;
    border-top: 1px solid #e8eef5;
}

.home-news-hub__story-body {
    padding: 0 2px 14px;
}

.home-news-hub__col--main .home-news-hub__story-excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
}

.home-news-hub__stories-sentinel {
    width: 100%;
    height: 1px;
    margin: 0;
    pointer-events: none;
}

.home-news-hub__stories-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 16px 0 0;
    padding-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-align: center;
}

.home-news-hub__stories-loading[hidden] {
    display: none !important;
}

.home-news-hub__stories-loading-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid #e5e7eb;
    border-top-color: #111827;
    border-radius: 50%;
    animation: home-news-hub-spin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes home-news-hub-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ICC rankings (right column) */
.home-news-hub__ranking-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.home-news-hub__ranking-tab {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #f9fafb;
}

.home-news-hub__ranking-tab:hover {
    color: #094d92;
    border-color: #094d92;
}

.home-news-hub__ranking-tab--active {
    color: #ffffff;
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}

.home-news-hub__ranking-tab--active:hover {
    color: #ffffff;
}

.home-news-hub__ranking-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-news-hub__ranking-item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid #eeeeee;
}

.home-news-hub__ranking-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.home-news-hub__ranking-item:first-child {
    padding-top: 0;
}

.home-news-hub__ranking-pos {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    text-align: center;
}

.home-news-hub__ranking-team {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

a.home-news-hub__ranking-team:hover .home-news-hub__ranking-name {
    color: #094d92;
}

.home-news-hub__ranking-flag {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 2px;
}

.home-news-hub__ranking-name {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-news-hub__ranking-rating {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
}

/* Featured videos (legacy) */
.home-news-hub__video-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-news-hub__video-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.home-news-hub__video-thumb {
    position: relative;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    background: #111827;
    aspect-ratio: 16 / 9;
}

.home-news-hub__video-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-news-hub__video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;
    pointer-events: none;
}

.home-news-hub__video-duration {
    position: absolute;
    right: 8px;
    bottom: 8px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 3px;
}

.home-news-hub__video-title {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    color: #374151;
}

.home-news-hub__video-link:hover .home-news-hub__video-title {
    color: #094d92;
}

@media (max-width: 991px) {
    .home-news-hub__grid {
        grid-template-columns: 1fr;
        column-gap: 10px;
        row-gap: 16px;
    }

    .home-news-hub__box-body {
        padding: 14px 16px 16px;
    }

    .home-news-hub__box-header {
        padding: 10px 14px;
    }

    .home-news-hub__col--main {
        order: 1;
    }

    .home-news-hub__col--latest {
        order: 2;
    }

    .home-news-hub__col--rankings {
        order: 3;
    }
}

@media (max-width: 575px) {
    .home-news-hub {
        margin-top: 20px;
    }

    .home-news-hub__box-body {
        padding: 12px 14px 14px;
    }
}

.main-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

/* ========== FEATURED NEWS ========== */
.featured-news {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
    gap: 20px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.featured-news-image {
    flex-shrink: 0;
    width: 300px;
}

.featured-news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.featured-news-content {
    flex: 1;
}

.news-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.featured-news-title {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.3;
}

.news-bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-bullet {
    font-size: 14px;
    color: #666666;
    padding-left: 8px;
}

.news-bullet:hover {
    color: #333333;
    cursor: pointer;
}

/* ========== NEWS GRID ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.news-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.news-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.news-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #e8eef5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.video-duration {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.news-card-content {
    padding: 16px;
}

.news-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-card-title:hover {
    color: #333333;
}

.news-card-excerpt {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
}

/* ========== SIDEBAR ========== */
.main-content-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: static;
    align-self: flex-start;
}

.sidebar-section {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
}

.sidebar-see-all {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
}

.sidebar-see-all:hover {
    text-decoration: underline;
}

/* ========== VIDEO CARD ========== */
.video-card {
    margin-bottom: 16px;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.play-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.video-caption {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.video-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cccccc;
    cursor: pointer;
    transition: background-color 0.2s;
}

.dot.active {
    background-color: #666666;
}

/* ========== NUMBER CRUNCHING ========== */
.number-crunching {
    text-align: center;
    padding: 20px 0;
}

.big-number {
    font-size: 72px;
    font-weight: 700;
    color: #333333;
    line-height: 1;
    margin-bottom: 12px;
}

.number-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

/* ========== MATCH COVERAGE ========== */
.match-coverage-section {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    margin-bottom: 0;
    border: none;
}

.section-header {
    margin-bottom: 20px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
}

.coverage-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    overflow-x: auto;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 12px;
}

.coverage-tab {
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    padding: 8px 16px;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -14px;
    transition: color 0.2s;
}

.coverage-tab:hover {
    color: #333333;
}

.coverage-tab.active {
    color: #dc2626;
    border-bottom-color: #dc2626;
    font-weight: 600;
}

.coverage-content {
    margin-top: 24px;
}

.coverage-news-card {
    display: flex;
    gap: 20px;
}

.coverage-news-image {
    position: relative;
    width: 400px;
    height: 250px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.coverage-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coverage-news-content {
    flex: 1;
}

.coverage-news-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.coverage-news-title:hover {
    color: #333333;
}

.coverage-news-excerpt {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* ========== TOP STORIES SECTION ========== */
.top-stories-section {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    margin-bottom: 0;
    border: none;
}

.top-stories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.top-stories-title {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.top-stories-see-all {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
    transition: color 0.2s;
}

.top-stories-see-all:hover {
    color: #333333;
    text-decoration: underline;
}

.top-stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.top-stories-column {
    display: flex;
    flex-direction: column;
}

.top-stories-column:first-child {
    border-right: 1px solid #e5e7eb;
    padding-right: 20px;
}

.top-stories-column:last-child {
    padding-left: 20px;
}

.top-story-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s;
}

.top-story-item:last-child {
    border-bottom: none;
}

.top-story-item:hover {
    background-color: #f9fafb;
    margin: 0 -12px;
    padding: 16px 12px;
    border-radius: 4px;
}

.top-story-image {
    flex-shrink: 0;
    width: 120px;
    height: 90px;
    border-radius: 4px;
    overflow: hidden;
    background: #e8eef5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-story-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.top-story-image--placeholder {
    background: #0e2e52;
}

.top-story-image--placeholder img {
    object-fit: cover;
    object-position: center center;
    padding: 0;
    background: #0e2e52;
}

.top-story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top-story-title {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    line-height: 1.4;
    margin: 0 0 8px 0;
    transition: color 0.2s;
}

.top-story-title:hover {
    color: #333333;
    text-decoration: underline;
}

.top-story-meta {
    font-size: 12px;
    color: #999999;
    line-height: 1.4;
}

/* ========== PAGE STYLES (Privacy, Terms, About, Contact) ========== */
.page-container {
    background-color: #f5f5f5;
    min-height: calc(100vh - 200px);
    padding: 24px 0 40px;
}

.page-hero {
    margin-bottom: 20px;
}

.page-breadcrumb {
    font-size: 13px;
    margin-bottom: 8px;
}

.page-breadcrumb a {
    color: #03A9F4;
    text-decoration: none;
}

.page-breadcrumb a:hover {
    text-decoration: underline;
}

.page-breadcrumb__sep {
    margin: 0 8px;
    color: #999999;
}

.page-breadcrumb__current {
    color: #666666;
}

.page-hero__title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.2;
}

.page-hero__subtitle {
    font-size: 16px;
    color: #666666;
    margin: 0;
    max-width: 720px;
    line-height: 1.5;
}

.page-alert {
    padding: 14px 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
}

.page-alert--success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.page-alert--error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.page-alert__list {
    margin: 0;
    padding-left: 18px;
}

.page-content {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.last-updated {
    color: #999999;
    font-size: 14px;
    margin-bottom: 32px;
}

.page-content section {
    margin-bottom: 32px;
}

.page-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-top: 32px;
    margin-bottom: 16px;
}

.page-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-top: 24px;
    margin-bottom: 12px;
}

.page-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 16px;
}

.page-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 8px;
}

.page-content a {
    color: #333333;
    text-decoration: underline;
}

.page-content a:hover {
    color: #666666;
}

.about-section {
    margin-bottom: 32px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section__label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #03A9F4;
    margin-bottom: 16px;
}

.about-section__intro {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
}

.about-rich-text p,
.page-rich-text p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

.page-rich-text h1,
.page-rich-text h2,
.page-rich-text h3,
.page-rich-text h4,
.page-rich-text h5,
.page-rich-text h6 {
    color: #333333;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 14px;
}

.page-rich-text p,
.page-rich-text span,
.page-rich-text div,
.page-rich-text li,
.page-rich-text td,
.page-rich-text th {
    background-color: transparent !important;
}

.page-rich-text h1 { font-size: 28px; }
.page-rich-text h2 { font-size: 24px; }
.page-rich-text h3 { font-size: 20px; }
.page-rich-text h4 { font-size: 18px; }

.page-rich-text ul,
.page-rich-text ol {
    margin: 0 0 16px 24px;
    padding: 0;
}

.page-rich-text li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #666666;
}

.page-rich-text a {
    color: #03A9F4;
    text-decoration: underline;
}

.page-rich-text blockquote {
    border-left: 4px solid #03A9F4;
    margin: 1em 0;
    padding-left: 1em;
    color: #555;
}

.page-rich-text img {
    max-width: 100%;
    height: auto;
}

.page-rich-text table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.page-rich-text table td,
.page-rich-text table th {
    border: 1px solid #e5e7eb;
    padding: 8px 12px;
}

.page-rich-text section {
    margin-bottom: 32px;
}

.page-rich-text section:last-child {
    margin-bottom: 0;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.about-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fafafa;
}

.about-card__image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.about-card__body {
    padding: 16px;
}

.about-card__body h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: #1a1a1a;
}

.about-card__body p {
    margin: 0;
    font-size: 14px;
    color: #666666;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.about-team-card {
    text-align: center;
}

.about-team-card__photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    display: block;
}

.about-team-card h3 {
    font-size: 17px;
    margin: 0 0 4px;
    color: #1a1a1a;
}

.about-team-card__role {
    font-size: 14px;
    font-weight: 600;
    color: #03A9F4;
    margin: 0 0 8px;
}

.about-team-card__tagline {
    font-size: 13px;
    color: #666666;
    margin: 0;
}

/* Cookies Policy Table Styles */
.cookies-table {
    margin: 30px 0;
    overflow-x: auto;
}

.cookies-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.cookies-table thead {
    background-color: #f5f5f5;
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #333333;
    border-bottom: 2px solid #e0e0e0;
}

.cookies-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    color: #555555;
}

.cookies-table tbody tr:hover {
    background-color: #f9f9f9;
}

.cookies-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .cookies-table {
        font-size: 14px;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 10px 8px;
    }
}

/* Contact Page (modern two-column) */
.contact-page__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 56px;
    align-items: start;
}

.contact-page__eyebrow {
    font-size: 14px;
    color: #888888;
    margin: 0 0 8px;
}

.contact-page__heading {
    position: relative;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 28px;
    padding-left: 18px;
}

.contact-page__heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background-color: var(--brand-primary);
    border-radius: 2px;
}

.contact-page__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-page__form-row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-page__form input,
.contact-page__form textarea {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 0;
    background-color: #f3f3f3;
    font-size: 14px;
    font-family: inherit;
    color: #333333;
}

.contact-page__form input::placeholder,
.contact-page__form textarea::placeholder {
    color: #999999;
}

.contact-page__form input:focus,
.contact-page__form textarea:focus {
    outline: 2px solid var(--brand-primary);
    outline-offset: 0;
    background-color: #fafafa;
}

.contact-page__form textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-page__submit {
    align-self: flex-start;
    margin-top: 8px;
    padding: 14px 28px;
    background-color: var(--brand-primary);
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 4px;
}

.contact-page__submit:hover {
    background-color: var(--brand-primary-dark);
}

.contact-page__info-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 32px;
}

.contact-page__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-page__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-page__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page__icon svg {
    width: 22px;
    height: 22px;
}

.contact-page__detail strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.contact-page__detail a,
.contact-page__detail span {
    font-size: 15px;
    color: #444444;
    text-decoration: none;
    line-height: 1.5;
}

.contact-page__detail a:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .contact-page__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-page__form-row--half {
        grid-template-columns: 1fr;
    }

    .contact-page__submit {
        width: 100%;
        text-align: center;
    }
}

/* Contact Page Styles (legacy) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 32px;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-item {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.contact-item p {
    margin-bottom: 4px;
}

.contact-form-section h2 {
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333333;
}

.submit-button {
    background-color: var(--brand-primary);
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: var(--brand-primary-dark);
}

.response-time {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .page-container {
        padding: 16px 0 32px;
    }

    .page-hero {
        margin-bottom: 16px;
    }

    .page-hero__title {
        font-size: 26px;
        padding-left: 14px;
    }

    .page-hero__subtitle {
        font-size: 15px;
    }

    .page-content {
        padding: 20px 16px;
    }

    .page-content h2 {
        font-size: 20px;
        margin-top: 24px;
    }

    .page-content h3 {
        font-size: 17px;
    }

    .page-content p,
    .page-content li {
        font-size: 15px;
    }

    .contact-page__heading {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .contact-page__grid {
        gap: 32px;
    }

    .contact-page__icon {
        width: 44px;
        height: 44px;
    }

    .home-container {
        padding: 8px 0 16px;
    }

    .top-stories-section {
        padding: 16px;
    }

    .top-stories-title {
        font-size: 18px;
    }

    .top-story-item {
        flex-direction: column;
        gap: 10px;
    }

    .top-story-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .top-story-item:hover {
        margin: 0;
        padding: 16px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cookies-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .page-content {
        padding: 16px 12px;
        border-radius: 6px;
    }

    .page-hero__title {
        font-size: 22px;
    }

    .contact-page__heading {
        font-size: 22px;
        padding-left: 12px;
    }

    .contact-page__submit {
        width: 100%;
    }

    .site-footer__logo-text {
        font-size: 1.5rem;
    }

    .matches-ticker-item {
        font-size: 12px;
        padding: 6px 10px;
    }

    .match-card {
        min-width: 200px;
        max-width: 200px;
    }

    .match-card .team-score {
        font-size: 10px;
    }

    .match-card .team-overs {
        font-size: 9px;
    }
}

/* ========== SEO & ACCESSIBILITY ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========== AD CONTAINERS (AdSense Optimization) ========== */
.ad-container {
    margin: 20px 0;
    text-align: center;
    background-color: #f9f9f9;
    border: 1px dashed #e0e0e0;
    border-radius: 4px;
    padding: 20px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-placeholder {
    color: #999999;
    font-size: 12px;
    text-align: center;
    padding: 20px;
}

.ad-placeholder span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    margin-bottom: 8px;
}

.ad-placeholder small {
    display: block;
    font-size: 11px;
    color: #999999;
}

/* Leaderboard Ad (728x90) */
.ad-leaderboard {
    max-width: 728px;
    margin: 20px auto;
    min-height: 90px;
}

/* Sidebar Ads (300x250 or 336x280) */
.ad-sidebar-top,
.ad-sidebar-middle {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    min-height: 250px;
}

/* In-Content Ad (300x250) */
.ad-in-content {
    max-width: 300px;
    margin: 30px auto;
    min-height: 250px;
}

/* Below Content Ad (728x90) */
.ad-below-content {
    max-width: 728px;
    margin: 30px auto;
    min-height: 90px;
}

/* Footer Top Ad (728x90) */
.ad-footer-top {
    max-width: 728px;
    margin: 30px auto;
    min-height: 90px;
}

/* Mobile Ad Optimization */
@media (max-width: 768px) {
    .main-content-right {
        position: static; /* Disable sticky on mobile */
        max-height: none;
    }
    
    .ad-leaderboard {
        max-width: 100%;
        min-height: 50px;
    }
    
    .ad-leaderboard .ad-placeholder small::after {
        content: "320 x 50 (Mobile)";
    }
    
    .ad-sidebar-top,
    .ad-sidebar-middle,
    .ad-in-content {
        max-width: 100%;
        min-height: 250px;
    }
    
    .ad-below-content,
    .ad-footer-top {
        max-width: 100%;
        min-height: 50px;
    }
    
    .ad-below-content .ad-placeholder small::after,
    .ad-footer-top .ad-placeholder small::after {
        content: "320 x 50 (Mobile)";
    }
}

/* Hide ad placeholders when real ads are loaded */
.adsbygoogle {
    display: block;
}

.adsbygoogle + .ad-placeholder {
    display: none;
}

/* ========== RESPONSIVE DESIGN FOR HOME PAGE ========== */
@media (max-width: 1024px) {
    .main-content-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-news {
        flex-direction: column;
    }
    
    .featured-news-image {
        width: 100%;
    }
    
    .coverage-news-card {
        flex-direction: column;
    }
    
    .coverage-news-image {
        width: 100%;
    }
    
    .top-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .top-stories-column:first-child {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .top-stories-column:last-child {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .match-card {
        min-width: 220px;
        max-width: 220px;
        padding: 10px 12px 8px;
    }
    
    .match-slider-btn {
        width: 28px;
        height: 28px;
    }
    
}

/* ========== SERIES SCHEDULE PAGE ========== */
.series-hero {
    margin-bottom: 12px;
}

.fixture-list-hero__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px 24px;
}

.fixture-list-hero__intro {
    min-width: 0;
}

.fixture-list-hero__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px 20px;
    flex-shrink: 0;
    padding-top: 6px;
}

.fixture-list-hero__link {
    font-size: 13px;
    font-weight: 700;
    color: #1a5276;
    text-decoration: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.fixture-list-hero__link:hover {
    color: #0d3d56;
    text-decoration: none;
}

.fixture-list-hero__link--active {
    color: #1a1a1a;
    pointer-events: none;
}

@media (max-width: 767px) {
    .fixture-list-hero__head {
        flex-direction: column;
        align-items: stretch;
    }

    .fixture-list-hero__links {
        justify-content: flex-start;
        padding-top: 0;
    }
}

.series-hero__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.2;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.series-hero__subtitle {
    font-size: 14px;
    color: #6b6b6b;
    margin: 0;
}

.series-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.series-tabs__link {
    font-size: 14px;
    font-weight: 600;
    color: #6b6b6b;
    text-decoration: none;
    padding: 10px 0;
    margin-bottom: -1px;
}

.series-tabs__link--active {
    color: #1a6b3c;
    border-bottom: 3px solid #1a6b3c;
}

.series-tabs__link--disabled {
    color: #b0b0b0;
    cursor: default;
}

.series-page-layout {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 24px;
    min-width: 0;
    max-width: 100%;
}

.series-page-layout__left {
    flex: 1 1 auto;
    min-width: 0;
}

.series-page-layout__content {
    min-width: 0;
}

.series-page-layout__content > .series-main {
    margin-top: 0;
}

.series-page-layout > .series-sidebar-wrap {
    flex: 0 0 300px;
    width: 300px;
    max-width: 300px;
}

.series-venue-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.series-venue-filter__label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.series-venue-filter__select {
    font-size: 13px;
    padding: 6px 10px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background: #fff;
    min-width: 200px;
}

.series-day-bar {
    background: #e8f5e9;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 8px 14px;
    margin: 0 0 0;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.series-day-bar__date {
    min-width: 0;
}

.series-day-bar__detail,
.series-fixture-row__detail {
    font-size: 12px;
    font-weight: 700;
    color: #0e2e52;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.team-fixture-link:hover .series-day-bar__detail,
.team-fixture-link:hover .series-fixture-row__detail {
    color: #1565c0;
}

.series-fixture-row__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.series-fixture-row__head .series-fixture-row__meta {
    margin-bottom: 0;
}

.series-day-group {
    margin-bottom: 20px;
}

.series-day-group--hidden {
    display: none;
}

.series-fixture-row--hidden {
    display: none;
}

.series-fixture-row {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: none;
    padding: 14px 16px 12px;
}

.series-day-group .series-fixture-row:last-child {
    border-radius: 0 0 4px 4px;
}

.series-fixture-row__meta {
    font-size: 12px;
    color: #6b6b6b;
    margin-bottom: 10px;
}

.series-fixture-row__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.series-fixture-row__team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.series-fixture-row__team-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.series-fixture-row__team-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.series-fixture-row__score {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

.series-fixture-row__score--winner {
    font-weight: 700;
}

.series-fixture-row__result {
    margin: 10px 0 0;
    font-size: 13px;
}

.series-fixture-row__result--finished {
    color: #1565c0;
    font-weight: 600;
}

.series-fixture-row__result--no-result {
    color: #6b5b00;
    font-weight: 600;
    line-height: 1.45;
    padding: 8px 10px;
    border-radius: 6px;
    background: #fff8e1;
    border-left: 3px solid #f9a825;
}

.series-fixture-row__result--live {
    color: #c62828;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.series-fixture-row__starts {
    margin: 10px 0 0;
    font-size: 12px;
    font-weight: 500;
    color: #e57373;
    line-height: 1.4;
}

.series-empty {
    padding: 40px;
    text-align: center;
    color: #6b6b6b;
}

.series-sidebar-wrap {
    margin-top: 0;
}

.series-latest-news.news-article-sidebar {
    width: 100%;
    margin: 0;
    position: static;
    max-height: none;
    overflow-y: visible;
}

@media (max-width: 1024px) {
    .series-page-layout {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .series-page-layout > .series-sidebar-wrap {
        flex: 1 1 auto;
        width: 100%;
        max-width: none;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .series-schedule-page,
    .series-venues-page,
    .series-index-page,
    .ranking-page {
        overflow-x: clip;
    }

    .series-schedule-page .container,
    .series-venues-page .container,
    .series-index-page .container,
    .ranking-page .container {
        max-width: 100%;
    }

    .series-page-layout {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        gap: 16px;
    }

    .series-page-layout__left,
    .series-page-layout__content,
    .series-main,
    .series-hero {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .series-hero {
        margin-bottom: 10px;
    }

    .series-hero__title {
        font-size: clamp(22px, 6.4vw, 28px);
        line-height: 1.25;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
        hyphens: auto;
    }

    .series-hero__subtitle {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
        line-height: 1.45;
    }

    .series-tabs {
        flex-wrap: nowrap;
        gap: 0 18px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-bottom: 16px;
    }

    .series-tabs::-webkit-scrollbar {
        display: none;
    }

    .series-tabs__link {
        flex-shrink: 0;
        padding: 8px 0;
    }

    .series-day-bar {
        flex-wrap: wrap;
        gap: 8px 12px;
    }

    .series-day-bar__date {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .series-day-bar__detail,
    .series-fixture-row__detail {
        white-space: normal;
        text-align: right;
    }

    .series-fixture-row__head {
        align-items: flex-start;
    }

    .series-fixture-row__meta {
        min-width: 0;
        overflow-wrap: anywhere;
        line-height: 1.4;
    }

    .series-fixture-row__team-name {
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .series-fixture-row__score {
        flex-shrink: 0;
        max-width: 46%;
        overflow-wrap: anywhere;
        text-align: right;
        white-space: normal;
    }

    .series-venue-filter {
        flex-wrap: wrap;
    }

    .series-venue-filter__select {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
}

/* ========== SERIES STATS ========== */
.series-stats-subtabs {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.series-stats-subtabs__btn {
    font-size: 14px;
    font-weight: 600;
    color: #6b6b6b;
    background: none;
    border: none;
    padding: 10px 20px;
    margin-bottom: -1px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.series-stats-subtabs__btn--active {
    color: #1a6b3c;
    border-bottom-color: #1a6b3c;
}

.series-stats-table-wrap {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    overflow-x: auto;
}

.series-stats-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.series-stats-table thead tr {
    background: #e8f5e9;
}

.series-stats-table th {
    padding: 10px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4a4a4a;
    text-align: center;
    white-space: nowrap;
    border-bottom: 1px solid #dce8dd;
}

.series-stats-table th.series-stats-table__player {
    text-align: left;
}

.series-stats-table td {
    padding: 10px 12px;
    text-align: center;
    color: #1a1a1a;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.series-stats-table td.series-stats-table__player {
    text-align: left;
}

.series-stats-table__player-name {
    color: #1565c0;
    font-weight: 600;
}

.series-stats-table td.series-stats-table__runs,
.series-stats-table th.series-stats-table__runs {
    font-weight: 700;
}

.series-stats-table tbody tr:hover {
    background: #fafafa;
}

.series-stats-table__empty {
    padding: 32px 16px !important;
    text-align: center;
    color: #6b6b6b;
}

.series-stats-panel[hidden] {
    display: none !important;
}

/* ========== SERIES SQUADS ========== */
.series-squads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.series-squad-team {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
}

.series-squad-team__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #e8f5e9;
    border-bottom: 1px solid #dce8dd;
}

.series-squad-team__flag {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.series-squad-team__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    flex: 1;
    color: #1a1a1a;
}

.series-squad-team__count {
    font-size: 12px;
    color: #6b6b6b;
    white-space: nowrap;
}

.series-squad-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.series-squad-player {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.series-squad-player:last-child {
    border-bottom: none;
}

.series-squad-player__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.series-squad-player__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.series-squad-player__initial {
    font-size: 16px;
    font-weight: 700;
    color: #1a6b3c;
    text-transform: uppercase;
}

.series-squad-player__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.series-squad-player__name {
    font-size: 14px;
    font-weight: 600;
    color: #1565c0;
    line-height: 1.3;
}

.series-squad-player__role {
    font-size: 12px;
    color: #6b6b6b;
}

.series-squad-player--empty {
    color: #6b6b6b;
    font-size: 13px;
    justify-content: center;
    padding: 24px 16px;
}

@media (max-width: 768px) {
    .series-squads-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== SERIES VENUES ========== */
.series-venues-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.series-venue-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
}

.series-venue-card__image-wrap {
    flex: 0 0 180px;
    width: 180px;
    min-height: 120px;
    align-self: stretch;
    display: flex;
    overflow: hidden;
    background: #f5f5f5;
}

.series-venue-card__image-wrap--placeholder {
    background-color: #0e2e52;
    background-image: url('/images/venue-placeholder.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.series-venue-card__image {
    width: 100%;
    height: 100%;
    min-height: 120px;
    flex: 1 1 auto;
    object-fit: cover;
    display: block;
}

.series-venue-card__image--placeholder {
    object-fit: cover;
    object-position: center center;
}

.series-venue-card__body {
    flex: 1;
    padding: 16px 16px 16px 0;
}

.series-venue-card__name {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.series-venue-card__location {
    margin: 0 0 12px;
    font-size: 14px;
    color: #6b6b6b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.series-venue-card__flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.series-venue-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin: 0;
}

.series-venue-card__meta div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.series-venue-card__meta dt {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b6b6b;
}

.series-venue-card__meta dd {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

@media (max-width: 600px) {
    .series-venue-card {
        flex-direction: column;
    }

    .series-venue-card__image-wrap {
        flex: none;
        width: 100%;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .series-venue-card__body {
        padding: 16px;
    }
}

/* ========== PLAYER PROFILE ========== */
.player-profile-link {
    color: #1565c0;
    font-weight: 600;
    text-decoration: none;
}

.player-profile-link:hover {
    color: #0d47a1;
    text-decoration: underline;
}

.series-stats-table__player-name.player-profile-link,
.series-squad-player__name.player-profile-link {
    color: #1565c0;
}

.player-profile-page {
    padding: 24px 0 48px;
    background: #f4f6f8;
}

.player-profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

.player-identity-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.player-identity-card__banner {
    height: 72px;
    background: linear-gradient(135deg, #1a6b3c 0%, #2e8b57 50%, #4caf50 100%);
}

.player-identity-card__body {
    padding: 0 20px 20px;
    margin-top: -36px;
    text-align: center;
}

.player-identity-card__photo-wrap {
    width: 88px;
    height: 88px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 4px solid #fff;
    overflow: hidden;
    background: #e8f5e9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.player-identity-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-identity-card__initial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 32px;
    font-weight: 700;
    color: #1a6b3c;
}

.player-identity-card__name {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1a1a1a;
    line-height: 1.2;
}

.player-identity-card__tagline {
    font-size: 13px;
    color: #5f6368;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.player-identity-card__flag {
    width: 20px;
    height: 14px;
    object-fit: contain;
}

.player-identity-card__dot {
    opacity: 0.5;
}

.player-identity-card__career {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a6b3c;
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.player-related-card {
    margin-top: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px;
}

.player-related-card__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.player-related-card__flag {
    width: 18px;
    height: 12px;
    object-fit: contain;
}

.player-related-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.player-related-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f0f0f0;
}

.player-related-item:last-child {
    border-bottom: none;
}

.player-related-item:hover .player-related-item__name {
    color: #1565c0;
}

.player-related-item__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #1a6b3c;
    flex-shrink: 0;
}

.player-related-item__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-related-item__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.player-related-item__name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.player-related-item__role {
    font-size: 11px;
    color: #888;
}

.player-profile-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.player-profile-tabs__link {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #6b6b6b;
    text-decoration: none;
    margin-bottom: -2px;
    border-bottom: 2px solid transparent;
}

.player-profile-tabs__link--active {
    color: #1a6b3c;
    border-bottom-color: #1a6b3c;
}

.player-panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px 24px;
}

.player-panel__heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b6b6b;
    margin: 24px 0 14px;
}

.player-panel__heading:first-child {
    margin-top: 0;
}

.player-panel__empty {
    color: #6b6b6b;
    margin: 0;
}

.player-quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.player-quick-stat {
    background: #f8faf9;
    border: 1px solid #e8f0ea;
    border-radius: 6px;
    padding: 14px;
    text-align: center;
}

.player-quick-stat__value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #1a6b3c;
}

.player-quick-stat__label {
    font-size: 11px;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.player-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 24px;
    margin: 0;
}

.player-info-grid__item dt {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #9e9e9e;
    margin-bottom: 4px;
}

.player-info-grid__item dd {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.player-teams-chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.player-teams-chips__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.player-teams-chips__item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.player-format-filter {
    margin-bottom: 20px;
}

.player-format-filter__label {
    font-size: 12px;
    font-weight: 600;
    color: #6b6b6b;
    display: block;
    margin-bottom: 8px;
}

.player-format-filter__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.player-format-pill {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    background: #f0f0f0;
    color: #555;
    text-decoration: none;
}

.player-format-pill--active {
    background: #1a6b3c;
    color: #fff;
}

.player-career-block {
    margin-bottom: 28px;
}

.player-career-block:last-child {
    margin-bottom: 0;
}

.player-career-block__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.player-career-block__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.player-career-block__count {
    font-size: 12px;
    color: #888;
}

.player-format-debuts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: #fafbfc;
    border: 1px solid #e8ecef;
    border-radius: 6px;
}

.player-format-debuts__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 100px;
}

.player-format-debuts__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #9e9e9e;
}

.player-format-debuts__date {
    font-size: 14px;
    font-weight: 600;
    color: #1a6b3c;
}

.player-career-block__summary {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
}

.player-career-metric {
    text-align: center;
    padding: 10px 16px;
    background: #f8faf9;
    border-radius: 6px;
    min-width: 80px;
}

.player-career-metric__val {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.player-career-metric__lbl {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

.player-format-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    background: #e3f2fd;
    color: #1565c0;
    border-radius: 4px;
}

.player-teams-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.player-teams-grid__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.player-teams-grid__logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #1a6b3c;
}

.player-teams-grid__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.player-teams-grid__name {
    font-size: 14px;
    font-weight: 600;
    display: block;
}

.player-teams-grid__code {
    font-size: 11px;
    color: #888;
}

@media (max-width: 900px) {
    .player-profile-layout {
        grid-template-columns: 1fr;
    }

    .player-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .player-quick-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .player-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== MATCH CENTER ========== */
.match-center-page {
    padding-top: 0;
    padding-bottom: 48px;
}

.match-center-hero {
    padding: 16px 0 20px;
    color: #1a1a1a;
    margin-bottom: 16px;
    background: none;
    border-bottom: 1px solid #e8e8e8;
}

.match-center-hero--live,
.match-center-hero--upcoming,
.match-center-hero--result {
    background: none;
}

.match-center-breadcrumb {
    font-size: 12px;
    margin-bottom: 12px;
    color: #6b6b6b;
}

.match-center-breadcrumb a {
    color: #1565c0;
    text-decoration: none;
}

.match-center-breadcrumb a:hover {
    text-decoration: underline;
}

.match-center-breadcrumb span {
    margin: 0 6px;
    color: #9e9e9e;
}

.match-center-hero__status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.match-center-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eeeeee;
    color: #4a4a4a;
}

.match-center-pill--live {
    background: #ffebee;
    color: #c62828;
}

.match-center-pill--info {
    background: #fff8e1;
    color: #e65100;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    max-width: 100%;
    line-height: 1.35;
}

.match-center-hero__phase {
    font-size: 13px;
    font-weight: 600;
    color: #6b6b6b;
}

.match-center-hero__title {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    margin: 0 0 6px;
    line-height: 1.2;
}

.match-center-hero__meta {
    margin: 0 0 6px;
    font-size: 14px;
    color: #6b6b6b;
}

.match-center-hero__note,
.match-center-hero__toss {
    margin: 8px 0 0;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.45;
}

.match-center-hero__result {
    margin: 0 0 10px;
}

.match-center-summary {
    margin-top: 10px;
    max-width: 520px;
    width: 100%;
}

.match-center-hero__scoreline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.match-center-pom {
    flex: 0 0 240px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: 10px;
}

.match-center-pom__label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b6b6b;
    margin-bottom: 10px;
}

.match-center-pom__row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.match-center-pom__img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    background: #f0f0f0;
    flex-shrink: 0;
}

.match-center-pom__img--placeholder {
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
}

.match-center-pom__name {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    color: #1a1a1a;
}

.match-center-score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 7px 0;
}

.match-center-score-row__team {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.match-center-score-row__identity {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.match-center-score-row__innings {
    font-size: 12px;
    font-weight: 700;
    color: #5c6b7a;
    line-height: 1.2;
}

.match-center-score-row .team-flag,
.match-center-score-row .team-flag-img {
    width: 36px;
    height: 26px;
    border-radius: 4px;
    flex-shrink: 0;
    object-fit: cover;
}

.match-center-score-row__name {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.match-center-score-row__score {
    flex-shrink: 0;
    text-align: right;
    white-space: nowrap;
}

.match-center-score-row__prefix {
    font-size: 15px;
    font-weight: 600;
    color: #5c6b7a;
}

.match-center-score-row__main {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.match-center-score-row__overs {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
}

.match-center-score-row--muted .match-center-score-row__name,
.match-center-score-row--muted .match-center-score-row__main {
    color: #5c6b7a;
    font-weight: 800;
}

.match-center-score-row--active .match-center-score-row__name,
.match-center-score-row--active .match-center-score-row__main {
    color: #1a1a1a;
    font-weight: 900;
}

.match-center-summary--team-combined .match-center-score-row__main {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.25;
    white-space: normal;
}

.match-center-score-row--winner .match-center-score-row__name {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.match-center-summary__meta {
    margin-top: 6px;
}

.match-center-summary__chase {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    color: #1a1a1a;
}

.match-center-summary__rates {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 700;
    color: #6b6b6b;
    line-height: 1.4;
}

.match-center-summary__toss {
    margin: 8px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: #6b6b6b;
    line-height: 1.4;
}

.match-center-body {
    padding: 0;
}

.match-center-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.match-center-tabs__btn {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #4a4a4a;
    background: #fff;
    border: 1px solid #e0e0e0;
    text-decoration: none;
}

.match-center-tabs__btn--active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.match-center-tabs__btn:hover:not(.match-center-tabs__btn--active) {
    border-color: #90caf9;
    color: #1565c0;
}

.match-center-tabs__btn--outline {
    margin-left: auto;
}

.match-center-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(300px, 32%);
    gap: 32px;
    align-items: stretch;
}

.match-center-page-layout__main {
    grid-column: 1;
    min-width: 0;
}

.match-center-sidebar-wrap {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    width: 100%;
}

.match-center-main {
    min-width: 0;
}

/* Match + series Latest News sidebars */
.match-center-updates.news-article-sidebar,
.news-article-sidebar.match-center-updates,
.series-latest-news.news-article-sidebar {
    padding: 14px 16px 20px;
}

/* Match Latest News — scrolls with page (no fixed overlay on footer) */
.match-center-updates.news-article-sidebar,
.news-article-sidebar.match-center-updates {
    width: 100%;
    margin: 0;
    position: static;
    max-height: none;
    overflow-y: visible;
}

/* Venue / innings below main tab content */
.match-center-extras {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.match-center-extras__heading {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b6b6b;
}

.match-center-extras__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
}

.match-center-extras__venue-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 8px;
    display: block;
    object-fit: cover;
}

.match-center-extras__venue-img--placeholder {
    aspect-ratio: 16 / 9;
    max-height: 120px;
    background: #0e2e52;
    object-position: center center;
}

.match-center-layout {
    display: block;
}

.match-center-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 16px;
}

.match-center-card__head {
    margin-bottom: 14px;
}

.match-center-card__head--between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.match-center-card__link {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-primary);
    white-space: nowrap;
}

.match-center-card__link:hover {
    text-decoration: underline;
}

.match-center-card__head--team {
    display: flex;
    align-items: center;
    gap: 10px;
}

.match-center-card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.match-center-upcoming-panel__time {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.match-center-upcoming-panel .match-time-block {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 10px 14px;
    background: #ffebee;
    border-color: #ffcdd2;
}

.match-center-upcoming-panel .match-time-block .match-day,
.match-center-upcoming-panel .match-time-block .match-time {
    color: #c62828;
    font-weight: 800;
}

.match-center-upcoming-panel__relative {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #c62828;
}

.match-center-upcoming-panel__series {
    display: inline-block;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #1565c0;
    text-decoration: none;
}

.match-center-upcoming-panel__series:hover {
    text-decoration: underline;
}

.match-center-grid--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Live tab — ESPN-style batters / bowlers */
.match-center-crease {
    margin-bottom: 20px;
}

.match-center-crease-block + .match-center-crease-block {
    margin-top: 2px;
}

.match-center-crease-head,
.match-center-crease-row {
    display: grid;
    align-items: center;
    column-gap: 8px;
    padding: 10px 12px;
}

.match-center-crease-head--batters,
.match-center-crease-row--batters {
    grid-template-columns: minmax(0, 1fr) 36px 36px 36px 36px 48px;
}

.match-center-crease-head--bowlers,
.match-center-crease-row--bowlers {
    grid-template-columns: minmax(0, 1fr) 40px 36px 36px 36px 52px;
}

.match-center-crease-head {
    background: #f5f5f5;
    padding-top: 9px;
    padding-bottom: 9px;
}

.match-center-crease-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #757575;
}

.match-center-crease-col {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.match-center-crease-head .match-center-crease-col {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9e9e9e;
}

.match-center-crease-col--emph {
    font-weight: 800;
}

.match-center-crease-row {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.match-center-crease-row:last-of-type {
    border-bottom: none;
}

.match-center-crease-player {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
}

.match-center-crease-name {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    text-decoration: none;
}

.match-center-crease-name:hover {
    text-decoration: underline;
}

.match-center-crease-style {
    font-size: 12px;
    font-weight: 500;
    color: #9e9e9e;
    text-transform: lowercase;
}

.match-center-crease-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin: 12px 0 0;
    padding: 0 12px;
    font-size: 13px;
    color: #1a1a1a;
    line-height: 1.45;
}

.match-center-crease-footer__label {
    color: #9e9e9e;
    font-weight: 500;
}

.match-center-crease-footer__sep {
    color: #bdbdbd;
}

@media (max-width: 520px) {
    .match-center-crease-head--batters,
    .match-center-crease-row--batters {
        grid-template-columns: minmax(0, 1fr) 28px 28px 28px 28px 40px;
        column-gap: 4px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .match-center-crease-head--bowlers,
    .match-center-crease-row--bowlers {
        grid-template-columns: minmax(0, 1fr) 32px 28px 28px 28px 44px;
        column-gap: 4px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .match-center-crease-col {
        font-size: 12px;
    }

    .match-center-crease-name {
        font-size: 13px;
    }
}

.match-center-player-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.match-center-player-card {
    background: #f4faf6;
    border-radius: 8px;
    padding: 12px 14px;
    border-left: 4px solid #1a6b3c;
}

.match-center-player-card__top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.match-center-player-card__name {
    font-weight: 700;
    font-size: 14px;
}

.match-center-player-card__score {
    font-size: 18px;
    font-weight: 800;
    color: #1a6b3c;
}

.match-center-player-card__stats {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #6b6b6b;
}

.match-center-over-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.match-center-over-slider {
    position: relative;
    display: flex;
    align-items: center;
}

.match-center-over-slider .match-slider-prev {
    left: -20px;
}

.match-center-over-slider .match-slider-next {
    right: -20px;
}

.match-center-over-slider__viewport {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge legacy */
    width: 100%;
}

.match-center-over-slider__viewport::-webkit-scrollbar {
    display: none;
}

.match-center-over-slider__viewport .match-center-over-strip {
    overflow: visible;
    padding-bottom: 0;
    padding-left: 22px;
    padding-right: 22px;
    width: max-content;
    max-width: none;
}


.match-center-over-slider__arrow {
    z-index: 5;
}

.match-center-over-block {
    flex: 0 0 auto;
    min-width: 140px;
    background: #fafafa;
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid #eee;
}

@media (max-width: 640px) {
    .match-center-card {
        padding: 14px 12px;
    }

    .match-center-card__head--between {
        align-items: flex-start;
        gap: 8px;
    }

    .match-center-card__link {
        font-size: 12px;
    }

    .match-center-over-slider .match-slider-prev {
        left: -14px;
    }

    .match-center-over-slider .match-slider-next {
        right: -14px;
    }

    .match-center-over-slider__viewport .match-center-over-strip {
        padding-left: 16px;
        padding-right: 16px;
    }

    .match-center-over-block {
        min-width: 128px;
        padding: 10px 10px;
    }

    .match-center-ball-chip {
        min-width: 24px;
        height: 24px;
        font-size: 11px;
    }
}

@media (max-width: 420px) {
    .match-center-card__head--between {
        flex-direction: column;
        align-items: flex-start;
    }
}

.match-center-over-block__head {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #4a4a4a;
}

.match-center-ball-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.match-center-ball-chips--wrap {
    max-width: 100%;
}

.match-center-ball-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 6px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    background: #e8f5e9;
    color: #2e7d32;
}

.match-center-ball-chip--wicket {
    background: #e53935;
    color: #ffffff;
    text-transform: uppercase;
}

.match-center-ball-chip--four {
    background: #2e7d32;
    color: #ffffff;
}

.match-center-ball-chip--six {
    background: #6a1b9a;
    color: #ffffff;
}

.match-center-over-row {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.match-center-over-row:last-child {
    border-bottom: none;
}

.match-center-over-row__label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
}

/* Full Commentary tab */
.match-center-full-commentary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.match-center-card--full-commentary .match-center-card__title {
    font-size: 1rem;
}

/* Live tab — commentary feed */
.match-center-commentary {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.match-center-commentary-over__head {
    background: #d8eefc;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 800;
    color: #1a1a1a;
}

.match-center-commentary-over__label {
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.8;
}

.match-center-commentary-over__runs {
    font-weight: 900;
}

.match-center-commentary-over__list {
    padding: 6px 0;
}

.match-center-commentary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
}

.match-center-commentary-ball {
    width: 42px;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: #6b6b6b;
    font-variant-numeric: tabular-nums;
}

.match-center-commentary-item:last-child {
    border-bottom: none;
}

.match-center-commentary-chip {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    background: #f5f5f5;
    color: #1a1a1a;
    flex-shrink: 0;
}

.match-center-commentary-chip--wicket {
    background: #e53935;
    color: #ffffff;
    text-transform: uppercase;
}

.match-center-commentary-chip--four {
    background: #2e7d32;
    color: #ffffff;
}

.match-center-commentary-chip--six {
    background: #6a1b9a;
    color: #ffffff;
}

.match-center-commentary-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a5a5a;
    line-height: 1.35;
}

.match-center-commentary-more {
    padding: 14px 12px 6px;
    display: flex;
    justify-content: center;
}

.match-center-btn {
    appearance: none;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #1a1a1a;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.match-center-btn:hover {
    border-color: #90caf9;
    color: #1565c0;
}

.match-center-scorecard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.match-center-innings-header {
    background: #d8eefc;
    border-radius: 10px;
    padding: 10px 12px;
    margin: -16px -18px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.match-center-innings-header__left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.match-center-innings-header__left .team-flag,
.match-center-innings-header__left .team-flag-img {
    width: 24px;
    height: 17px;
    border-radius: 3px;
    flex-shrink: 0;
}

.match-center-innings-header__title {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.match-center-innings-header__meta {
    font-weight: 600;
    color: #3a4b5a;
    margin-left: 6px;
    font-size: 13px;
}

.match-center-subtitle {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b6b6b;
    margin: 16px 0 8px;
}

.match-center-table-wrap {
    overflow-x: auto;
}

.match-center-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.match-center-table th,
.match-center-table td {
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.match-center-table th {
    font-size: 11px;
    text-transform: uppercase;
    color: #6b6b6b;
    background: #fafafa;
}

.match-center-table__out td {
    color: #9e9e9e;
}

.match-center-scorecard-dismissal {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #6b6b6b;
}

.match-center-scorecard-dismissal-inline {
    margin-left: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #6b6b6b;
    white-space: nowrap;
}

.match-center-aside-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
}

.match-center-aside-card__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b6b6b;
    margin: 0 0 10px;
}

.match-center-aside-card__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.match-center-venue-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.match-center-innings-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.match-center-innings-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 13px;
}

.match-center-empty,
.match-center-empty-inline {
    text-align: center;
    color: #6b6b6b;
    padding: 32px 16px;
}

.match-center-empty-inline {
    padding: 12px;
    text-align: left;
}

@media (max-width: 900px) {
    .match-center-page-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .match-center-page-layout__main,
    .match-center-sidebar-wrap {
        grid-column: 1;
    }

    .match-center-sidebar-wrap {
        width: 100%;
        grid-row: auto;
    }

    .match-center-hero__scoreline {
        flex-direction: column;
    }

    .match-center-pom {
        flex: 1 1 auto;
        width: 100%;
        max-width: 520px;
    }

    .series-sidebar-wrap {
        margin-top: 24px;
    }

    .match-center-grid--2 {
        grid-template-columns: 1fr;
    }

    .match-center-tabs__btn--outline {
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .match-center-score-row .team-flag,
    .match-center-score-row .team-flag-img {
        width: 30px;
        height: 22px;
    }

    .match-center-score-row__name {
        font-size: 16px;
        font-weight: 800;
    }

    .match-center-score-row__prefix {
        font-size: 13px;
    }

    .match-center-score-row__main {
        font-size: 19px;
        font-weight: 900;
    }
}

/* ICC team rankings */
.ranking-empty {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 32px 24px;
    text-align: center;
    color: #6b6b6b;
    font-size: 15px;
}

.ranking-table-wrap {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.ranking-table th,
.ranking-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.ranking-table thead th {
    background: #f8f8f8;
    font-weight: 700;
    color: #333;
    font-size: 13px;
}

.ranking-table tbody tr:last-child td {
    border-bottom: none;
}

.ranking-table__rank {
    width: 56px;
    font-weight: 700;
    color: #1a1a1a;
}

.ranking-table__team-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
}

a.ranking-table__team-link:hover {
    color: #1a6b3c;
}

.ranking-table__flag {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 2px;
}

/* News pages */
.news-page--article {
    --news-sticky-top: 92px;
    padding-top: 8px;
}

.news-breadcrumb {
    font-size: 13px;
    color: #6b6b6b;
    margin-bottom: 8px;
}

.news-breadcrumb a {
    color: #0b66c3;
    text-decoration: none;
}

.news-list {
    display: grid;
    gap: 16px;
}

.news-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
}

.news-card__link {
    display: flex;
    gap: 16px;
    padding: 16px;
    color: inherit;
    text-decoration: none;
}

.news-card__link:hover .news-card__title {
    color: #1a6b3c;
}

.news-card__image {
    flex: 0 0 120px;
    width: 120px;
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    overflow: hidden;
    background: #e8eef5;
    line-height: 0;
}

.news-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    border-radius: 4px;
}

.news-card__image--placeholder {
    background: #0e2e52;
}

.news-card__image--placeholder img {
    object-fit: cover;
    object-position: center center;
    padding: 0;
    background: #0e2e52;
}

.news-card__category {
    font-size: 12px;
    font-weight: 700;
    color: #0b66c3;
    text-transform: uppercase;
}

.news-card__title {
    font-size: 18px;
    font-weight: 700;
    margin: 4px 0;
    line-height: 1.3;
}

.news-card__excerpt {
    font-size: 14px;
    color: #555;
    margin: 0 0 8px;
}

.news-card__meta {
    font-size: 13px;
    color: #888;
}

.news-article-layout {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 32px;
}

.news-article {
    flex: 1 1 auto;
    min-width: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px 28px 32px;
}

.news-article__kicker {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.news-article__kicker a {
    color: #6b7280;
    text-decoration: none;
}

.news-article__kicker a:hover {
    color: #094d92;
}

.news-article__title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.2;
    color: #111827;
}

.news-article__byline {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.news-article__author {
    font-weight: 600;
    color: #094d92;
}

.news-article__byline-sep {
    margin: 0 6px;
    color: #9ca3af;
}

.news-article__share {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.news-article__share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.2;
}

.news-article__share-btn--facebook {
    background: #1877f2;
}

.news-article__share-btn--x {
    background: #000000;
}

.news-article__share-btn--copy {
    position: relative;
    background: #4b5563;
}

.news-article__share-btn:hover {
    opacity: 0.92;
    color: #ffffff;
}

.news-article__share-icon {
    font-weight: 800;
    font-size: 15px;
}

.news-article__share-icon-svg {
    flex-shrink: 0;
}

.news-article__share-copied {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    background: #111827;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
}

.news-article__share-copied::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #111827;
}

.news-article__share-btn--copy.is-copied .news-article__share-copied {
    opacity: 1;
    visibility: visible;
}

.news-article__figure,
.news-image-figure.news-article__figure {
    margin: 0 0 20px;
    width: 100%;
    max-height: none;
    background: #e8eef5;
    border-radius: 4px;
    overflow: hidden;
    display: block;
}

.news-image-figure.news-article__figure .news-article__image {
    margin: 0 auto;
}

.news-article__image {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 480px;
    height: auto;
    object-fit: contain;
    object-position: center center;
    border-radius: 4px;
}

.news-article__image--placeholder {
    object-fit: cover;
    object-position: center center;
    padding: 0;
    max-height: 420px;
    width: 100%;
    background: #0e2e52;
}

.news-image-figure__caption {
    margin: 0;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.45;
    color: #5f6368;
    background: #f8f9fa;
    border-top: 1px solid #e8eef5;
}

.news-article__body--rich {
    font-size: 17px;
    line-height: 1.75;
    color: #1f2937;
    padding: 0;
    overflow-wrap: break-word;
}

.news-article__body--rich > *:first-child {
    margin-top: 0;
}

.news-article__body--rich p {
    margin: 0 0 1.1em;
}

.news-article__body--rich ul,
.news-article__body--rich ol {
    margin: 0 0 1.1em;
    padding-left: 1.5em;
}

.news-article__body--rich blockquote {
    margin: 1em 0;
    padding: 0.5em 0 0.5em 1em;
    border-left: 4px solid #e5e7eb;
}

.news-article__body--rich a {
    color: #094d92;
    text-decoration: underline;
}

.news-article__body--rich h2,
.news-article__body--rich h3 {
    margin: 1.5em 0 0.6em;
    font-weight: 700;
    color: #111827;
}

.news-article__body--rich img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Article sidebar */
.news-article-sidebar-wrap {
    flex: 0 0 300px;
    width: 300px;
    max-width: 340px;
    min-width: 0;
}

.news-article-sidebar {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px 16px 20px;
    box-sizing: border-box;
    position: static;
}

.news-article-sidebar__heading {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a6b3c;
}

.news-article-sidebar__list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-article-sidebar__item {
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.news-article-sidebar__item:first-child {
    padding-top: 0;
}

.news-article-sidebar__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.news-article-sidebar__link {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.news-article-sidebar__link:hover .news-article-sidebar__title {
    color: #094d92;
}

.news-article-sidebar__thumb {
    flex: 0 0 100px;
    border-radius: 6px;
    overflow: hidden;
    background: #e8eef5;
    line-height: 0;
}

.news-article-sidebar__thumb img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
}

.news-article-sidebar__thumb--placeholder {
    background: #0e2e52;
}

.news-article-sidebar__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
    padding-top: 1px;
}

.news-article-sidebar__title {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #111827;
}

.news-article-sidebar__time {
    font-size: 11px;
    font-weight: 400;
    color: #9ca3af;
}

.home-news-hub__col--latest .home-news-hub__box-body {
    padding: 12px 16px 16px;
}

.home-news-hub__col--latest .news-article-sidebar__thumb {
    flex: 0 0 112px;
}

.home-news-hub__col--latest .news-article-sidebar__title {
    font-size: 13px;
}

.home-news-hub__box-body--latest-cards .news-article-sidebar__list {
    margin-bottom: 0;
}

.news-article-sidebar__empty {
    margin: 0 0 16px;
    font-size: 14px;
    color: #6b7280;
}

.news-article-sidebar__more {
    display: block;
    width: 100%;
    padding: 12px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background: var(--brand-primary);
    border-radius: 4px;
    text-decoration: none;
}

.news-article-sidebar__more:hover {
    background: var(--brand-primary-dark);
    color: #ffffff;
}

@media (max-width: 991px) {
    .news-article-layout {
        flex-direction: column;
        gap: 28px;
    }

    .news-article {
        padding: 20px 18px 28px;
    }

    .news-article-sidebar-wrap {
        flex: 1 1 auto;
        width: 100%;
        max-width: none;
        order: 2;
    }

    .news-article-sidebar {
        position: static;
        max-height: none;
        overflow-y: visible;
    }
}

.top-story-item__link {
    display: flex;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.top-story-item__link:hover .top-story-title {
    color: #1a6b3c;
}
