/* =========================================================================
   Punjab T20 — main stylesheet
   Mobile-first. Breakpoints: 480 / 768 / 1024 / 1440 / 1920.
   ========================================================================= */

:root {
	/* Brand: deep blue + gold. Variable names keep the "navy" suffix from
	   earlier in the build to avoid a risky mass rename — only the hex
	   values matter here. */
	--pt20-navy: #001870;
	--pt20-navy-dark: #000c3d;
	--pt20-gold: #f7c600;
	--pt20-lime: #a4d65e;
	--pt20-green: #1c8a4b;
	--pt20-red: #d9364a;
	--pt20-grey-900: #1a1f2b;
	--pt20-grey-700: #4a5266;
	--pt20-grey-500: #7c8494;
	--pt20-grey-200: #e6e9ef;
	--pt20-grey-100: #f4f6fa;
	--pt20-white: #ffffff;
	--pt20-black: #000;
	--pt20-radius: 14px;
	--pt20-radius-sm: 8px;
	--pt20-shadow: 0 2px 10px rgba(0, 24, 112, 0.08);
	--pt20-shadow-lg: 0 8px 22px rgba(0, 24, 112, 0.16);
	--pt20-container: 1240px;
	--pt20-header-h: 100px;
	--pt20-transition: 0.2s ease;
	font-size: 16px;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--pt20-grey-900);
	background: var(--pt20-white);
	line-height: 1.6;
	overflow-x: hidden;
}

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

a {
	color: var(--pt20-navy);
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.5em;
	line-height: 1.25;
	font-weight: 800;
	color: var(--pt20-navy-dark);
}

h1 {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
	font-size: 1.15rem;
}

p {
	margin: 0 0 1em;
}

table {
	width: 100%;
	border-collapse: collapse;
}

button {
	font-family: inherit;
	cursor: pointer;
}

iframe {
	border: 0;
	width: 100%;
}

.screen-reader-text {
	position: absolute;
	left: -9999px;
}

.pt20-skip-link:focus {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 9999;
	background: var(--pt20-navy);
	color: var(--pt20-white);
	padding: 10px 16px;
	border-radius: var(--pt20-radius-sm);
}

.pt20-container {
	max-width: var(--pt20-container);
	margin: 0 auto;
	padding: 0 20px;
}

.pt20-container-narrow {
	max-width: 860px;
}

.pt20-text-center {
	text-align: center;
}

/* ---------- Buttons ---------- */
.pt20-btn {
	display: inline-block;
	padding: 12px 26px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.95rem;
	transition: transform var(--pt20-transition), box-shadow var(--pt20-transition), background var(--pt20-transition);
	border: 2px solid transparent;
}

.pt20-btn-primary {
	background: var(--pt20-gold);
	color: var(--pt20-navy-dark);
}

.pt20-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--pt20-shadow-lg);
}

.pt20-btn-outline {
	border-color: var(--pt20-navy);
	color: var(--pt20-navy);
	background: transparent;
}

.pt20-btn-outline:hover {
	background: var(--pt20-navy);
	color: var(--pt20-white);
}

/* ---------- Layout helpers ---------- */
.pt20-grid {
	display: grid;
	gap: 22px;
}

.pt20-grid-3 {
	grid-template-columns: repeat(1, 1fr);
}

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

@media (min-width: 481px) {
	.pt20-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.pt20-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.pt20-grid-4 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1024px) {
	.pt20-grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.pt20-grid-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Marquee player hero banner — one continuous gradient "poster" background
   in the player's own team colours; the full uncropped photo is a layer
   bled in from the left, and the name/role/CTA sit as an overlay on top of
   that same background on the right (not a separate boxed column) — the
   text's left edge intentionally sits over the tail end of the photo box. */
.pt20-marquee-feature-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 28px;
}

/* Icon players: 2 side-by-side columns instead of full-width stacked banners. */
@media (min-width: 640px) {
	.pt20-marquee-feature-list--2col {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.pt20-marquee-feature-list--2col .pt20-marquee-feature {
		min-height: 220px;
	}

	.pt20-marquee-feature-list--2col .pt20-marquee-feature-info {
		min-height: 220px;
		padding: 18px 18px 18px 10px;
		gap: 6px;
	}

	.pt20-marquee-feature-list--2col .pt20-marquee-feature-name {
		font-size: 1.25rem;
	}
}

.pt20-marquee-feature {
	position: relative;
	min-height: 260px;
	border-radius: var(--pt20-radius);
	overflow: hidden;
	background: linear-gradient(100deg, var(--pt20-mf-secondary, var(--pt20-navy-dark)) 0%, var(--pt20-mf-primary, var(--pt20-navy)) 55%, var(--pt20-mf-secondary, var(--pt20-navy-dark)) 100%);
	box-shadow: var(--pt20-shadow);
}

/* Admin-uploaded PNG background (team_players.feature_background) replaces
   the gradient — set via inline `background-image` in the template, which
   overrides just that sub-property; size/position/repeat still come from here. */
.pt20-marquee-feature--has-bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.pt20-marquee-feature-photo {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 48%;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
}

.pt20-marquee-feature-photo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: 100%;
	object-fit: contain;
	object-position: bottom;
	margin-left: 10px;
}

.pt20-marquee-feature-info {
	position: relative;
	z-index: 2;
	margin-left: 48%;
	min-height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	padding: 24px 28px 24px 12px;
	color: var(--pt20-white);
}

.pt20-marquee-feature-eyebrow {
	color: var(--pt20-gold);
	font-weight: 800;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.pt20-marquee-captain-label {
	display: block;
	color: var(--pt20-gold);
	font-weight: 800;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.pt20-marquee-feature-name {
	margin: 0;
	font-size: 1.6rem;
	line-height: 1.2;
	color: var(--pt20-white);
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.pt20-marquee-feature-role {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
}

.pt20-marquee-feature-info .pt20-btn {
	width: fit-content;
	margin-top: 6px;
}

@media (max-width: 640px) {
	.pt20-marquee-feature {
		display: flex;
		flex-direction: row;
		min-height: 0;
	}

	.pt20-marquee-feature-photo {
		position: relative;
		width: 100%;
		height: auto !important;
	}

	.pt20-marquee-feature-info {
		width: 100%;
		margin-left: 0;
		min-height: 0;
		padding: 20px;
		text-align: center;
		align-items: center;
	}

	.pt20-marquee-feature-info .pt20-btn {
		margin: 6px auto 0;
	}

	.pt20-marquee-feature-list {
		padding: 2px;
	}
}

.pt20-section {
	padding: 56px 0;
}

.pt20-section-alt {
	background: var(--pt20-grey-100);
}

.pt20-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}

.footerSponsor {
	justify-content: center !important;
}

.pt20-section-more {
	font-weight: 700;
	color: var(--pt20-navy);
	white-space: nowrap;
}

.pt20-empty {
	color: var(--pt20-grey-500);
	padding: 24px 0;
}

.pt20-lead-text {
	font-size: 1.1rem;
	color: var(--pt20-grey-700);
	text-align: center;
}

.pt20-active-season-label {
	display: inline-block;
	background: var(--pt20-navy);
	color: var(--pt20-white);
	font-weight: 700;
	font-size: 0.85rem;
	padding: 5px 14px;
	border-radius: 999px;
	margin-bottom: 14px;
}

/* !important is deliberate here: these are visibility TOGGLES that must
   always win regardless of what other component rules declare for
   `display` on the same element (e.g. .pt20-points-cards sets its own
   `display: flex` for layout, which would otherwise tie in specificity
   and — being later in the file — silently cancel the "hide on desktop"
   rule, showing both the table and the card list at once). */
.pt20-desktop-only {
	display: none !important;
}

.pt20-mobile-only {
	display: block !important;
}

@media (min-width: 768px) {
	.pt20-desktop-only {
		display: table !important;
	}

	.pt20-mobile-only {
		display: none !important;
	}
}

/* ---------- Breadcrumbs (pill bar, home icon, chevron separators) ---------- */
.pt20-breadcrumbs-bar {
	padding: 0px 0px 18px 0;
}

.pt20-breadcrumbs {
	margin: 0;
	display: block;
}

.pt20-breadcrumbs ol {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	background: linear-gradient(135deg, var(--pt20-navy), var(--pt20-navy-dark));
	color: var(--pt20-white);
	padding: 10px 20px;
	border-radius: 0px;
	box-shadow: var(--pt20-shadow);
	margin: 0;
	width: 100%;
}

.pt20-breadcrumbs-bar .pt20-container {
	width: 100%;
	max-width: 100%;
	padding: 0;
}

.pt20-breadcrumbs li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--pt20-white);
}

.pt20-breadcrumbs li:not(:last-child)::after {
	content: '›';
	margin-left: 10px;
	opacity: 0.65;
	font-weight: 400;
}

.pt20-breadcrumbs a {
	color: var(--pt20-white);
}

.pt20-breadcrumbs a:hover {
	opacity: 0.8;
}

.pt20-breadcrumbs li[aria-current="page"] {
	opacity: 0.85;
}

.pt20-breadcrumb-home a {
	display: flex;
}

.pt20-breadcrumb-home svg {
	width: 16px;
	height: 16px;
	fill: var(--pt20-white);
	display: block;
}

/* =========================================================================
   Header
   ========================================================================= */
