/**
 * Tournament / Series pages — ESPNcricinfo style
 */

/* Highlighted WT20WC nav button */
.primary-nav__item--highlight .primary-nav__link {
	background: linear-gradient(180deg, rgba(0,102,204,0.35) 0%, rgba(0,102,204,0.15) 100%);
	color: #fff;
	border-left: 3px solid #4da3ff;
}
.primary-nav__item--highlight.is-active .primary-nav__link,
.primary-nav__item--highlight .primary-nav__link:hover {
	background: rgba(0,102,204,0.45);
	color: #fff;
	box-shadow: inset 0 -3px 0 #4da3ff;
}

.mega-menu__title {
	padding: 14px 20px 8px;
	font-size: 13px;
	font-weight: 700;
	color: #0066cc;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	border-bottom: 1px solid var(--color-border);
}

/* Tournament secondary bar */
.tournament-bar {
	background: #f4f5f7;
	border-bottom: 1px solid var(--color-border);
	position: relative;
	z-index: 1;
}

/* On tournament pages the sub-nav replaces the mega dropdown — never show both */
.tournament-page-active .primary-nav__item--highlight .mega-menu {
	display: none !important;
}
[data-theme="dark"] .tournament-bar { background: var(--color-card); }
.tournament-bar__inner {
	display: flex;
	align-items: stretch;
	gap: 0;
	min-height: 48px;
}
.tournament-bar__title {
	display: flex;
	align-items: center;
	padding: 0 20px 0 0;
	border-right: 1px solid var(--color-border);
	flex-shrink: 0;
}
.tournament-bar__title a {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-text);
	text-decoration: none;
	white-space: nowrap;
}
.tournament-bar__title a:hover { color: #0066cc; }
.tournament-bar__tabs { flex: 1; overflow: hidden; }
.tournament-bar__list {
	display: flex;
	align-items: stretch;
	list-style: none !important;
	margin: 0;
	padding: 0;
	overflow-x: auto;
	scrollbar-width: none;
}
.tournament-bar__list::-webkit-scrollbar { display: none; }
.tournament-bar__list > li { flex-shrink: 0; list-style: none !important; }
.tournament-bar__list a,
.tournament-bar__more-btn {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-muted);
	text-decoration: none;
	background: none;
	border: none;
	cursor: pointer;
	white-space: nowrap;
	font-family: inherit;
}
.tournament-bar__list a:hover,
.tournament-bar__more-btn:hover { color: #0066cc; }
.tournament-bar__list .is-active a {
	color: #0066cc;
	box-shadow: inset 0 -3px 0 #0066cc;
}

/* Match carousel */
.match-carousel {
	background: #fff;
	border-bottom: 1px solid var(--color-border);
	padding: 12px 0;
}
[data-theme="dark"] .match-carousel { background: var(--color-bg); }
.match-carousel__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: 600;
	color: var(--color-muted);
	text-transform: uppercase;
}
.match-carousel__label { color: var(--color-text); }
.match-carousel__track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: thin;
}
.match-carousel__card {
	flex: 0 0 260px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	padding: 12px 14px;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.2s, border-color 0.2s;
}
[data-theme="dark"] .match-carousel__card { background: var(--color-card); }
.match-carousel__card:hover {
	border-color: #0066cc;
	box-shadow: 0 4px 16px rgba(0,21,41,0.1);
}
.match-carousel__card-status {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}
.match-carousel__tag { color: var(--color-muted); }
.match-carousel__tag--result { color: #666; }
.match-carousel__format { color: var(--color-muted); font-weight: 500; text-transform: none; }
.match-carousel__teams { display: flex; flex-direction: column; gap: 6px; }
.match-carousel__team {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
}
.match-carousel__score { margin-left: auto; font-weight: 700; }
.match-carousel__status {
	margin: 8px 0 0;
	font-size: 12px;
	color: var(--color-muted);
	line-height: 1.4;
}
.match-carousel__links {
	margin-top: 10px;
	padding-top: 8px;
	border-top: 1px solid var(--color-border);
	font-size: 11px;
	color: #0066cc;
	font-weight: 600;
}
.match-carousel__links .sep { margin: 0 6px; color: var(--color-border); }

/* Tournament page layout */
.tournament-page { padding: 24px 0 48px; }
.tournament-page__layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 28px;
	align-items: start;
}
.tournament-page__main { min-width: 0; }
.breadcrumb {
	font-size: 12px;
	color: var(--color-muted);
	margin-bottom: 12px;
}
.breadcrumb a { color: #0066cc; text-decoration: none; }
.page-title {
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 24px;
	line-height: 1.2;
}

/* Sidebar widgets */
.tournament-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-points__subtitle {
	margin: 4px 0 0;
	font-size: 12px;
	color: var(--color-muted);
	font-weight: 500;
}
.sidebar-points__group h4 {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color-muted);
}
.sidebar-points__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
}
.sidebar-points__table th,
.sidebar-points__table td {
	padding: 6px 4px;
	text-align: center;
	border-bottom: 1px solid var(--color-border);
}
.sidebar-points__table th:first-child,
.sidebar-points__table td:first-child { text-align: left; }
.sidebar-stats__list {
	list-style: none !important;
	margin: 0;
	padding: 0;
}
.sidebar-stats__list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid var(--color-border);
	font-size: 13px;
}
.sidebar-stats__list li:last-child { border-bottom: none; }
.sidebar-stats__rank {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #f0f2f5;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	flex-shrink: 0;
}
.sidebar-stats__list strong { display: block; font-size: 13px; }
.sidebar-stats__list small { color: var(--color-muted); font-size: 11px; }
.sidebar-stats__value {
	margin-left: auto;
	font-weight: 800;
	font-size: 15px;
}

