/*
 * Studio Sports — main stylesheet.
 * Colours, fonts, radii and spacing all come from CSS custom properties
 * generated in inc/settings/css-output.php from Theme Settings — nothing
 * club-specific is hard-coded here.
 */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var( --ss-color-body-bg, #fff );
	color: var( --ss-color-text, #1c1f24 );
	font-family: var( --ss-font-body, sans-serif );
	font-size: var( --ss-font-size-body, 16px );
	font-weight: var( --ss-font-weight-body, 400 );
	line-height: var( --ss-line-height, 1.6 );
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: var( --ss-radius-image, 8px );
}

a {
	color: inherit;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var( --ss-font-heading, inherit );
	color: var( --ss-color-heading, #0b2340 );
	font-weight: var( --ss-font-weight-heading, 700 );
	line-height: 1.2;
	margin: 0 0 0.5em;
}

h1 {
	font-size: var( --ss-font-size-h1, 44px );
}

h2 {
	font-size: var( --ss-font-size-h2, 34px );
}

h3 {
	font-size: var( --ss-font-size-h3, 24px );
}

p {
	margin: 0 0 1em;
}

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

button {
	font-family: inherit;
}

/* ---------- Accessibility ---------- */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect( 1px, 1px, 1px, 1px );
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var( --ss-color-primary, #000 );
	color: #fff;
	padding: 12px 20px;
	z-index: 10000;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 0;
	position: fixed;
	width: auto;
	height: auto;
	clip: auto;
}

:focus-visible {
	outline: 3px solid var( --ss-color-accent, #ffb400 );
	outline-offset: 2px;
}

/* ---------- Layout ---------- */
.container {
	width: 100%;
	max-width: var( --ss-container-width, 1200px );
	margin: 0 auto;
	padding: 0 20px;
}

.container--narrow {
	max-width: 800px;
}

.section {
	padding: var( --ss-section-padding, 80px ) 0;
}

.section--accent-bg {
	background: var( --ss-color-accent, #ffb400 );
}

.section--default-bg {
	background: var( --ss-color-section-bg, #f5f6f8 );
}

.section__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 32px;
}

.section__title {
	margin: 0;
}

.section__footer {
	text-align: center;
	margin-top: 32px;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: var( --ss-radius-button, 6px );
	font-size: var( --ss-font-size-button, 15px );
	font-weight: 600;
	background: var( --ss-color-btn-bg, #0b2340 );
	color: var( --ss-color-btn-text, #fff );
	border: 2px solid transparent;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
	background: var( --ss-color-btn-hover, #ffb400 );
	color: var( --ss-color-btn-text, #fff );
	transform: translateY( -1px );
}

.btn--outline {
	background: transparent;
	color: var( --ss-color-btn-bg, #0b2340 );
	border-color: currentColor;
}

.btn--outline:hover,
.btn--outline:focus-visible {
	background: var( --ss-color-btn-bg, #0b2340 );
	color: var( --ss-color-btn-text, #fff );
	border-color: var( --ss-color-btn-bg, #0b2340 );
}

.btn--small {
	padding: 8px 16px;
	font-size: 13px;
}

/* ---------- Header ---------- */
.site-header {
	background: var( --ss-header-bg, #fff );
	color: var( --ss-header-text, #101820 );
	position: relative;
	z-index: 100;
}

.has-sticky-header .site-header--sticky {
	position: sticky;
	top: 0;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 20px;
}

.site-logo {
	display: inline-flex;
	align-items: center;
}

.site-logo__image {
	max-height: 60px;
	width: auto;
	border-radius: 0;
}

.site-logo--text {
	font-family: var( --ss-font-heading, inherit );
	font-size: 22px;
	font-weight: 700;
	color: inherit;
}

.main-navigation {
	flex: 1;
	display: none;
}

.primary-menu {
	display: flex;
	gap: 28px;
	align-items: center;
}

.primary-menu a {
	font-weight: 600;
	padding: 8px 0;
}

.primary-menu li.current-menu-item > a,
.primary-menu a:hover,
.primary-menu a:focus-visible {
	color: var( --ss-color-accent, #ffb400 );
}

.site-header__extras {
	display: flex;
	align-items: center;
	gap: 16px;
}

.social-links {
	display: flex;
	gap: 12px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.mobile-menu-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	cursor: pointer;
}

.mobile-menu-toggle__bar {
	display: block;
	width: 100%;
	height: 2px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu {
	position: fixed;
	inset: 0;
	top: 0;
	background: var( --ss-mobile-menu-bg, #101820 );
	color: #fff;
	padding: 80px 24px 24px;
	overflow-y: auto;
	z-index: 99;
	transform: translateX( 100% );
	transition: transform 0.25s ease;
}

.mobile-menu.is-open {
	transform: translateX( 0 );
}

.mobile-menu[hidden] {
	display: block;
	visibility: hidden;
	pointer-events: none;
}

.mobile-menu.is-open[hidden] {
	visibility: visible;
	pointer-events: auto;
}

.mobile-menu__list li {
	border-bottom: 1px solid rgba( 255, 255, 255, 0.15 );
}

.mobile-menu__list a {
	display: block;
	padding: 16px 0;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
}

.mobile-menu .social-links {
	margin-top: 24px;
}

body.mobile-menu--fullscreen .mobile-menu {
	padding-top: 100px;
}

/* ---------- Hero Slider ---------- */
.hero-slider {
	position: relative;
	overflow: hidden;
	background: var( --ss-color-primary, #0b2340 );
}

.hero-slider__track {
	position: relative;
	min-height: 420px;
}

.hero-slider__slide {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: flex-end;
}

.hero-slider__slide[hidden] {
	display: none;
}

.hero-slider__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

.hero-slider__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient( to top, rgba( 0, 0, 0, 0.75 ), rgba( 0, 0, 0, 0.1 ) );
}

.hero-slider__content {
	position: relative;
	color: #fff;
	padding-bottom: 56px;
	max-width: 700px;
}

.hero-slider__title,
.hero-slider__intro {
	color: #fff;
}

.hero-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY( -50% );
	background: rgba( 0, 0, 0, 0.4 );
	color: #fff;
	border: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	z-index: 5;
}

.hero-slider__arrow--prev {
	left: 16px;
}

.hero-slider__arrow--next {
	right: 16px;
}

.hero-slider__dots {
	position: absolute;
	bottom: 16px;
	right: 20px;
	display: flex;
	gap: 8px;
	z-index: 5;
}

.hero-slider__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba( 255, 255, 255, 0.5 );
	border: none;
	cursor: pointer;
	padding: 0;
}

.hero-slider__dot.is-active {
	background: var( --ss-color-accent, #ffb400 );
}

/* ---------- Matches ---------- */
.matches-grid {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 260px, 1fr ) );
	gap: 24px;
}

.matches-grid__label {
	display: block;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 700;
	margin-bottom: 8px;
	opacity: 0.75;
}

.match-card {
	background: #fff;
	border-radius: var( --ss-radius-card, 12px );
	padding: 20px;
	box-shadow: 0 2px 10px rgba( 0, 0, 0, 0.06 );
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
}

.match-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	opacity: 0.75;
}

.match-card__teams {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

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

.match-card__team img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	border-radius: 0;
}

.match-card__team-name {
	font-size: 13px;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
}

.match-card__score-wrap {
	flex-shrink: 0;
}

.match-card__score {
	font-size: 24px;
	font-weight: 800;
	color: var( --ss-color-heading );
}

.match-card__kickoff {
	font-size: 18px;
	font-weight: 700;
	opacity: 0.7;
}

/* ---------- News ---------- */
.news-grid {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 280px, 1fr ) );
	gap: 24px;
}

.news-card {
	border-radius: var( --ss-radius-card, 12px );
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 10px rgba( 0, 0, 0, 0.06 );
	transition: transform 0.2s ease;
}

.news-card:hover,
.news-card:focus-within {
	transform: translateY( -4px );
}

.news-card__image {
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
	background-color: var( --ss-color-section-bg, #eee );
}

.news-card__body {
	padding: 20px;
}

.news-card__date {
	display: block;
	font-size: 13px;
	opacity: 0.6;
	margin-bottom: 6px;
}

.news-card__title {
	font-size: 19px;
	margin-bottom: 12px;
}

.news-card__readmore {
	font-weight: 700;
	color: var( --ss-color-accent, #ffb400 );
}

/* ---------- TV ---------- */
.tv-grid {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 260px, 1fr ) );
	gap: 24px;
}

.tv-card__thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var( --ss-radius-card, 12px );
	overflow: hidden;
	background: #000;
}

.tv-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

.tv-card__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	background: rgba( 0, 0, 0, 0.25 );
}

.tv-card__title {
	margin-top: 12px;
	font-size: 17px;
}

/* ---------- Club Shop ---------- */
.shop-grid {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 240px, 1fr ) );
	gap: 24px;
}

.product-card {
	background: #fff;
	border-radius: var( --ss-radius-card, 12px );
	overflow: hidden;
	box-shadow: 0 2px 10px rgba( 0, 0, 0, 0.06 );
	display: flex;
	flex-direction: column;
}

.product-card--featured {
	outline: 2px solid var( --ss-color-accent, #ffb400 );
}

.product-card__image img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
	border-radius: 0;
}

.product-card__body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.product-card__type {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.6;
}

.product-card__title {
	font-size: 18px;
	margin: 0;
}

.product-card__price {
	font-weight: 700;
	font-size: 17px;
}

.product-card__buy {
	margin-top: auto;
}

.shop-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 40px;
	align-items: start;
}

.shop-sidebar {
	background: var( --ss-color-section-bg, #f5f6f8 );
	border-radius: var( --ss-radius-card, 12px );
	padding: 20px;
}

.shop-sidebar__field {
	margin-bottom: 20px;
}

.shop-sidebar__field label {
	display: block;
	margin-bottom: 6px;
}

/* ---------- Players ---------- */
.players-team-switcher select {
	padding: 8px 12px;
	border-radius: var( --ss-radius-global, 8px );
	border: 1px solid rgba( 0, 0, 0, 0.15 );
}

.players-carousel {
	position: relative;
}

.players-carousel__track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 8px;
}

.players-carousel__track::-webkit-scrollbar {
	display: none;
}

.players-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 180px, 1fr ) );
	gap: 20px;
}

.player-card {
	scroll-snap-align: start;
	flex: 0 0 180px;
	background: #fff;
	border-radius: var( --ss-radius-card, 12px );
	overflow: hidden;
	box-shadow: 0 2px 10px rgba( 0, 0, 0, 0.06 );
}

.player-card__image {
	position: relative;
	aspect-ratio: 1;
	background: var( --ss-color-section-bg, #eee );
}

.player-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

.player-card__number {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: var( --ss-color-accent, #ffb400 );
	color: #101820;
	font-weight: 800;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.player-card__body {
	padding: 14px;
	text-align: center;
}

.player-card__name {
	font-size: 15px;
	margin: 0 0 4px;
}

.player-card__position {
	font-size: 12px;
	opacity: 0.65;
}

.players-carousel__arrow {
	position: absolute;
	top: 50%;
	transform: translateY( -50% );
	background: #fff;
	border: 1px solid rgba( 0, 0, 0, 0.1 );
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	box-shadow: 0 2px 8px rgba( 0, 0, 0, 0.1 );
}

.players-carousel__arrow--prev {
	left: -20px;
}

.players-carousel__arrow--next {
	right: -20px;
}

/* ---------- Staff ---------- */
.staff-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 160px, 1fr ) );
	gap: 20px;
}

.staff-card {
	text-align: center;
}

.staff-card__image {
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
	max-width: 120px;
	margin: 0 auto 10px;
	background: var( --ss-color-section-bg, #eee );
}

.staff-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

.staff-card__name {
	font-size: 15px;
	margin: 0 0 4px;
}

.staff-card__role {
	font-size: 12px;
	opacity: 0.65;
}

/* ---------- Gallery ---------- */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 260px, 1fr ) );
	gap: 20px;
}

.gallery-tile {
	position: relative;
	display: flex;
	align-items: flex-end;
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
	background-color: var( --ss-color-section-bg, #eee );
	border-radius: var( --ss-radius-card, 12px );
	overflow: hidden;
}

.gallery-tile::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient( to top, rgba( 0, 0, 0, 0.65 ), transparent 60% );
}

.gallery-tile__title {
	position: relative;
	color: #fff;
	font-weight: 700;
	padding: 16px;
	font-size: 17px;
}

.lightbox-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 200px, 1fr ) );
	gap: 12px;
	margin: 32px 0;
}