.pt20-site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: var(--pt20-white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	height: var(--pt20-header-h);
	background-image: url(https://punjabt20.com/wp-content/uploads/2026/08/bg.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
}

.pt20-header-inner {
	max-width: var(--pt20-container);
	margin: 0 auto;
	padding: 0 20px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.pt20-header-logo img,
.pt20-logo-fallback img {
	height: 44px;
	width: auto;
}

.custom-logo-link img {
	height: 100px;
	width: auto;
	padding: 5px 0px;
}

.pt20-primary-nav .pt20-nav-list {
	display: flex;
	gap: 6px;
	align-items: center;
}

.pt20-primary-nav .pt20-nav-list a {
	display: block;
	padding: 10px 14px;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--pt20-grey-900);
	border-radius: var(--pt20-radius-sm);
	transition: background var(--pt20-transition), color var(--pt20-transition);
}

.pt20-primary-nav .pt20-nav-list a:hover,
.pt20-primary-nav .pt20-nav-list li.current-menu-item>a {
	background: var(--pt20-navy);
	color: var(--pt20-white);
}

.pt20-header-social {
	display: none;
	gap: 8px;
}

.pt20-header-social a {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--pt20-grey-100);
	color: var(--pt20-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
	font-weight: 800;
	transition: background var(--pt20-transition), color var(--pt20-transition);
}

.pt20-header-social a:hover {
	background: var(--pt20-navy);
	color: var(--pt20-white);
}

@media (min-width: 1024px) {
	.pt20-header-social {
		display: flex;
	}
}

.pt20-nav-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 0;
	padding: 0;
	position: relative;
	z-index: 460;
	/* above .pt20-primary-nav (450) so the open/close (X) icon stays visible once the sliding panel covers this corner */
}

.pt20-nav-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--pt20-navy-dark);
	border-radius: 2px;
	transition: transform var(--pt20-transition), opacity var(--pt20-transition);
}

.pt20-nav-toggle.is-active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.pt20-nav-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.pt20-nav-toggle.is-active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.pt20-nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 12, 61, 0.5);
	z-index: 400;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--pt20-transition);
}

.pt20-nav-overlay.is-active {
	opacity: 1;
	pointer-events: auto;
}

@media (max-width: 1023px) {
	.pt20-nav-toggle {
		display: flex;
	}

	.pt20-primary-nav {
		position: fixed;
		top: 0;
		right: 0;
		height: 100vh;
		width: min(320px, 84vw);
		background: var(--pt20-white);
		z-index: 450;
		transform: translateX(100%);
		transition: transform var(--pt20-transition);
		padding: calc(var(--pt20-header-h) + 20px) 20px 20px;
		overflow-y: auto;
		box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
	}

	.pt20-primary-nav.is-active {
		transform: translateX(0);
	}

	.pt20-primary-nav .pt20-nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}

	.pt20-primary-nav .pt20-nav-list a {
		padding: 14px 16px;
	}
}

@media (min-width: 1024px) {
	.pt20-nav-toggle {
		display: none;
	}
}

/* =========================================================================
   Hero slider
   ========================================================================= */
.pt20-hero {
	position: relative;
}

.pt20-hero-slider {
	position: relative;
	height: 100vh;
	min-height: 380px;
	max-height: 720px;
	overflow: hidden;
}

.pt20-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease;
}

.pt20-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
}

.pt20-hero-slide-media,
.pt20-hero-slide-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pt20-hero-slide-overlay {
	position: absolute;
	inset: 0;
	/* background: linear-gradient(180deg, rgb(0 12 61 / 16%) 0%, rgb(0 12 61 / 49%) 100%); */
}

.pt20-hero-slide-content {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 30px 24px 60px;
	color: var(--pt20-white);
	max-width: 720px;
	z-index: 2;
}

.pt20-hero-slide-content h1 {
	color: var(--pt20-white);
	font-size: clamp(1.7rem, 5vw, 3.2rem);
	margin-bottom: 0.4em;
	display: none;
}

.pt20-hero-slide-content p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.05rem;
	margin-bottom: 1.3em;
}

.pt20-hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	background: rgba(255, 255, 255, 0.2);
	color: var(--pt20-white);
	border: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 1.6rem;
	line-height: 1;
	backdrop-filter: blur(4px);
	transition: background var(--pt20-transition);
}

.pt20-hero-arrow:hover {
	background: rgba(255, 255, 255, 0.4);
}

.pt20-hero-arrow-prev {
	left: 16px;
}

.pt20-hero-arrow-next {
	right: 16px;
}

.pt20-hero-dots {
	position: absolute;
	bottom: 20px;
	right: 24px;
	display: flex;
	gap: 8px;
	z-index: 3;
}

.pt20-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid var(--pt20-white);
	background: transparent;
	padding: 0;
}

.pt20-hero-dot.is-active {
	background: var(--pt20-gold);
	border-color: var(--pt20-gold);
}

@media (max-width: 767px) {
	.pt20-hero-slider {
		height: 70vh;
		min-height: 430px;
	}

	.pt20-match-tab {
		font-size: 12px !important;
		padding: 10px 10px !important;
	}

	.pt20-home-marquee-captain-corner {
		top: 40px !important;
		right: 30px !important;
	}

	.pt20-home-marquee-name {
		font-size: 20px !important;
	}

	.pt20-match-squads-body {
		grid-template-columns: 1fr 1fr !important;
	}

	.pt20-match-squad-row {
		padding: 5px 5px !important;
	}

	.pt20-match-squads-team {
		line-height: normal;
	}

	.pt20-hero-arrow {
		display: none;
	}

	.pt20-team-card .pt20-btn-outline {
		padding: 2px 10px;
		font-size: 10px;
		margin-bottom: 5px;
	}

	.pt20-team-card-body {
		padding: 5px !important;
	}

	.pt20-team-card-name {
		font-size: 15px;
	}

	.pt20-team-card-city {
		margin-bottom: 4px !important;
	}

	.pt20-grid.pt20-grid-3.pt20-home-teams-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}

/* =========================================================================
   About League — homepage section right after the hero (2nd position)
   ========================================================================= */
.pt20-about-hero {
	background: url(https://punjabt20.com/wp-content/uploads/2026/08/bg.jpg);
	background-size: cover;
	padding: 60px 0;
	background-repeat: no-repeat;
	background-position: center;
}

.pt20-about-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
	align-items: center;
}

@media (min-width: 900px) {
	.pt20-about-hero-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.pt20-about-hero-eyebrow {
	display: block;
	color: var(--pt20-gold);
	font-weight: 800;
	font-size: 25px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}

.pt20-about-hero-heading {
	color: var(--pt20-white);
	margin-bottom: 18px;
}

.pt20-about-hero-text p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1rem;
}

.pt20-about-hero-media {
	border-radius: var(--pt20-radius);
	overflow: hidden;
	box-shadow: var(--pt20-shadow-lg);
}

.pt20-about-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4/3;
}

/* =========================================================================
   Homepage "Matches + Points Table" combined dark widget
   ========================================================================= */
.pt20-home-mp {
	background: var(--pt20-navy-dark);
	padding: 56px 0;
	background-image: url(https://punjabt20.com/wp-content/uploads/2026/08/Untitled-3-01-1.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.pt20-footer-panel img.emoji {
	display: none !important;
}

section.pt20-section.pt20-section-teams {
	position: relative;
}

section.pt20-section.pt20-section-teams::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(https://punjabt20.com/wp-content/uploads/2026/08/banner3.webp);
	width: 100%;
	height: 100%;
	background-size: contain;
	opacity: 0.5;
	z-index: -1;
}

#pt20-main-content {
	position: relative;
}

#pt20-main-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(https://punjabt20.com/wp-content/uploads/2026/08/banner3.webp);
	width: 100%;
	height: 100%;
	background-size: contain;
	opacity: 0.5;
	z-index: -1;
}

body.home #pt20-main-content::before {
	display: none;
}

.pt20-home-mp .pt20-section-head h2 {
	color: var(--pt20-white);
}

.pt20-home-mp .pt20-section-more {
	color: var(--pt20-gold);
}

.pt20-home-mp-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: start;
}

@media (min-width: 900px) {
	.pt20-home-mp-grid {
		grid-template-columns: 1.3fr 1fr;
	}
}

.pt20-home-mp-col {
	min-width: 0;
}

.pt20-empty-dark {
	color: rgba(255, 255, 255, 0.6);
}

/* Coverflow match stack — one active card centred in front, one card
   peeking behind on each side (offsets/scale/opacity driven by JS via
   --pt20-x/--pt20-scale/--pt20-opacity/--pt20-z custom properties set in
   initHomeMatchStack()). Cards are absolutely positioned so only the
   active one participates in layout height — the wrapper carries a fixed
   min-height instead. */
.pt20-mini-match-carousel-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
}

.pt20-mini-match-stack {
	position: relative;
	flex: 1 1 auto;
	min-height: 380px;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.pt20-carousel-arrow {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.08);
	color: var(--pt20-white);
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 6;
}

.pt20-carousel-arrow:hover {
	background: var(--pt20-gold);
	color: var(--pt20-navy-dark);
	border-color: var(--pt20-gold);
}

