.uksdw-results,
.uksdw-results * {
	box-sizing: border-box;
}

.uksdw-results {
	max-width: 1280px;
	margin: 0 auto;
	padding: 20px 0;
	color: #0f172a;
	font-family: inherit;
}

.uksdw-tabs {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 40px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e2e8f0;
	flex-wrap: wrap;
}

.uksdw-season-tab {
	appearance: none;
	border: 0;
	border-radius: 40px;
	background: transparent;
	color: #64748b;
	cursor: pointer;
	font: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.2;
	padding: 12px 28px;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.uksdw-season-tab:hover,
.uksdw-season-tab:focus-visible {
	color: var(--uksdw-accent, #2563eb);
	background: #eef4ff;
	outline: none;
}

.uksdw-season-tab:focus-visible {
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.uksdw-season-tab.is-active {
	background: var(--uksdw-accent, #2563eb);
	color: #fff;
}

.uksdw-season-section {
	margin-bottom: 50px;
}

.uksdw-season-section[hidden] {
	display: none;
}

.uksdw-season-title {
	position: relative;
	margin: 0 0 30px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e2e8f0;
	color: #0f172a;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0;
}

.uksdw-season-title span {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 80px;
	height: 3px;
	background: var(--uksdw-accent, #2563eb);
	opacity: 0.6;
}

.uksdw-month-group {
	margin-bottom: 40px;
}

.uksdw-month-title {
	margin: 0 0 20px;
	padding-left: 10px;
	border-left: 3px solid var(--uksdw-accent, #2563eb);
	color: #1e293b;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0;
}

.uksdw-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 25px;
}

.uksdw-card {
	display: flex;
	min-width: 0;
	gap: 20px;
	padding: 25px;
	border: 1px solid #e9eff6;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(37, 99, 235, 0.04);
	color: inherit;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.uksdw-card[href] {
	cursor: pointer;
}

.uksdw-card[href]:hover,
.uksdw-card[href]:focus-visible {
	border-color: rgba(37, 99, 235, 0.28);
	box-shadow: 0 14px 34px rgba(37, 99, 235, 0.12);
	outline: none;
	transform: translateY(-2px);
}

.uksdw-card.is-disabled {
	opacity: 0.72;
}

.uksdw-pdf-icon,
.uksdw-empty-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.uksdw-pdf-icon {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	background: #fee2e2;
	color: #dc2626;
}

.uksdw-card-body {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
}

.uksdw-date-badge {
	display: inline-block;
	margin-bottom: 10px;
	padding: 4px 12px;
	border-radius: 20px;
	background: #eef4ff;
	color: var(--uksdw-accent, #2563eb);
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1.35;
}

.uksdw-card-title {
	display: block;
	margin-bottom: 8px;
	color: #0f172a;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.4;
	overflow-wrap: anywhere;
}

.uksdw-meta-line {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 5px;
	color: #475569;
	font-size: 1rem;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.uksdw-location {
	color: #64748b;
	font-size: 0.95rem;
}

.uksdw-svg {
	width: 1em;
	height: 1em;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.uksdw-pdf-icon .uksdw-svg {
	width: 39px;
	height: 39px;
}

.uksdw-svg-pdf {
	overflow: visible;
	stroke: none;
}

.uksdw-svg-pdf .uksdw-pdf-page {
	fill: currentColor;
}

.uksdw-svg-pdf .uksdw-pdf-fold {
	fill: #fecaca;
}

.uksdw-svg-pdf .uksdw-pdf-mark {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.35;
}

.uksdw-svg-pdf .uksdw-pdf-dot {
	fill: #fff;
}

.uksdw-meta-line .uksdw-svg {
	width: 0.95rem;
	height: 0.95rem;
	color: var(--uksdw-accent, #2563eb);
}

.uksdw-empty {
	padding: 60px 40px;
	border: 1px dashed #cbd5e1;
	border-radius: 25px;
	background: #f8fafc;
	text-align: center;
}

.uksdw-empty-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 25px;
	border-radius: 50%;
	background: #eef4ff;
	color: var(--uksdw-accent, #2563eb);
	opacity: 0.6;
}

.uksdw-empty-icon .uksdw-svg {
	width: 48px;
	height: 48px;
}

.uksdw-empty h3 {
	margin: 0 0 15px;
	color: #1e293b;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.25;
}

.uksdw-empty p {
	max-width: 520px;
	margin: 0 auto;
	color: #64748b;
	font-size: 1.2rem;
	line-height: 1.55;
}

.uksdw-info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 40px;
	padding: 20px;
	border-radius: 16px;
	background: #f8fafc;
	color: #475569;
	text-align: center;
}

.uksdw-info .uksdw-svg {
	width: 1rem;
	height: 1rem;
	color: var(--uksdw-accent, #2563eb);
}

@media (max-width: 760px) {
	.uksdw-results {
		padding: 16px 0;
	}

	.uksdw-tabs {
		justify-content: flex-start;
		gap: 10px;
		margin-bottom: 28px;
		overflow-x: auto;
		padding-bottom: 12px;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.uksdw-season-tab {
		flex: 0 0 auto;
		padding: 10px 18px;
		font-size: 0.95rem;
	}

	.uksdw-season-title {
		font-size: 1.55rem;
	}

	.uksdw-month-title {
		font-size: 1.2rem;
	}

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

	.uksdw-card {
		gap: 14px;
		padding: 18px;
		border-radius: 14px;
	}

	.uksdw-pdf-icon {
		width: 52px;
		height: 52px;
	}

	.uksdw-pdf-icon .uksdw-svg {
		width: 32px;
		height: 32px;
	}

	.uksdw-card-title {
		font-size: 1.05rem;
	}

	.uksdw-meta-line {
		font-size: 0.95rem;
	}

	.uksdw-empty {
		padding: 44px 20px;
		border-radius: 18px;
	}

	.uksdw-empty h3 {
		font-size: 1.45rem;
	}

	.uksdw-empty p {
		font-size: 1rem;
	}

	.uksdw-info {
		align-items: flex-start;
		text-align: left;
	}
}

@media (max-width: 420px) {
	.uksdw-card {
		flex-direction: column;
	}
}