.lightbox-grid__item img {
	aspect-ratio: 1;
	object-fit: cover;
	width: 100%;
}

.studio-lightbox {
	position: fixed;
	inset: 0;
	background: rgba( 0, 0, 0, 0.9 );
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.studio-lightbox[hidden] {
	display: none;
}

.studio-lightbox__image {
	max-width: 90vw;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 0;
}

.studio-lightbox__close,
.studio-lightbox__prev,
.studio-lightbox__next {
	position: absolute;
	background: rgba( 255, 255, 255, 0.1 );
	color: #fff;
	border: none;
	cursor: pointer;
	border-radius: 50%;
}

.studio-lightbox__close {
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	font-size: 24px;
}

.studio-lightbox__prev,
.studio-lightbox__next {
	top: 50%;
	transform: translateY( -50% );
	width: 52px;
	height: 52px;
	font-size: 28px;
}

.studio-lightbox__prev {
	left: 20px;
}

.studio-lightbox__next {
	right: 20px;
}

/* ---------- Teams ---------- */
.teams-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 200px, 1fr ) );
	gap: 20px;
}

.team-card {
	text-align: center;
	background: #fff;
	border-radius: var( --ss-radius-card, 12px );
	padding: 24px;
	box-shadow: 0 2px 10px rgba( 0, 0, 0, 0.06 );
}