.pt20-mini-match-card {
	position: absolute;
	top: 0;
	left: 50%;
	width: 270px;
	transform: translateX(-50%) translateX(var(--pt20-x, 0px)) scale(var(--pt20-scale, 1));
	opacity: var(--pt20-opacity, 0);
	z-index: var(--pt20-z, 1);
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
	background: linear-gradient(160deg, var(--pt20-row-accent, var(--pt20-navy)), var(--pt20-navy-dark));
	border-radius: var(--pt20-radius);
	padding: 22px 18px;
	color: var(--pt20-white);
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.08);
	pointer-events: none;
}

.pt20-mini-match-card.is-active {
	pointer-events: auto;
}

.pt20-mini-match-card.is-prev,
.pt20-mini-match-card.is-next {
	pointer-events: auto;
	cursor: pointer;
}

.pt20-mini-match-status {
	align-self: center;
	background: rgba(255, 255, 255, 0.15);
	padding: 5px 14px;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.pt20-mini-match-status.status-completed {
	background: var(--pt20-green);
}

.pt20-mini-match-status.status-live {
	background: var(--pt20-red);
}

.pt20-mini-match-meta {
	text-align: center;
	font-size: 0.76rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
}

.pt20-mini-match-teams {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.pt20-mini-match-team {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	flex: 1;
	min-width: 0;
}

.pt20-mini-match-logo,
.pt20-mini-match-logo img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	padding: 5px;
	border: 2px solid var(--pt20-gold);
}

.pt20-mini-match-team-name {
	font-weight: 800;
	font-size: 0.86rem;
	text-align: center;
}

.pt20-mini-match-score {
	font-weight: 800;
	font-size: 1.05rem;
}

.pt20-mini-match-score small {
	font-weight: 500;
	opacity: 0.75;
	font-size: 0.72rem;
}

.pt20-mini-match-vs {
	font-size: 0.74rem;
	font-weight: 800;
	opacity: 0.55;
}

.pt20-mini-match-result {
	text-align: center;
	font-size: 0.76rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
}

.pt20-mini-match-btn {
	text-align: center;
	background: var(--pt20-gold);
	color: var(--pt20-navy-dark);
	font-weight: 800;
	font-size: 0.78rem;
	text-transform: uppercase;
	padding: 11px;
	border-radius: var(--pt20-radius-sm);
	letter-spacing: 0.03em;
}

/* Compact dark points table */
.pt20-mini-points-table-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--pt20-radius);
	overflow: hidden;
}

.pt20-mini-points-table {
	width: 100%;
	border-collapse: collapse;
	color: var(--pt20-white);
	min-width: 420px;
}

.pt20-mini-points-table th,
.pt20-mini-points-table td {
	padding: 10px 8px;
	text-align: center;
	font-size: 0.82rem;
}

.pt20-mini-points-table thead th {
	background: rgba(255, 255, 255, 0.1);
	text-transform: uppercase;
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.8);
}

.pt20-mini-points-table tbody tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pt20-mini-points-team-col {
	text-align: left !important;
}

.pt20-mini-points-team-col a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--pt20-white);
	font-weight: 700;
}

.pt20-mini-points-table tr.is-qualified {
	background: rgba(184, 59, 214, 0.18);
}

.pt20-mini-points-table tr.is-qualified td {
	color: var(--pt20-white);
	font-weight: 800;
}

/* =========================================================================
   Match row — full-width fixture/result rows (see reference redesign)
   ========================================================================= */
.pt20-match-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.pt20-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
}

.status-upcoming,
.pt20-pill-upcoming {
	background: #e8edfb;
	color: var(--pt20-navy);
}

.status-live,
.pt20-pill-live {
	background: #fdeaea;
	color: var(--pt20-red);
}

.status-completed,
.pt20-pill-completed {
	background: #e6f5ec;
	color: var(--pt20-green);
}

.status-abandoned,
.pt20-pill-abandoned,
.status-postponed,
.pt20-pill-postponed {
	background: var(--pt20-grey-200);
	color: var(--pt20-grey-700);
}

.pt20-live-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--pt20-red);
	animation: pt20-pulse 1.2s infinite;
}

@keyframes pt20-pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}
}

.pt20-match-row {
	background: var(--pt20-white);
	border-radius: var(--pt20-radius-sm);
	box-shadow: var(--pt20-shadow);
	border-left: 6px solid var(--pt20-row-accent, var(--pt20-navy));
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	padding: 16px 20px;
	transition: box-shadow var(--pt20-transition);
}

.pt20-match-row:hover {
	box-shadow: var(--pt20-shadow-lg);
}

.pt20-match-row-date {
	min-width: 130px;
}

.pt20-row-day {
	font-weight: 800;
	font-size: 0.88rem;
	color: var(--pt20-grey-900);
}

.pt20-row-time {
	font-weight: 700;
	font-size: 0.82rem;
	color: var(--pt20-navy);
}

.pt20-row-venue {
	font-size: 0.76rem;
	color: var(--pt20-grey-500);
	margin-top: 4px;
	line-height: 1.4;
}

.pt20-row-match-no {
	font-weight: 800;
	font-size: 0.8rem;
	color: var(--pt20-navy);
	text-transform: uppercase;
}

.pt20-match-row-teams {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 1 1 240px;
	justify-content: center;
}

.pt20-row-team {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 0.92rem;
}

.pt20-row-team-logo,
.pt20-row-team-logo img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.pt20-row-vs {
	color: var(--pt20-grey-500);
	font-weight: 800;
	font-size: 0.85rem;
}

.pt20-row-live {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	font-weight: 800;
	color: var(--pt20-red);
	font-size: 0.85rem;
	letter-spacing: 0.04em;
}

.pt20-row-live-score {
	color: var(--pt20-grey-900);
	font-weight: 700;
	font-size: 0.85rem;
}

.pt20-match-row-countdown {
	display: flex;
	gap: 6px;
}

.pt20-countdown-box {
	background: var(--pt20-navy-dark);
	color: var(--pt20-white);
	border-radius: 6px;
	padding: 6px 10px;
	text-align: center;
	min-width: 46px;
}

.pt20-cd-num {
	display: block;
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--pt20-gold);
	line-height: 1.2;
}

.pt20-cd-label {
	display: block;
	font-size: 0.6rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.pt20-match-row-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
	flex-wrap: wrap;
}

.pt20-btn-sm {
	padding: 8px 16px;
	font-size: 0.82rem;
}

.pt20-btn-cal {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.8rem;
	background: var(--pt20-navy-dark);
	color: var(--pt20-white);
	white-space: nowrap;
}

/* Result rows stack the centre block vertically (names → logos/scores → toss) */
.pt20-match-row-result {
	align-items: center;
}

.pt20-match-row-result-center {
	flex: 1 1 320px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.pt20-result-names {
	display: flex;
	align-items: center;
	gap: 16px;
	font-weight: 800;
	font-size: 0.85rem;
	letter-spacing: 0.02em;
	text-align: center;
}

.pt20-result-cols {
	display: flex;
	align-items: flex-start;
	gap: 50px;
}

.pt20-result-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.pt20-result-col img {
	width: 46px;
	height: 46px;
	object-fit: contain;
}

.pt20-result-score {
	font-weight: 800;
	font-size: 1.05rem;
	color: var(--pt20-navy-dark);
}

.pt20-result-score small {
	font-weight: 600;
	color: var(--pt20-grey-500);
	font-size: 0.7rem;
}

.pt20-match-row-toss {
	background: var(--pt20-grey-100);
	color: var(--pt20-grey-700);
	font-size: 0.7rem;
	font-weight: 700;
	padding: 6px 16px;
	border-radius: 6px;
	margin: 0;
	text-align: center;
}

.pt20-match-row-result-side {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	min-width: 180px;
}

.pt20-match-result {
	font-size: 0.92rem;
	font-weight: 800;
	color: var(--pt20-green);
	margin: 0;
}

@media (max-width: 767px) {
	.pt20-match-row {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.pt20-match-row-teams {
		justify-content: space-between;
		flex: 1 1 100px;
	}

	.pt20-match-row-actions {
		margin-left: 0;
		justify-content: center;
	}

	.pt20-match-row-result-side {
		align-items: center;
		width: 100%;
	}

	.pt20-result-cols {
		gap: 30px;
	}

	.pt20-match-row-countdown {
		justify-content: center;
	}
}

/* =========================================================================
   Team card
   ========================================================================= */
.pt20-team-card {
	background: var(--pt20-white);
	border-radius: var(--pt20-radius);
	overflow: hidden;
	box-shadow: var(--pt20-shadow);
	border: 1px solid var(--pt20-grey-200);
	border-top: 4px solid var(--pt20-team-color, var(--pt20-navy));
	transition: box-shadow var(--pt20-transition), transform var(--pt20-transition);
}

.pt20-team-card:hover {
	box-shadow: var(--pt20-shadow-lg);
	transform: translateY(-4px);
}

.pt20-team-card-banner {
	aspect-ratio: 16/9;
	overflow: hidden;
	background: linear-gradient(135deg, var(--pt20-team-color, var(--pt20-navy)), var(--pt20-team-color-2, var(--pt20-navy-dark)));
}

.pt20-team-card-banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pt20-team-card-body {
	padding: 18px;
	text-align: center;
	position: relative;
}

.pt20-team-card-logo {
	width: 64px;
	height: 64px;
	object-fit: contain;
	margin: -50px auto 10px;
	background: var(--pt20-white);
	border-radius: 50%;
	border: 3px solid var(--pt20-team-color, var(--pt20-white));
	box-shadow: var(--pt20-shadow);
}

.pt20-team-card-name {
	margin-bottom: 2px;
}

.pt20-team-card-city {
	color: var(--pt20-grey-500);
	margin-bottom: 14px;
}

.pt20-team-card .pt20-btn-outline {
	border-color: var(--pt20-team-color, var(--pt20-navy));
	color: var(--pt20-team-color, var(--pt20-navy));
}

.pt20-team-card .pt20-btn-outline:hover {
	background: var(--pt20-team-color, var(--pt20-navy));
	color: var(--pt20-white);
}

/* =========================================================================
   Player card
   ========================================================================= */
.pt20-player-card {
	background: var(--pt20-white);
	border-radius: var(--pt20-radius);
	overflow: hidden;
	border: 1px solid var(--pt20-grey-200);
	box-shadow: var(--pt20-shadow);
	transition: transform var(--pt20-transition);
}

.pt20-player-card:hover {
	transform: translateY(-4px);
}

.pt20-player-card-photo {
	position: relative;
	aspect-ratio: 3/4;
	background: #e2e2e2;
	overflow: hidden;
}

.pt20-player-card-photo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.pt20-role-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
	color: var(--pt20-white);
}

.role-bat {
	background: var(--pt20-navy);
}

.role-bowl {
	background: var(--pt20-red);
}

.role-allround {
	background: var(--pt20-green);
}

.role-wk {
	background: #8a5cf6;
}

.pt20-jersey-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: var(--pt20-gold);
	color: var(--pt20-navy-dark);
	font-weight: 800;
	font-size: 0.75rem;
	padding: 4px 9px;
	border-radius: 999px;
}