/* Points table full */
.points-table-full__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}
.points-table-full__table th {
	background: #2d3748;
	color: #fff;
	padding: 10px 8px;
	text-align: center;
	font-weight: 600;
	font-size: 12px;
}
.points-table-full__table th:nth-child(2) { text-align: left; }
.points-table-full__table td {
	padding: 10px 8px;
	border-bottom: 1px solid var(--color-border);
	text-align: center;
}
.points-table-full__table td:nth-child(2) { text-align: left; font-weight: 600; }
.points-table-full__table tbody tr:nth-child(even) { background: #f8f9fb; }
[data-theme="dark"] .points-table-full__table tbody tr:nth-child(even) { background: rgba(255,255,255,0.03); }
.form-badges { display: flex; gap: 3px; justify-content: center; }
.form-w, .form-l, .form-t {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 2px;
	font-size: 10px;
	font-weight: 800;
	color: #fff;
}
.form-w { background: var(--color-green, #d9480f); }
.form-l { background: #ef4444; }
.form-t { background: #94a3b8; }

/* Teams grid */
.teams-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.teams-grid__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	text-decoration: none;
	color: var(--color-text);
	font-weight: 600;
	font-size: 14px;
	transition: border-color 0.2s, background 0.2s;
}
.teams-grid__item:hover {
	border-color: #0066cc;
	background: #e8f4fd;
}
.teams-grid__flag { font-size: 22px; }

/* Tournament home */
.tournament-home__grid { display: grid; gap: 24px; }
.tournament-fixtures-list {
	list-style: none !important;
	margin: 0;
	padding: 0;
}
.tournament-fixtures-list li { border-bottom: 1px solid var(--color-border); }
.tournament-fixtures-list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 16px;
	text-decoration: none;
	color: inherit;
	gap: 12px;
}
.tournament-fixtures-list a:hover { background: #f8f9fb; }
.tournament-fixtures-list__teams { font-weight: 700; font-size: 14px; }
.tournament-fixtures-list__status { font-size: 12px; color: var(--color-muted); text-align: right; }

.records-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.records-table th {
	background: #2d3748;
	color: #fff;
	padding: 12px;
	text-align: left;
	font-size: 12px;
}
.records-table td {
	padding: 12px;
	border-bottom: 1px solid var(--color-border);
}
.records-table tbody tr:hover { background: #f8f9fb; }

/* ── Videos (cricinfo style) ── */
.tournament-page__layout--media {
	grid-template-columns: 1fr 320px;
}
.video-featured {
	display: block;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 28px;
	text-decoration: none;
	color: #fff;
}
.video-featured__media {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #111;
}
.video-featured__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.video-featured__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 48px 24px 20px;
	background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.video-featured__title {
	margin: 0 0 6px;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.3;
}
.video-featured__meta {
	font-size: 13px;
	opacity: 0.85;
}
.video-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 16px;
}
.video-card {
	text-decoration: none;
	color: inherit;
	display: block;
}
.video-card__thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 6px;
	overflow: hidden;
	background: #1a1a1a;
	margin-bottom: 10px;
}
.video-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}
.video-card:hover .video-card__thumb img { transform: scale(1.04); }
.video-card__duration {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(0,0,0,0.75);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 2px 6px;
	border-radius: 3px;
}
.video-card__title {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--color-text);
}
.video-card:hover .video-card__title { color: #0066cc; }
.video-card__date {
	font-size: 12px;
	color: var(--color-muted);
}
.video-play {
	position: absolute;
	left: 12px;
	bottom: 12px;
	width: 36px;
	height: 36px;
	background: rgba(0,102,204,0.92);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.video-play--lg {
	left: 50%;
	top: 50%;
	bottom: auto;
	transform: translate(-50%, -50%);
	width: 72px;
	height: 72px;
}
.video-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-modal[hidden] { display: none !important; }
.video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.85);
}
.video-modal__panel {
	position: relative;
	width: min(900px, 92vw);
	background: #111;
	border-radius: 8px;
	overflow: hidden;
}
.video-modal__close {
	position: absolute;
	top: 8px;
	right: 12px;
	z-index: 2;
	background: none;
	border: none;
	color: #fff;
	font-size: 32px;
	cursor: pointer;
	line-height: 1;
}
.video-modal__player { aspect-ratio: 16 / 9; background: #000; }
.video-modal__iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
.video-modal__placeholder[hidden],
.video-modal__iframe[hidden] { display: none !important; }
.video-modal__placeholder {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	color: #fff;
	padding: 24px;
	text-align: center;
}
.trending-list {
	list-style: none !important;
	margin: 0;
	padding: 0;
}
.trending-list li { border-bottom: 1px solid var(--color-border); }
.trending-list a {
	display: flex;
	gap: 10px;
	padding: 12px 16px;
	text-decoration: none;
	color: var(--color-text);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}
.trending-list a:hover { background: #f8f9fb; color: #0066cc; }
.trending-list__thumb { flex-shrink: 0; font-size: 20px; }

/* ── Photos (cricinfo gallery) ── */
.photo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.photo-card {
	position: relative;
	padding: 0;
	border: none;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 4 / 3;
	background: #eee;
}
.photo-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}
.photo-card:hover img { transform: scale(1.05); }
.photo-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 12px;
	background: linear-gradient(transparent 40%, rgba(0,0,0,0.75));
	opacity: 0;
	transition: opacity 0.2s;
	text-align: left;
}
.photo-card:hover .photo-card__overlay { opacity: 1; }
.photo-card__title {
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
}
.photo-card__date {
	color: rgba(255,255,255,0.8);
	font-size: 11px;
	margin-top: 4px;
}
.photo-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.photo-lightbox[hidden] { display: none !important; }
.photo-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.92);
}
.photo-lightbox__panel {
	position: relative;
	width: min(1100px, 94vw);
	max-height: 92vh;
	display: flex;
	align-items: center;
	gap: 8px;
}
.photo-lightbox__figure {
	margin: 0;
	flex: 1;
	text-align: center;
}
.photo-lightbox__figure img {
	max-width: 100%;
	max-height: 75vh;
	border-radius: 4px;
}
.photo-lightbox__figure figcaption {
	color: #fff;
	padding: 16px 8px 0;
	text-align: left;
}
.photo-lightbox__figure figcaption p {
	margin: 6px 0;
	font-size: 14px;
	opacity: 0.85;
}
.photo-lightbox__figure time {
	font-size: 12px;
	opacity: 0.65;
}
.photo-lightbox__close {
	position: absolute;
	top: -40px;
	right: 0;
	background: none;
	border: none;
	color: #fff;
	font-size: 36px;
	cursor: pointer;
	line-height: 1;
}
.photo-lightbox__nav {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,0.6);
	background: rgba(0,0,0,0.4);
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	line-height: 1;
}
.photo-lightbox__nav:hover { background: rgba(0,102,204,0.8); border-color: #0066cc; }

@media (max-width: 960px) {
	.video-grid { grid-template-columns: repeat(2, 1fr); }
	.photo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
	.video-grid { grid-template-columns: 1fr; }
	.photo-grid { grid-template-columns: repeat(2, 1fr); }
	.video-featured__title { font-size: 17px; }
	.photo-lightbox__nav { display: none; }
}

/* ── Tournament 3-column home (cricinfo) ── */
.tournament-home-layout {
	display: grid;
	grid-template-columns: 220px 1fr 300px;
	gap: 24px;
	align-items: start;
}
.tournament-left__tabs {
	display: flex;
	gap: 0;
	margin-bottom: 12px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	overflow: hidden;
}
.tournament-left__tab {
	flex: 1;
	text-align: center;
	padding: 10px 8px;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	color: var(--color-muted);
	background: #fff;
}
.tournament-left__tab.is-active {
	background: #0066cc;
	color: #fff;
}
.tournament-left__matches {
	list-style: none !important;
	margin: 0 0 12px;
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}
.tournament-left__matches li { border-bottom: 1px solid var(--color-border); }
.tournament-left__matches li:last-child { border-bottom: none; }
.tournament-left__matches a {
	display: block;
	padding: 12px;
	text-decoration: none;
	color: inherit;
	font-size: 12px;
}
.tournament-left__matches a:hover { background: #f8f9fb; }
.tournament-left__match-label { display: block; color: var(--color-muted); margin-bottom: 4px; }
.tournament-left__match-teams { display: block; font-weight: 700; margin-bottom: 2px; }
.tournament-left__match-score { display: block; color: var(--color-muted); }
.tournament-left__match-result { display: block; font-weight: 600; margin-top: 4px; }
.tournament-left__match-time { display: block; color: var(--color-muted); margin-top: 4px; }
.tournament-left__view-all {
	display: block;
	text-align: center;
	padding: 10px;
	background: #f0f2f5;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--color-text);
	text-decoration: none;
	margin-bottom: 20px;
}
.tournament-left__view-all:hover { background: #e8ecf0; }
.tournament-left__stats { margin-top: 0; }
.tournament-left__stats-list {
	list-style: none !important;
	margin: 0;
	padding: 0 16px 16px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 12px;
}
.tournament-left__stats-list a {
	font-size: 12px;
	color: #0066cc;
	text-decoration: none;
	font-weight: 500;
}
.tournament-left__stats-list a:hover { text-decoration: underline; }
.card__header--inline {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* News feed with images + video play icon */
.tournament-news__hero { margin-bottom: 20px; }
.tournament-news__youtube { margin-bottom: 20px; overflow: hidden; }
.tournament-news__youtube-embed {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	background: #111;
}
.tournament-news__youtube-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.tournament-news__hero-link { text-decoration: none; color: inherit; display: block; }
.tournament-news__hero-image {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #111;
}
.tournament-news__hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tournament-news__hero-text {
	padding: 16px 0 0;
}
.tournament-news__hero-text h2 {
	margin: 0 0 8px;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.25;
	color: var(--color-text);
}
.tournament-news__hero-text p {
	margin: 0;
	font-size: 14px;
	color: var(--color-muted);
	line-height: 1.5;
}
.tournament-news__list {
	list-style: none !important;
	margin: 0;
	padding: 0;
}
.tournament-news__item {
	display: flex;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid var(--color-border);
	text-decoration: none;
	color: inherit;
}
.tournament-news__item:hover h3 { color: #0066cc; }
.tournament-news__thumb {
	flex-shrink: 0;
	width: 160px;
	height: 100px;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	background: #eee;
}
.tournament-news__thumb img { width: 100%; height: 100%; object-fit: cover; }
.tournament-news__content h3 {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}
.tournament-news__content p {
	margin: 0 0 6px;
	font-size: 13px;
	color: var(--color-muted);
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.tournament-news__content time { font-size: 11px; color: var(--color-muted); }
.news-play {
	position: absolute;
	left: 8px;
	bottom: 8px;
	width: 28px;
	height: 28px;
	background: rgba(0,102,204,0.92);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.news-play--lg {
	left: 50%;
	top: 50%;
	bottom: auto;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
}
.news-play--sm { width: 22px; height: 22px; left: 4px; bottom: 4px; }

/* Series listing page */
.series-page { padding: 24px 0 48px; }
.series-page__layout {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 28px;
	align-items: start;
}
.series-filters { padding: 20px !important; }
.series-filters__title {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.series-filters__list {
	list-style: none !important;
	margin: 0 0 20px;
	padding: 0;
}
.series-filters__list a {
	display: block;
	padding: 10px 12px;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text);
	text-decoration: none;
	border-radius: 4px;
}
.series-filters__list a.is-active,
.series-filters__list a:hover {
	background: #0066cc;
	color: #fff;
}
.series-filters__download h4 {
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--color-muted);
}
.series-filters__download a {
	display: block;
	font-size: 12px;
	color: #0066cc;
	text-decoration: none;
	margin-bottom: 8px;
	line-height: 1.4;
}
.series-section { margin-bottom: 32px; }
.series-section__title {
	font-size: 18px;
	font-weight: 800;
	margin: 0 0 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--color-border);
}
.series-section__list {
	list-style: none !important;
	margin: 0;
	padding: 0;
}
.series-section__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid var(--color-border);
}
.series-section__info {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}
.series-section__flags { display: flex; gap: 4px; font-size: 20px; flex-shrink: 0; }
.series-section__info strong { display: block; font-size: 14px; }
.series-section__dates { display: block; font-size: 12px; color: var(--color-muted); margin-top: 2px; }
.series-section__links {
	display: flex;
	gap: 16px;
	flex-shrink: 0;
}
.series-section__links a {
	font-size: 12px;
	font-weight: 600;
	color: #0066cc;
	text-decoration: none;
	white-space: nowrap;
}
.series-section__links a:hover { text-decoration: underline; }

.series-section__links a:hover { text-decoration: underline; }

/* Season Archive */
.season-archive { display: flex; flex-direction: column; gap: 20px; }
.season-archive__decade { padding: 20px 24px !important; }
.season-archive__decade h2 {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 800;
}
.season-archive__years {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
}
.season-archive__years a {
	font-size: 14px;
	font-weight: 600;
	color: #0066cc;
	text-decoration: none;
}
.season-archive__years a:hover { text-decoration: underline; }

/* Smart Stats + Fan Ratings widgets */
.smart-stats__tabs {
	display: flex;
	gap: 0;
	border-bottom: 1px solid var(--color-border);
	padding: 0 12px;
}
.smart-stats__tab {
	padding: 10px 10px;
	font-size: 11px;
	font-weight: 700;
	color: var(--color-muted);
	cursor: pointer;
	border-bottom: 2px solid transparent;
}
.smart-stats__tab.is-active {
	color: #0066cc;
	border-bottom-color: #0066cc;
}
.smart-stats__list,
.fan-ratings__list {
	list-style: none !important;
	margin: 0;
	padding: 0;
}
.smart-stats__list li,
.fan-ratings__list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border-bottom: 1px solid var(--color-border);
	font-size: 13px;
}
.smart-stats__list li:last-child,
.fan-ratings__list li:last-child { border-bottom: none; }
.smart-stats__rank,
.fan-ratings__rank {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #f0f2f5;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	flex-shrink: 0;
}
.smart-stats__list strong,
.fan-ratings__list strong { display: block; font-size: 13px; }
.smart-stats__list small,
.fan-ratings__list small { color: var(--color-muted); font-size: 11px; }
.smart-stats__score {
	margin-left: auto;
	font-weight: 800;
	font-size: 14px;
	color: #0066cc;
}
.fan-ratings__badge {
	margin-left: auto;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--color-green, #d9480f);
	color: #fff;
	font-weight: 800;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

@media (max-width: 1100px) {
	.tournament-home-layout { grid-template-columns: 200px 1fr; }
	.tournament-home-layout .tournament-sidebar { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
	.tournament-home-layout,
	.series-page__layout { grid-template-columns: 1fr; }
	.tournament-news__item { flex-direction: column; }
	.tournament-news__thumb { width: 100%; height: auto; aspect-ratio: 16/10; }
	.series-section__row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 960px) {
	.tournament-page__layout { grid-template-columns: 1fr; }
	.tournament-sidebar { order: 2; }
	.teams-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.teams-grid { grid-template-columns: 1fr; }
	.page-title { font-size: 22px; }
	.match-carousel__card { flex: 0 0 220px; }
}