.team-card__badge {
	width: 72px;
	height: 72px;
	object-fit: contain;
	margin: 0 auto 12px;
	border-radius: 0;
}

.team-hero {
	position: relative;
}

.team-hero__image img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	border-radius: 0;
}

.team-hero__content {
	padding: 32px 20px;
	text-align: center;
}

.team-hero__badge {
	width: 90px;
	height: 90px;
	object-fit: contain;
	margin: 0 auto 16px;
	border-radius: 0;
}

.team-hero__intro {
	max-width: 700px;
	margin: 0 auto;
}

/* ---------- Match Centre ---------- */
.match-hero {
	background: var( --ss-color-primary, #0b2340 );
	color: #fff;
	padding: 48px 0;
}

.match-hero__meta {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 13px;
	opacity: 0.85;
	margin-bottom: 24px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.match-hero__scoreline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
}

.match-hero__team {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	flex: 1;
	max-width: 220px;
}

.match-hero__team-badge {
	width: 72px;
	height: 72px;
	object-fit: contain;
	border-radius: 0;
}

.match-hero__team-name {
	font-weight: 700;
	text-align: center;
}

.match-hero__score {
	font-size: 40px;
	font-weight: 800;
}

.match-hero__kickoff {
	font-size: 24px;
}

.match-content__section {
	margin-bottom: 40px;
}

.match-related__grid {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 220px, 1fr ) );
	gap: 16px;
}