.role-unknown {
	background: var(--pt20-grey-500);
}

.pt20-captain-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--pt20-gold);
	color: var(--pt20-navy-dark);
	font-size: 0.7rem;
	font-weight: 800;
	vertical-align: middle;
}

.pt20-category-badge {
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
	color: #fff;
	font-weight: 800;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 4px 9px;
	border-radius: 999px;
	text-align: center;
}

.category-marquee {
	background: rgba(0, 0, 0, 0.65);
	color: var(--pt20-gold);
}

.category-icon {
	background: rgba(0, 24, 112, 0.88);
}

.category-aplus {
	background: rgba(0, 60, 180, 0.85);
}

.category-default {
	background: rgba(0, 0, 0, 0.55);
}

.pt20-player-card-body {
	padding: 14px;
	text-align: center;
}

.pt20-player-card-name {
	font-size: 1rem;
	margin-bottom: 2px;
}

.pt20-player-card-team {
	color: var(--pt20-grey-500);
	font-size: 0.85rem;
	margin-bottom: 10px;
}

.pt20-player-card-link {
	font-weight: 700;
	font-size: 0.85rem;
}

/* =========================================================================
   News card
   ========================================================================= */
.pt20-news-card {
	background: var(--pt20-white);
	border-radius: var(--pt20-radius);
	overflow: hidden;
	border: 1px solid var(--pt20-grey-200);
	box-shadow: var(--pt20-shadow);
	transition: transform var(--pt20-transition);
}

.pt20-news-card:hover {
	transform: translateY(-4px);
}

.pt20-news-card-thumb {
	display: block;
	position: relative;
	aspect-ratio: 16/9;
	overflow: hidden;
	background: var(--pt20-grey-200);
}

.pt20-news-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pt20-news-card-cat {
	position: absolute;
	bottom: 10px;
	left: 10px;
	background: var(--pt20-gold);
	color: var(--pt20-navy-dark);
	font-weight: 800;
	font-size: 0.7rem;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
}

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

.pt20-news-card-date {
	color: var(--pt20-grey-500);
	font-size: 0.8rem;
	font-weight: 700;
}

.pt20-news-card-title {
	font-size: 1.05rem;
	margin: 6px 0 8px;
}

.pt20-news-card-title a {
	color: var(--pt20-grey-900);
}

.pt20-news-card-excerpt {
	color: var(--pt20-grey-700);
	font-size: 0.9rem;
	margin: 0;
}

.pt20-news-card-source {
	color: var(--pt20-grey-500);
	font-size: 0.76rem;
	font-style: italic;
	margin: 8px 0 0;
}

/* Homepage Latest News cards (template-parts/news-card-home.php) — headline
   first, date+excerpt inline in one line, "View More" link at the bottom. */
/* Plain (no promo banner set): 4 even columns, 2 rows of 4. */
.pt20-news-grid-v2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

@media (min-width: 768px) {
	.pt20-news-grid-v2 {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* With a promo banner set: 12-column override so row 1 is 2 narrow news
   cards + 1 wide promo tile (3+3+6), while later rows fall back to 3 even
   columns (4+4+4). */
@media (min-width: 768px) {
	.pt20-news-grid-v2--promo {
		grid-template-columns: repeat(12, 1fr);
	}

	.pt20-news-grid-v2--promo .pt20-news-card-v2 {
		grid-column: span 3;
	}

	.pt20-news-grid-v2--promo .pt20-news-card-v2--narrow {
		grid-column: span 3;
	}

	.pt20-news-grid-v2--promo .pt20-news-promo-card {
		grid-column: span 6;
	}
}

.pt20-news-promo-card {
	display: block;
	border-radius: var(--pt20-radius);
	overflow: hidden;
	box-shadow: var(--pt20-shadow);
}

.pt20-news-promo-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pt20-news-card-v2 {
	display: flex;
	flex-direction: column;
	background: var(--pt20-white);
	border-radius: var(--pt20-radius);
	overflow: hidden;
	box-shadow: var(--pt20-shadow);
	border: 1px solid var(--pt20-grey-200);
	transition: transform var(--pt20-transition), box-shadow var(--pt20-transition);
}

.pt20-news-card-v2:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

.pt20-news-card-v2-thumb {
	display: block;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: var(--pt20-grey-200);
}

.pt20-news-card-v2-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--pt20-transition);
}

.pt20-news-card-v2:hover .pt20-news-card-v2-thumb img {
	transform: scale(1.06);
}

.pt20-news-card-v2-body {
	padding: 10px 10px 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.pt20-news-card-v2-title {
	margin: 0;
	font-size: 1rem;
	line-height: 1.4;
}

.pt20-news-card-v2-title a {
	color: var(--pt20-navy);
	font-weight: 800;
}

.pt20-news-card-v2-title a:hover {
	text-decoration: underline;
}

.pt20-news-card-v2-meta {
	margin: 0;
	font-size: 0.85rem;
	color: var(--pt20-grey-700);
	line-height: 1.5;
}

.pt20-news-card-v2-meta strong {
	color: var(--pt20-grey-900);
}

.pt20-news-card-v2-source {
	margin: 0;
	font-size: 0.76rem;
	color: var(--pt20-grey-500);
	font-style: italic;
	display: none;
}

.pt20-news-card-v2-more {
	margin-top: auto;
	padding-top: 4px;
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--pt20-navy);
}

.pt20-news-card-v2-more:hover {
	color: var(--pt20-red);
}

/* =========================================================================
   Points table
   ========================================================================= */
.pt20-points-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: var(--pt20-white);
	min-width: 720px;
}

.pt20-points-table th,
.pt20-points-table td {
	padding: 14px 12px;
	text-align: center;
	border-bottom: 1px solid var(--pt20-grey-200);
	white-space: nowrap;
}

.pt20-points-table thead th {
	background: var(--pt20-navy-dark);
	color: var(--pt20-white);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.pt20-points-team-col {
	text-align: left !important;
}

.pt20-points-team {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	color: var(--pt20-grey-900);
}

.pt20-points-team-logo,
.pt20-points-team-logo img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.pt20-qualifying-row {
	background: #fff9ec;
}

.pt20-qualifier-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #b83bd6;
	color: var(--pt20-white);
	font-size: 0.62rem;
	font-weight: 800;
}

.pt20-col-won {
	color: var(--pt20-green);
	font-weight: 800;
}

.pt20-col-lost {
	color: var(--pt20-red);
	font-weight: 800;
}

.pt20-form-cell {
	display: flex;
	gap: 4px;
	justify-content: center;
}

.pt20-form-pip {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.68rem;
	font-weight: 800;
	color: var(--pt20-white);
}

.pt20-form-w {
	background: var(--pt20-green);
}

.pt20-form-l {
	background: var(--pt20-red);
}

.pt20-form-nr {
	background: var(--pt20-grey-500);
}

.pt20-points-cards {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pt20-points-card {
	background: var(--pt20-white);
	border: 1px solid var(--pt20-grey-200);
	border-radius: var(--pt20-radius-sm);
	padding: 12px 14px;
	box-shadow: var(--pt20-shadow);
}

.pt20-points-card-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.pt20-points-pos {
	font-weight: 800;
	color: var(--pt20-grey-500);
	width: 22px;
}

.pt20-points-pts {
	margin-left: auto;
	font-weight: 800;
	color: var(--pt20-navy);
}

.pt20-points-card-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 0.82rem;
	color: var(--pt20-grey-700);
}