.match-related__item {
	display: block;
	background: #fff;
	border-radius: var( --ss-radius-card, 12px );
	overflow: hidden;
	box-shadow: 0 2px 10px rgba( 0, 0, 0, 0.06 );
	padding: 12px;
	font-weight: 600;
	text-align: center;
}

/* ---------- Video single ---------- */
.video-embed-wrap {
	background: #000;
}

.video-embed {
	position: relative;
	width: 100%;
	max-width: var( --ss-container-width, 1200px );
	margin: 0 auto;
	aspect-ratio: 16 / 9;
}

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

.video-content {
	padding: 32px 0;
}

/* ---------- Newsletter ---------- */
.newsletter-signup {
	background: var( --ss-color-primary, #0b2340 );
	color: #fff;
	padding: 48px 0;
}

.newsletter-signup h2,
.newsletter-signup p {
	color: #fff;
}

.newsletter-signup__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
}

.newsletter-signup__form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	flex: 1;
	min-width: 280px;
	max-width: 520px;
	position: relative;
}

.newsletter-signup__form input {
	flex: 1;
	min-width: 160px;
	padding: 12px 14px;
	border-radius: var( --ss-radius-global, 8px );
	border: none;
}

.newsletter-signup__message {
	width: 100%;
	margin: 0;
	font-size: 14px;
}