.pt20-points-card-form {
	display: flex;
	gap: 4px;
	margin-top: 8px;
}

.pt20-points-legend {
	font-size: 0.8rem;
	color: var(--pt20-grey-500);
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Dark page hero banner (Matches / Points Table) */
.pt20-page-hero {
	background: var(--pt20-navy-dark);
	padding: 40px 0;
}

.pt20-page-hero-title {
	color: var(--pt20-white);
	text-transform: uppercase;
	margin: 0;
	letter-spacing: 0.02em;
}

/* =========================================================================
   Top performers / leaderboard
   ========================================================================= */
.pt20-tabs-nav {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	margin-bottom: 20px;
	padding-bottom: 4px;
}

.pt20-tab-btn {
	background: var(--pt20-white);
	border: 1px solid var(--pt20-grey-200);
	padding: 9px 18px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.88rem;
	white-space: nowrap;
	color: var(--pt20-grey-700);
	transition: background var(--pt20-transition), color var(--pt20-transition);
}

.pt20-tab-btn.is-active,
.pt20-tab-btn:hover {
	background: var(--pt20-navy);
	color: var(--pt20-white);
	border-color: var(--pt20-navy);
}

.pt20-leaderboard-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pt20-leaderboard-row {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--pt20-white);
	border: 1px solid var(--pt20-grey-200);
	border-radius: var(--pt20-radius-sm);
	padding: 10px 16px;
}

.pt20-leaderboard-rank {
	font-weight: 800;
	color: var(--pt20-grey-500);
	width: 30px;
}

.pt20-leaderboard-photo {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
}

.pt20-leaderboard-name {
	flex: 1;
	display: flex;
	flex-direction: column;
	font-weight: 700;
}

.pt20-leaderboard-name small {
	color: var(--pt20-grey-500);
	font-weight: 500;
	font-size: 0.78rem;
}

.pt20-leaderboard-value {
	font-weight: 800;
	color: var(--pt20-navy);
	text-align: right;
}

.pt20-leaderboard-value small {
	display: block;
	color: var(--pt20-grey-500);
	font-weight: 500;
	font-size: 0.72rem;
}

/* =========================================================================
   Sponsors
   ========================================================================= */
.pt20-sponsors-banner {
	margin-bottom: 32px;
}

.pt20-sponsors-banner img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--pt20-radius);
}


.pt20-sponsor-tiers {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.pt20-sponsor-tier-title {
	text-align: center;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--pt20-grey-600, #555);
	margin: 0 0 14px;
}

.pt20-sponsor-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: center;
	justify-content: center;
}

h2.footerHAb {
	color: #fff;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 20px;
}

.pt20-sponsor-logo {
	background: var(--pt20-white);
	border: 1px solid var(--pt20-grey-200);
	border-radius: var(--pt20-radius-sm);
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pt20-sponsor-logo img {
	max-height: 50px;
	width: auto;
	filter: grayscale(20%);
}

/* =========================================================================
   Leadership / Chairman
   ========================================================================= */
.pt20-leadership-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}

.pt20-leadership-card {
	text-align: center;
	background: var(--pt20-white);
	border-radius: var(--pt20-radius);
	padding: 20px;
	box-shadow: var(--pt20-shadow);
}

.pt20-leadership-card img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%;
	margin: 0 auto 14px;
}

.pt20-leadership-designation {
	color: var(--pt20-gold);
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.pt20-leadership-bio {
	font-size: 0.88rem;
	color: var(--pt20-grey-700);
}

.pt20-chairman-block {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
	padding: 20px 0;
}

.pt20-chairman-photo img {
	width: 100%;
	max-width: 280px;
	margin: 0 auto;
	border-radius: var(--pt20-radius);
	object-fit: cover;
	aspect-ratio: 3/4;
}

.pt20-chairman-message {
	font-style: italic;
	color: var(--pt20-grey-700);
	font-size: 1.05rem;
}

.pt20-chairman-name {
	font-weight: 800;
	margin-top: 14px;
}

.pt20-chairman-name span {
	display: block;
	font-weight: 500;
	color: var(--pt20-grey-500);
	font-size: 0.85rem;
}

@media (min-width: 768px) {
	.pt20-chairman-block {
		grid-template-columns: 280px 1fr;
	}
}

/* =========================================================================
   Video / Gallery
   ========================================================================= */
.pt20-video-card {
	position: relative;
	display: block;
	border-radius: var(--pt20-radius);
	overflow: hidden;
	aspect-ratio: 16/9;
	background: var(--pt20-navy);
}

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

.pt20-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 54px;
	height: 54px;
	background: rgba(0, 0, 0, 0.55);
	color: var(--pt20-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.pt20-video-title {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 12px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
	color: var(--pt20-white);
	font-weight: 700;
	font-size: 0.9rem;
}

.pt20-video-embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	border-radius: var(--pt20-radius);
	overflow: hidden;
	margin-bottom: 20px;
}

.pt20-video-embed iframe,
.pt20-video-embed video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: #000;
}

.pt20-video-embed video {
	object-fit: contain;
}

.pt20-live-scoring {
	border-radius: var(--pt20-radius);
	overflow: hidden;
	box-shadow: var(--pt20-shadow);
}

.pt20-live-scoring iframe {
	display: block;
	width: 100%;
	height: 80vh;
	min-height: 600px;
	border: 0;
}

.pt20-anthem-video+.pt20-anthem-video {
	margin-top: 20px;
}

@media (max-width: 767px) {
	.pt20-anthem-video-desktop {
		display: none;
	}
}

@media (min-width: 768px) {
	.pt20-anthem-video-mobile {
		display: none;
	}
}

/* Homepage Latest Videos — bento grid: row 1 is two equal wide tiles, row 2
   is three equal narrower tiles (repeats every 5 cards). Play/share/type
   badges + title sit as an overlay on the thumbnail, same language as the
   Photo Gallery cards above. */
.pt20-video-grid-v2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 768px) {
	.pt20-video-grid-v2 {
		grid-template-columns: repeat(6, 1fr);
	}

	.pt20-video-grid-v2 .pt20-video-card-v2:nth-child(5n+1),
	.pt20-video-grid-v2 .pt20-video-card-v2:nth-child(5n+2) {
		grid-column: span 3;
	}

	.pt20-video-grid-v2 .pt20-video-card-v2:nth-child(5n+3),
	.pt20-video-grid-v2 .pt20-video-card-v2:nth-child(5n+4),
	.pt20-video-grid-v2 .pt20-video-card-v2:nth-child(5n+5) {
		grid-column: span 2;
	}
}

.pt20-video-card-v2 {
	display: block;
	border-radius: var(--pt20-radius);
	overflow: hidden;
	box-shadow: var(--pt20-shadow);
}

.pt20-video-card-v2:hover {
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

.pt20-video-card-media {
	position: relative;
	height: 230px;
	overflow: hidden;
	background: var(--pt20-navy-dark);
}

@media (min-width: 768px) {
	.pt20-video-card-media {
		height: 260px;
	}
}

.pt20-video-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--pt20-transition);
}

.pt20-video-card-v2:hover .pt20-video-card-media img {
	transform: scale(1.08);
}

.pt20-video-play-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: var(--pt20-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.pt20-video-play-badge svg {
	width: 16px;
	height: 16px;
	fill: var(--pt20-navy-dark);
}

.pt20-video-type-badge {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pt20-white);
	z-index: 2;
}

.pt20-video-type-badge svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
}

.pt20-video-card-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 34px 14px 12px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 20%, transparent 100%);
}

.pt20-video-card-title {
	display: block;
	color: var(--pt20-white);
	font-weight: 800;
	font-size: 0.88rem;
	line-height: 1.35;
}

.pt20-gallery-tile {
	position: relative;
	display: block;
	border-radius: var(--pt20-radius-sm);
	overflow: hidden;
	aspect-ratio: 4/3;
	background: var(--pt20-grey-200);
}

.pt20-gallery-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--pt20-transition);
}

.pt20-gallery-tile:hover img {
	transform: scale(1.06);
}

.pt20-gallery-tile-title {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 10px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
	color: var(--pt20-white);
	font-size: 0.82rem;
	font-weight: 700;
}

.pt20-gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

@media (min-width: 768px) {
	.pt20-gallery-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.pt20-gallery-grid-item img {
	border-radius: var(--pt20-radius-sm);
	aspect-ratio: 4/3;
	object-fit: cover;
	width: 100%;
}

/* Homepage Photo Gallery — bento grid: each group of 6 cards alternates a
   wide "feature" tile between the right slot (row 1) and left slot (row 2),
   matching the reference's 2-small+1-big / 1-big+2-small pattern. Caption
   + media-type label sit as a gradient overlay on the image itself. */
.pt20-gallery-grid-v2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 768px) {
	.pt20-gallery-grid-v2 {
		grid-template-columns: repeat(4, 1fr);
	}

	.pt20-gallery-grid-v2 .pt20-gallery-card:nth-child(6n+3),
	.pt20-gallery-grid-v2 .pt20-gallery-card:nth-child(6n+4) {
		grid-column: span 2;
	}
}

.pt20-gallery-card {
	display: block;
	border-radius: var(--pt20-radius);
	overflow: hidden;
	box-shadow: var(--pt20-shadow);
	transition: box-shadow var(--pt20-transition);
}

.pt20-gallery-card:hover {
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

/* Fixed height (not aspect-ratio) so every tile in a row lines up exactly,
   regardless of whether it's a normal or a wide "feature" tile. */
.pt20-gallery-card-media {
	position: relative;
	height: 230px;
	overflow: hidden;
	background: var(--pt20-grey-200);
}

@media (min-width: 768px) {
	.pt20-gallery-card-media {
		height: 260px;
	}
}

.pt20-gallery-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--pt20-transition);
}

.pt20-gallery-card:hover .pt20-gallery-card-media img {
	transform: scale(1.08);
}

.pt20-gallery-share {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.55);
	border: none;
	color: var(--pt20-white);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 3;
	padding: 0;
}

.pt20-gallery-share svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
}

.pt20-gallery-share:hover {
	background: var(--pt20-gold);
	color: var(--pt20-navy-dark);
}

.pt20-gallery-card-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 34px 14px 12px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 20%, transparent 100%);
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: flex-start;
}

.pt20-gallery-card-caption .pt20-gallery-card-icon-type {
	width: 26px;
	height: 26px;
	border-radius: 6px;
	background: var(--pt20-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2px;
}

.pt20-gallery-card-caption .pt20-gallery-card-icon-type svg {
	width: 14px;
	height: 14px;
	fill: var(--pt20-navy-dark);
}

.pt20-gallery-card-title {
	display: block;
	font-weight: 800;
	color: var(--pt20-white);
	font-size: 0.9rem;
	line-height: 1.35;
}

.pt20-gallery-card-type-label {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--pt20-gold);
}

/* =========================================================================
   Generic page / single content
   ========================================================================= */
.pt20-page-content {
	padding: 30px 0 60px;
}

.pt20-page-title {
	margin-bottom: 20px;
}

.pt20-page-thumb,
.pt20-single-thumb {
	border-radius: var(--pt20-radius);
	overflow: hidden;
	margin-bottom: 24px;
}

.pt20-single-content {
	font-size: 1rem;
	color: var(--pt20-grey-900);
}

.pt20-single-content h2 {
	margin-top: 1.6em;
}

.pt20-single-meta {
	display: flex;
	gap: 14px;
	align-items: center;
	color: var(--pt20-grey-500);
	font-size: 0.88rem;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.pt20-news-source {
	color: var(--pt20-grey-500);
	font-size: 0.85rem;
	font-style: italic;
	margin-top: 16px;
}

.pt20-news-source a {
	text-decoration: underline;
}

.pt20-single-tags {
	margin-top: 20px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.pt20-single-tags a {
	background: var(--pt20-grey-100);
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 0.82rem;
}

.pt20-related-news {
	margin-top: 50px;
}

.pt20-archive-header {
	margin-bottom: 24px;
}

.pt20-archive-description {
	color: var(--pt20-grey-700);
}

.pt20-404 {
	text-align: center;
	padding: 80px 0;
}

.pt20-404 h1 {
	font-size: 5rem;
	color: var(--pt20-grey-200);
}

.pt20-pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 30px;
}

.pt20-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	border-radius: var(--pt20-radius-sm);
	border: 1px solid var(--pt20-grey-200);
	font-weight: 700;
	color: var(--pt20-grey-700);
	padding: 0 10px;
}

.pt20-pagination .page-numbers.current {
	background: var(--pt20-navy);
	color: var(--pt20-white);
	border-color: var(--pt20-navy);
}

/* ---------- Filters ---------- */
.pt20-filter-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.pt20-filter-pill {
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid var(--pt20-grey-200);
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--pt20-grey-700);
}

.pt20-filter-pill.is-active {
	background: var(--pt20-navy);
	color: var(--pt20-white);
	border-color: var(--pt20-navy);
}

.pt20-view-toggle {
	display: flex;
	gap: 8px;
	margin-bottom: 24px;
}

.pt20-match-tabs {
	display: inline-flex;
	gap: 2px;
	background: var(--pt20-navy-dark);
	border-radius: var(--pt20-radius-sm);
	padding: 4px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.pt20-match-tab {
	background: transparent;
	color: rgba(255, 255, 255, 0.7);
	border: 0;
	padding: 10px 22px;
	border-radius: 6px;
	font-weight: 800;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	transition: background var(--pt20-transition), color var(--pt20-transition);
	display: inline-block;
	text-decoration: none;
}

.pt20-match-tab.is-active {
	background: var(--pt20-gold);
	color: var(--pt20-navy-dark);
}

.pt20-match-tab:not(.is-active):hover {
	color: var(--pt20-white);
}

.pt20-match-tab-link {
	color: rgba(255, 255, 255, 0.7);
}

.pt20-match-filters,
.pt20-season-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 26px;
}

.pt20-match-filters select,
.pt20-season-filter select,
input[type=month].pt20-match-filters-input {
	padding: 10px 14px;
	border-radius: var(--pt20-radius-sm);
	border: 1px solid var(--pt20-grey-200);
	background: var(--pt20-white);
	font-family: inherit;
	font-size: 0.9rem;
}

/* Season selector: plain white pill with a light border and a blue
   chevron — same spot in the layout as always, just its own clean look
   rather than mirroring the dark Fixtures/Results/Standings tabs.
   Placed after the generic select rule above so it wins on every
   property — a same-specificity rule earlier in the file only "wins" for
   properties it declares (background/padding/border here), while any
   property it doesn't touch, like color, would otherwise leak through
   from wherever was declared last; keeping this block last avoids that. */
.pt20-season-filter-pill select {
	background: var(--pt20-white);
	color: var(--pt20-grey-900);
	border: 1px solid var(--pt20-grey-200);
	padding: 10px 16px;
	border-radius: var(--pt20-radius-sm);
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;

}

/* =========================================================================
   Team / Player / Match detail pages
   ========================================================================= */
.pt20-team-hero {
	position: relative;
}

.pt20-team-hero-banner {
	height: 260px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--pt20-team-color, var(--pt20-navy)), var(--pt20-team-color-2, var(--pt20-navy-dark)));
}

.pt20-team-hero-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.25;
}

.pt20-team-hero-content {
	position: relative;
	margin-top: -70px;
	display: flex;
	align-items: center;
	gap: 20px;
	padding-bottom: 20px;
	flex-wrap: wrap;
}

.pt20-team-hero-logo {
	width: 110px;
	height: 110px;
	object-fit: contain;
	background: var(--pt20-white);
	border-radius: 50%;
	padding: 10px;
	box-shadow: var(--pt20-shadow-lg);
	border: 4px solid var(--pt20-team-color, var(--pt20-white));
}

.pt20-team-hero-content h1 {
	color: var(--pt20-white);
	margin-bottom: 2px;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.pt20-team-hero-content p {
	color: var(--pt20-black);
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
	margin: 0;
}

.pt20-team-detail-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-top: 20px;
}

@media (min-width: 1024px) {
	.pt20-team-detail-grid {
		grid-template-columns: 2.4fr 1fr;
	}
}

.pt20-team-detail-main h2 {
	color: var(--pt20-team-color, var(--pt20-navy-dark));
}

.pt20-info-box {
	background: var(--pt20-grey-100);
	border-radius: var(--pt20-radius);
	padding: 20px;
	margin-bottom: 20px;
	border-left: 4px solid var(--pt20-team-color, var(--pt20-navy));
}

.pt20-info-box h3 {
	color: var(--pt20-team-color, var(--pt20-navy-dark));
}

.pt20-info-box ul li {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid var(--pt20-grey-200);
	font-size: 0.9rem;
}

.pt20-info-box ul li:last-child {
	border-bottom: 0;
}

.pt20-player-detail-hero {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 30px;
}

@media (min-width: 640px) {
	.pt20-player-detail-hero {
		grid-template-columns: 220px 1fr;
		align-items: center;
	}
}

.pt20-player-detail-photo img {
	border-radius: var(--pt20-radius);
	aspect-ratio: 3/4;
	object-fit: contain;
	background: #e2e2e2;
	width: 100%;
}

.pt20-player-current-team {
	font-weight: 700;
}

.pt20-player-meta-list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 14px;
	font-size: 0.9rem;
}

.pt20-player-meta-list li strong {
	color: var(--pt20-grey-500);
	font-weight: 600;
	margin-right: 4px;
}

.pt20-team-history-list li {
	padding: 8px 0;
	border-bottom: 1px solid var(--pt20-grey-200);
}

.pt20-table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.pt20-stats-table {
	min-width: 640px;
	background: var(--pt20-white);
	box-shadow: var(--pt20-shadow);
	border-radius: var(--pt20-radius);
	overflow: hidden;
}

.pt20-stats-table th,
.pt20-stats-table td {
	padding: 12px 14px;
	text-align: center;
	border-bottom: 1px solid var(--pt20-grey-200);
	font-size: 0.88rem;
}

.pt20-stats-table thead th {
	background: var(--pt20-navy);
	color: var(--pt20-white);
}

.pt20-match-detail-header {
	background: var(--pt20-grey-100);
	border-radius: var(--pt20-radius);
	padding: 26px 20px;
	margin-bottom: 30px;
}