/* ---------- Sponsors ---------- */
.sponsors-strip {
	padding: 32px 0;
	background: var( --ss-color-section-bg, #f5f6f8 );
}

.sponsors-strip__list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 32px;
}

.sponsors-strip__item img {
	max-height: 60px;
	width: auto;
	filter: grayscale( 100% );
	opacity: 0.7;
	transition: filter 0.2s ease, opacity 0.2s ease;
	border-radius: 0;
}

.sponsors-strip__item a:hover img,
.sponsors-strip__item a:focus-visible img {
	filter: none;
	opacity: 1;
}

/* ---------- Footer ---------- */
.site-footer {
	background: var( --ss-footer-bg, #101820 );
	color: var( --ss-footer-text, #fff );
	padding-top: 48px;
}

.site-footer a {
	color: inherit;
}

.site-footer__inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 32px;
	padding-bottom: 32px;
}

.footer-logo__image {
	max-height: 50px;
	margin-bottom: 16px;
	border-radius: 0;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.site-footer__bottom {
	border-top: 1px solid rgba( 255, 255, 255, 0.15 );
	padding: 20px 0;
}

.site-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	opacity: 0.85;
}

/* ---------- Filters / forms ---------- */
.match-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 16px;
	margin-bottom: 32px;
	padding: 20px;
	background: var( --ss-color-section-bg, #f5f6f8 );
	border-radius: var( --ss-radius-card, 12px );
}

.match-filters__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.match-filters select,
.match-filters input {
	padding: 8px 10px;
	border-radius: var( --ss-radius-global, 8px );
	border: 1px solid rgba( 0, 0, 0, 0.15 );
}

.pagination {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 32px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 8px;
	border-radius: var( --ss-radius-global, 8px );
	background: var( --ss-color-section-bg, #f5f6f8 );
}

.pagination .page-numbers.current {
	background: var( --ss-color-primary, #0b2340 );
	color: #fff;
}

/* ---------- Comments ---------- */
.comments-area {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid rgba( 0, 0, 0, 0.1 );
}

.comment-list {
	margin-bottom: 24px;
}

.comment-list li {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba( 0, 0, 0, 0.08 );
}

.comment-list .children {
	list-style: none;
	margin-top: 16px;
	padding-left: 24px;
}

.comment-form input,
.comment-form textarea {
	width: 100%;
	padding: 10px 12px;
	border-radius: var( --ss-radius-global, 8px );
	border: 1px solid rgba( 0, 0, 0, 0.15 );
	margin-bottom: 12px;
}

/* ---------- Responsive ---------- */
@media ( min-width: 900px ) {
	.main-navigation {
		display: block;
	}

	.mobile-menu-toggle {
		display: none;
	}

	.mobile-menu {
		display: none !important;
	}
}

@media ( max-width: 899px ) {
	.hero-slider__content {
		max-width: 100%;
	}

	.shop-layout {
		grid-template-columns: 1fr;
	}

	.match-hero__scoreline {
		gap: 16px;
	}

	.match-hero__score {
		font-size: 28px;
	}
}

@media ( max-width: 600px ) {
	.section {
		padding: calc( var( --ss-section-padding, 80px ) * 0.6 ) 0;
	}

	h1 {
		font-size: calc( var( --ss-font-size-h1, 44px ) * 0.75 );
	}

	h2 {
		font-size: calc( var( --ss-font-size-h2, 34px ) * 0.8 );
	}

	.newsletter-signup__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.match-hero__team-badge {
		width: 52px;
		height: 52px;
	}

	.players-carousel__arrow {
		display: none;
	}
}