.pt20-match-detail-meta-line {
	text-align: center;
	color: var(--pt20-grey-500);
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.pt20-match-detail-scoreboard {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 14px;
	text-align: center;
}

.pt20-match-detail-team img {
	width: 64px;
	height: 64px;
	object-fit: contain;
	margin: 0 auto 10px;
}

.pt20-match-detail-score {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--pt20-navy);
}

.pt20-match-detail-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	justify-content: center;
	margin-top: 20px;
	font-size: 0.88rem;
	color: var(--pt20-grey-700);
}

.pt20-map-embed {
	position: relative;
	padding-bottom: 45%;
	height: 0;
	border-radius: var(--pt20-radius);
	overflow: hidden;
	margin: 20px 0;
}

.pt20-map-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* =========================================================================
   Contact page
   ========================================================================= */
.pt20-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

@media (min-width: 1024px) {
	.pt20-contact-grid {
		grid-template-columns: 1fr 1.3fr;
	}
}

.pt20-contact-item {
	display: flex;
	gap: 14px;
	margin-bottom: 22px;
}

.pt20-contact-icon {
	font-size: 1.4rem;
}

.pt20-contact-item h3 {
	margin-bottom: 4px;
	font-size: 1rem;
}

.pt20-contact-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 0;
}

.pt20-contact-social a {
	padding: 8px 16px;
	border: 1px solid var(--pt20-grey-200);
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.85rem;
}

.pt20-contact-form-wrap {
	background: var(--pt20-grey-100);
	border-radius: var(--pt20-radius);
	padding: 28px;
}

.pt20-form-row {
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.pt20-form-row-group {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media (min-width: 480px) {
	.pt20-form-row-group {
		grid-template-columns: 1fr 1fr;
	}
}

.pt20-form-row label {
	font-weight: 700;
	font-size: 0.88rem;
}

.pt20-form-row input,
.pt20-form-row textarea {
	padding: 12px 14px;
	border-radius: var(--pt20-radius-sm);
	border: 1px solid var(--pt20-grey-200);
	font-family: inherit;
	font-size: 0.95rem;
	width: 100%;
}

.pt20-form-row input:focus,
.pt20-form-row textarea:focus {
	outline: 2px solid var(--pt20-navy);
	outline-offset: 1px;
}

.pt20-hp-field {
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
}

.pt20-form-response {
	margin-top: 14px;
	font-weight: 700;
}

.pt20-form-response.is-success {
	color: var(--pt20-green);
}

.pt20-form-response.is-error {
	color: var(--pt20-red);
}

/* ---------- Lightbox (photo galleries) ---------- */
.pt20-lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 12, 61, 0.92);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--pt20-transition);
	padding: 30px;
}

.pt20-lightbox-overlay.is-active {
	opacity: 1;
	visibility: visible;
}

.pt20-lightbox-overlay img {
	max-width: 100%;
	max-height: 90vh;
	border-radius: var(--pt20-radius-sm);
}

.pt20-lightbox-close {
	position: absolute;
	top: 20px;
	right: 24px;
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
}

input#pt20-filter-month {
	display: none;
}

/* =========================================================================
   Footer
   ========================================================================= */
.pt20-site-footer {
	background: var(--pt20-navy-dark);
	color: rgba(255, 255, 255, 0.85);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

.pt20-footer-top {
	max-width: var(--pt20-container);
	margin: 0 auto;
	padding: 56px 20px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
	padding-bottom: 0;
}

@media (min-width: 768px) {
	.pt20-footer-top {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.pt20-footer-top {
		gap: 0px;
	}

	.footerHAb {
		font-size: 19px !important;
		line-height: normal !important;
	}

	.pt20-page-content {
		padding: 30px 10px 60px;
	}
}

@media (min-width: 1024px) {
	.pt20-footer-top {
		grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
	}
}

@media (max-width: 767px) {
	.pt20-footer-panel p {
		display: flex;
		align-items: center;
		gap: 10px;
	}
}

.pt20-footer-logo {
	height: 40px;
	margin-bottom: 14px;
}

@media (max-width: 767px) {

	/* Scoped to the footer specifically so this doesn't affect the header
	   logo, which also uses .custom-logo-link (WordPress' own markup for
	   the Customizer-set site logo). */
	.pt20-footer-about .custom-logo-link img,
	.pt20-footer-logo {
		width: 90px;
		height: auto;
	}
}

img.ssicon {
	filter: invert(1);
	max-width: 27px;
}

.pt20-footer-col ul li {
	margin-bottom: 10px;
}

.pt20-footer-col a {
	color: rgba(255, 255, 255, 0.75);
}

.pt20-footer-col a:hover {
	color: var(--pt20-gold);
}

/* Footer nav groups (Quick Links / Media / League / Contact): a plain
   heading + list on desktop, a clearly-styled tap-to-expand accordion
   (bordered card, round chevron badge) on mobile. */
.pt20-footer-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: none;
	border: 0;
	color: var(--pt20-white);
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0 0 14px;
	margin: 0;
	text-align: left;
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
}

.pt20-footer-toggle-icon {
	display: none;
}

.pt20-footer-panel {
	overflow: hidden;
}

@media (max-width: 767px) {
	.pt20-footer-accordion {
		background: rgba(255, 255, 255, 0.06);
		border: 1px solid rgba(255, 255, 255, 0.14);
		border-radius: var(--pt20-radius-sm);
		margin-bottom: 10px;
		overflow: hidden;
	}

	.pt20-footer-toggle {
		cursor: pointer;
		padding: 14px 16px;
	}

	.pt20-footer-toggle-icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		width: 24px;
		height: 24px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.14);
		font-size: 0.75rem;
		transition: transform var(--pt20-transition), background var(--pt20-transition);
	}

	.pt20-footer-accordion.is-open .pt20-footer-toggle-icon {
		transform: rotate(180deg);
		background: var(--pt20-gold);
		color: var(--pt20-navy-dark);
	}

	.pt20-footer-panel {
		max-height: 0;
		padding: 0 16px;
		transition: max-height var(--pt20-transition), padding var(--pt20-transition);
	}

	.pt20-footer-accordion.is-open .pt20-footer-panel {
		max-height: 600px;
		padding: 0 16px 16px;
	}

	.pt20-site-header {
		height: 80px;
	}
}

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

.pt20-footer-social a {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 800;
}

.followus {
	text-transform: uppercase;
	font-weight: 700;
}

.pt20-footer-contact p {
	margin-bottom: 10px;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.pt20-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 18px 20px;
	text-align: center;
	font-size: 0.82rem;
}

.pt20-footer-bottom p {
	margin: 0;
}

.pt20-footer-bottom p+p {
	margin-top: 10px;
	font-size: 0.78rem;
}

.pt20-footer-credit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.pt20-footer-credit a {
	display: inline-flex;
	align-items: center;
	color: inherit;
}

.pt20-footer-credit-logo {
	height: 50px;
	width: auto;
	object-fit: cover;
}

.pt20-single-title {
	font-size: 25px;
}

/* =========================================================================
   Small screens polish (≤480px)
   ========================================================================= */
@media (max-width: 480px) {
	:root {
		--pt20-header-h: 64px;
	}

	.pt20-header-logo img,
	.pt20-logo-fallback img,
	.custom-logo-link img {
		height: 80px;
		padding: 5px 0px;
	}

	.pt20-section {
		padding: 36px 0;
	}

	.pt20-match-detail-team img {
		width: 48px;
		height: 48px;
	}

	.pt20-match-detail-score {
		font-size: 1.05rem;
	}
}

/* =========================================================================
   Mobile: Latest News / Latest Videos / Photo Gallery / Teams scroll
   horizontally instead of stacking as a grid. Deliberately placed at the
   very end of the file so it wins the cascade over every earlier
   same-specificity `display: grid` base rule for these classes at narrow
   widths; the `min-width: 768px` overrides declared earlier still restore
   the grid layout above that breakpoint (a media query alone doesn't win —
   source order does, for rules of equal specificity that both match).
   ========================================================================= */
@media (max-width: 767px) {

	.pt20-news-grid-v2,
	.pt20-video-grid-v2,
	.pt20-gallery-grid-v2,
	.pt20-home-teams-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-ms-overflow-style: none;
		scrollbar-width: none;
		padding-bottom: 6px;
	}

	.pt20-footer-credit-logo {
		height: 50px;
	}

	.pt20-news-grid-v2::-webkit-scrollbar,
	.pt20-video-grid-v2::-webkit-scrollbar,
	.pt20-gallery-grid-v2::-webkit-scrollbar,
	.pt20-home-teams-grid::-webkit-scrollbar {
		display: none;
	}

	.pt20-news-grid-v2>*,
	.pt20-video-grid-v2>*,
	.pt20-gallery-grid-v2>*,
	.pt20-home-teams-grid>* {
		flex: 0 0 82%;
		scroll-snap-align: start;
	}
}

.pt20-header-tickets {
	display: flex;
	align-items: center;
	gap: 6px;
	background: var(--pt20-gold);
	color: var(--pt20-navy-dark);
	font-weight: 800;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	padding: 8px 16px;
	border-radius: 999px;
	white-space: nowrap;
	transition: background var(--pt20-transition), color var(--pt20-transition);
}

.pt20-header-tickets svg {
	width: 16px;
	height: 16px;
}

.pt20-header-tickets:hover {
	background: var(--pt20-navy);
	color: var(--pt20-white);
}

.pt20-site-header::before {
	content: '';
	background-image: url(https://punjabt20.com/wp-content/uploads/2026/08/5-Elements.png);
	position: absolute;
	top: 13px;
	right: -7px;
	width: 64px;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
}

.pt20-site-header::after {
	content: '';
	background-image: url(https://punjabt20.com/wp-content/uploads/2026/08/4-Elements.png);
	position: absolute;
	top: 0;
	left: -40px;
	width: 124px;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: -1;
}

img.pcalogo {
	width: 100%;
	max-width: 90px;
}

@media (max-width: 767px) {
	.pt20-site-header::before {
		width: 54px;
		opacity: 0.5;
	}

	img.pcalogo {
		display: none;
	}

	.pt20-site-header::after {
		top: 7px;
		left: -35px;
		width: 74px;
		z-index: -1;
		opacity: 0.5;
	}

	.pt20-header-inner {
		justify-content: space-between !important;
	}

	.ticketBanner {
		padding: 10px 10px !important;
	}
}

.ticketBanner {
	padding: 50px 90px;
	position: relative;
}

.ticketBanner img {
	filter: drop-shadow(1px 3px 2px #000);
}

section.ticketBanner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(https://punjabt20.com/wp-content/uploads/2026/08/banner3.webp);
	width: 100%;
	height: 100%;
	background-size: contain;
	opacity: 0.5
}

.pt20-match-squads {
	background: var(--pt20-white);
	border: 1px solid var(--pt20-grey-200);
	border-radius: var(--pt20-radius);
	overflow: hidden;
	margin-top: 16px;
}

.pt20-match-squads-header {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	border-bottom: 1px solid var(--pt20-grey-200);
	background: var(--pt20-grey-100);
}

.pt20-match-squads-team {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	color: var(--pt20-navy);
}

.pt20-match-squads-team--right {
	justify-content: flex-end;
	text-align: right;
}

.pt20-match-squads-logo {
	width: 28px;
	height: 28px;
	object-fit: contain;
	flex-shrink: 0;
}

.pt20-match-squads-vs {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid var(--pt20-grey-200);
	color: var(--pt20-grey-500);
	font-size: 0.75rem;
	font-weight: 700;
	justify-self: center;
}

.pt20-match-squads-body {
	display: grid;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.pt20-match-squads-body {
		grid-template-columns: 1fr 1fr;
	}

	.pt20-match-squads-col {
		border-right: 1px solid var(--pt20-grey-200);
	}

	.pt20-match-squads-col--right {
		border-right: none;
	}
}

.pt20-match-squad-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	border-bottom: 1px solid var(--pt20-grey-200);
}

.pt20-match-squads-col--right .pt20-match-squad-row {
	justify-content: flex-end;
}

.pt20-match-squads-col--right .pt20-match-squad-info {
	align-items: flex-end;
	text-align: right;
}

.pt20-match-squad-row:last-child {
	border-bottom: none;
}

.pt20-match-squad-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 1px solid var(--pt20-grey-200);
}

.pt20-match-squad-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.pt20-match-squad-name {
	font-weight: 600;
	color: var(--pt20-navy);
	font-size: 0.92rem;
}

.pt20-match-squad-name:hover {
	color: var(--pt20-red);
}

.pt20-match-squad-role {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--pt20-grey-500);
}

/* Homepage marquee-player carousel — one full-width hero slide per view via
   scroll-snap; arrows just scroll the track by one card width. Section is
   a dark navy widget (like .pt20-home-mp) so the .pt20-carousel-arrow
   default (light circle on dark bg) already fits without an override. */
.pt20-section-players-marquee {
	background: var(--pt20-navy-dark);
	background-image: url(https://punjabt20.com/wp-content/uploads/2026/08/Untitled-3-01-1.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.pt20-section-players-marquee .pt20-section-head h2 {
	color: var(--pt20-white);
}

.pt20-section-players-marquee .pt20-section-more {
	color: var(--pt20-gold);
}

.pt20-player-carousel-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Coverflow stack — one active card centred in front, the previous/next
   cards peeking behind on each side (same technique as the homepage match
   stack: offsets/scale/opacity driven by JS via --pt20-x/--pt20-scale/
   --pt20-opacity/--pt20-z, computed off the card's own rendered width so it
   still lines up at any viewport size). Cards are absolutely positioned so
   only the active one participates in layout height. */
.pt20-player-carousel-stack {
	position: relative;
	flex: 1 1 auto;
	min-height: 380px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 640px) {
	.pt20-player-carousel-stack {
		min-height: 480px;
	}
}

/* Homepage marquee-player card — distinct from .pt20-marquee-feature (the
   per-team hero on single-team.php, styled in that team's own colours):
   this one is always Punjab navy/gold since it represents the league, not
   one team. Same bleed-photo-left + overlay-info-right layout technique. */
.pt20-home-marquee-card {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(640px, 84vw);
	transform: translate(-50%, -50%) translateX(var(--pt20-x, 0px)) scale(var(--pt20-scale, 1));
	opacity: var(--pt20-opacity, 0);
	z-index: var(--pt20-z, 1);
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
	cursor: pointer;
	min-height: 340px;
	border-radius: var(--pt20-radius);
	overflow: hidden;
	background: linear-gradient(135deg, var(--pt20-navy-dark) 0%, var(--pt20-navy) 55%, var(--pt20-navy-dark) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: var(--pt20-shadow-lg);
}

.pt20-home-marquee-card.is-active {
	cursor: default;
}

.pt20-home-marquee-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(115deg, rgba(247, 198, 0, 0.06) 0 2px, transparent 2px 40px);
	pointer-events: none;
}

.pt20-home-marquee-photo {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 42%;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
}

.pt20-home-marquee-photo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: 100%;
	object-fit: contain;
	object-position: bottom;
}

.pt20-home-marquee-captain-corner {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--pt20-gold);
	color: var(--pt20-navy-dark);
	font-weight: 900;
	font-size: 0.95rem;
	box-shadow: var(--pt20-shadow);
}

.pt20-home-marquee-info {
	position: relative;
	z-index: 2;
	margin-left: 42%;
	min-height: 340px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
	padding: 28px 32px 28px 16px;
	color: var(--pt20-white);
}

.pt20-home-marquee-eyebrow {
	color: var(--pt20-gold);
	font-weight: 800;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.pt20-home-marquee-team {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 700;
	font-size: 0.85rem;
}

.pt20-home-marquee-team img {
	width: 22px;
	height: 22px;
	object-fit: contain;
	border-radius: 50%;
	background: var(--pt20-white);
}

.pt20-home-marquee-team:hover {
	color: var(--pt20-gold);
}

.pt20-home-marquee-name {
	margin: 0;
	font-size: 2rem;
	line-height: 1.15;
	font-weight: 800;
	text-transform: uppercase;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
	color: #fff;
}

.pt20-home-marquee-name span {
	display: block;
	color: var(--pt20-gold);
}

.pt20-home-marquee-meta {
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 10px;
	color: var(--pt20-white);
	font-weight: 600;
}

.pt20-home-marquee-meta span:not(:first-child) {
	color: rgba(255, 255, 255, 0.75);
}

.pt20-home-marquee-meta span:not(:first-child)::before {
	content: "•";
	margin-right: 10px;
	color: rgba(255, 255, 255, 0.4);
}

.pt20-home-marquee-stats {
	display: flex;
	gap: 28px;
	padding: 14px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pt20-home-marquee-stats>div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.pt20-home-marquee-stat-value {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--pt20-white);
}

.pt20-home-marquee-stat-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.6);
}

.pt20-home-marquee-info .pt20-btn {
	width: fit-content;
	margin-top: 4px;
}

@media (max-width: 640px) {

	/* On narrow screens the coverflow-style peeking prev/next cards overlap
	   heavily and read as a cramped multi-column grid — show only the active
	   card and rely on the arrows/swipe to move between players. */
	.pt20-home-marquee-card:not(.is-active) {
		opacity: 0 !important;
	}

	/* The prev/next arrows used to sit beside the card, squeezing it — now
	   they overlay on top of the card itself so it can use the full width. */
	.pt20-player-carousel-wrap .pt20-carousel-arrow {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		z-index: 10;
	}

	.pt20-player-carousel-wrap .pt20-carousel-arrow-prev {
		left: 6px;
	}

	.pt20-player-carousel-wrap .pt20-carousel-arrow-next {
		right: 6px;
	}

	.pt20-home-marquee-card {
		display: flex;
		flex-direction: column;
		min-height: 0;
		width: 94vw;
		border-radius: 30px;
	}

	.pt20-home-marquee-photo {
		position: relative;
		width: 100%;
		height: 240px;
	}

	.pt20-home-marquee-info {
		width: 100%;
		margin-left: 0;
		min-height: 0;
		padding: 20px;
		text-align: center;
		align-items: center;
	}

	.pt20-home-marquee-team {
		margin: 0 auto;
	}

	.pt20-home-marquee-meta,
	.pt20-home-marquee-stats {
		justify-content: center;
	}

	.pt20-home-marquee-info .pt20-btn {
		margin: 4px auto 0;
	}
}

.scoringPl {
	color: #fff;
	font-size: 10px;
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 15px;
	text-transform: uppercase;
	margin-top: 10px;
}

.scoringPl img {
	width: 100px;
}