/*
 * Single prediction — stadium layout.
 */

.single-prediction {
	padding: 0 0 3rem;
	background:
		linear-gradient(rgba(31, 55, 40, 0.025) 1px, transparent 1px),
		#f5f7f6;
	background-size: 32px 32px;
}

.single-prediction .prediction-page-hero__image img {
	object-fit: contain;
	object-position: center;
}

.single-prediction__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 1.35rem;
	align-items: start;
	padding-top: 1.5rem;
}

.single-prediction__main,
.single-prediction__related {
	background: #fff;
	border: 1px solid #dfe6e1;
	border-radius: 10px;
	box-shadow: 0 8px 28px rgba(18, 51, 29, 0.055);
}

.single-prediction__main {
	min-width: 0;
	overflow: hidden;
}

.single-prediction__analysis,
.single-prediction__main > .post-navigation,
.single-prediction__main > .comments-area {
	padding: clamp(1.25rem, 2.5vw, 2rem);
}

.single-prediction__section-title,
.single-prediction__related > header {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.single-prediction__section-title {
	padding-bottom: 1rem;
	margin-bottom: 1.2rem;
	border-bottom: 1px solid #e6ebe8;
}

.single-prediction__section-title > span {
	display: grid;
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	place-items: center;
	color: #43a319;
	background: #eff8eb;
	border: 1px solid #d3eac9;
	border-radius: 8px;
}

.single-prediction__section-title svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.single-prediction__section-title small,
.single-prediction__related header small {
	display: block;
	margin-bottom: 0.08rem;
	color: #89928d;
	font-size: 0.57rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.single-prediction__section-title .ui-title,
.single-prediction__related header .ui-title {
	margin: 0;
	color: #18201b;
	font-size: 1.08rem;
	line-height: 1.25;
}

.single-prediction__analysis .entry-content {
	color: #4c5650;
	font-size: 0.91rem;
	line-height: 1.85;
}

.single-prediction__analysis .entry-content > :first-child {
	margin-top: 0;
}

.single-prediction__analysis .entry-content > :last-child {
	margin-bottom: 0;
}

.single-prediction__analysis .entry-content h2 {
	position: relative;
	padding: 0.9rem 1.1rem 0.9rem 1.35rem;
	margin: clamp(1.7rem, 3vw, 2.3rem) 0 1rem;
	overflow: hidden;
	color: #17251b;
	font-size: clamp(1.18rem, 2vw, 1.48rem);
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -0.025em;
	background: linear-gradient(105deg, #f2f9ee 0%, #fbfdf9 72%);
	border: 1px solid #d9e8d2;
	border-radius: 11px;
	box-shadow: 0 10px 26px rgba(34, 79, 28, 0.06);
}

.single-prediction__analysis .entry-content h3 {
	position: relative;
	padding: 0.72rem 0.95rem 0.72rem 1.15rem;
	margin: clamp(1.35rem, 2.5vw, 1.8rem) 0 0.8rem;
	overflow: hidden;
	color: #213026;
	font-size: clamp(1.03rem, 1.6vw, 1.22rem);
	font-weight: 780;
	line-height: 1.35;
	letter-spacing: -0.018em;
	background: linear-gradient(105deg, #f7faf5 0%, #fff 76%);
	border: 1px solid #e1e9dd;
	border-radius: 9px;
}

.single-prediction__analysis .entry-content h2::before,
.single-prediction__analysis .entry-content h3::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 5px;
	background: linear-gradient(180deg, #82df22, #3a9e14);
	content: "";
}

.single-prediction__analysis .entry-content h3::before {
	width: 4px;
	background: #69bd32;
}

.single-prediction__analysis .entry-content h2:first-child,
.single-prediction__analysis .entry-content h3:first-child {
	margin-top: 0;
}

.single-prediction__analysis .entry-content ul,
.single-prediction__analysis .entry-content ol {
	padding: 1rem 1.15rem 1rem 2.7rem;
	margin: 1.25rem 0 1.5rem;
	color: #3f4b43;
	background: linear-gradient(135deg, #f8fbf6 0%, #fff 78%);
	border: 1px solid #dfe9db;
	border-radius: 12px;
	box-shadow: 0 9px 24px rgba(34, 79, 28, 0.05);
}

.single-prediction__analysis .entry-content li {
	padding-left: 0.18rem;
	margin: 0.48rem 0;
	line-height: 1.65;
}

.single-prediction__analysis .entry-content ul > li::marker {
	color: #55b91f;
	font-size: 1.18em;
}

.single-prediction__analysis .entry-content ol {
	padding-left: 1.15rem;
	list-style: none;
	counter-reset: prediction-list;
}

.single-prediction__analysis .entry-content ol > li {
	position: relative;
	min-height: 1.85rem;
	padding-left: 2.35rem;
	counter-increment: prediction-list;
}

.single-prediction__analysis .entry-content ol > li::before {
	position: absolute;
	top: 0.05rem;
	left: 0;
	display: grid;
	width: 1.7rem;
	height: 1.7rem;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 850;
	line-height: 1;
	background: linear-gradient(145deg, #62ca25, #359512);
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(55, 145, 20, 0.2);
	content: counter(prediction-list);
	place-items: center;
}

.single-prediction__analysis .entry-content li > ul,
.single-prediction__analysis .entry-content li > ol {
	padding-top: 0.15rem;
	padding-right: 0;
	padding-bottom: 0.15rem;
	margin: 0.55rem 0 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.single-prediction__analysis .entry-content li > ul {
	padding-left: 1.25rem;
}

.single-prediction__analysis .entry-content li > ol {
	padding-left: 0;
}

.single-prediction__analysis .entry-content .wp-block-table {
	margin: clamp(1.25rem, 3vw, 2rem) 0;
	overflow-x: auto;
	background: #fff;
	border: 1px solid #dce6df;
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(23, 58, 34, 0.08);
	scrollbar-color: #67c82c #edf3ef;
	scrollbar-width: thin;
}

.single-prediction__analysis .entry-content .wp-block-table::-webkit-scrollbar {
	height: 8px;
}

.single-prediction__analysis .entry-content .wp-block-table::-webkit-scrollbar-track {
	background: #edf3ef;
}

.single-prediction__analysis .entry-content .wp-block-table::-webkit-scrollbar-thumb {
	background: #67c82c;
	border: 2px solid #edf3ef;
	border-radius: 999px;
}

.single-prediction__analysis .entry-content .wp-block-table table {
	width: 100%;
	min-width: 620px;
	margin: 0;
	table-layout: auto;
	border-spacing: 0;
	border-collapse: separate;
	font-size: 0.82rem;
	line-height: 1.35;
}

.single-prediction__analysis .entry-content .wp-block-table th,
.single-prediction__analysis .entry-content .wp-block-table td {
	padding: 0.82rem 0.78rem;
	font-variant-numeric: tabular-nums;
	vertical-align: middle;
	border: 0;
	border-right: 1px solid #e5ebe7;
	border-bottom: 1px solid #e5ebe7;
}

.single-prediction__analysis .entry-content .wp-block-table th:last-child,
.single-prediction__analysis .entry-content .wp-block-table td:last-child {
	border-right: 0;
}

.single-prediction__analysis .entry-content .wp-block-table thead th {
	color: #eef8f1;
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.055em;
	text-transform: uppercase;
	background: #09291b;
	border-color: rgba(255, 255, 255, 0.1);
}

.single-prediction__analysis .entry-content .wp-block-table thead th:first-child {
	color: #79db36;
	text-align: left;
}

.single-prediction__analysis .entry-content .wp-block-table tbody td {
	color: #4a554e;
	font-weight: 650;
	background: #fff;
	transition: background-color 160ms ease, color 160ms ease;
}

.single-prediction__analysis .entry-content .wp-block-table tbody tr:nth-child(even) td {
	background: #f8faf8;
}

.single-prediction__analysis .entry-content .wp-block-table tbody tr:hover td {
	color: #1c3524;
	background: #eff8eb;
}

.single-prediction__analysis .entry-content .wp-block-table tbody tr:last-child td {
	border-bottom: 0;
}

.single-prediction__analysis .entry-content .wp-block-table tbody td:first-child {
	min-width: 150px;
	color: #1d2b22;
	font-weight: 800;
	text-align: left;
}

.single-prediction__analysis .entry-content .wp-block-table tbody td:first-child::before {
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 0.55rem;
	vertical-align: 0.08em;
	background: #64c72b;
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(100, 199, 43, 0.13);
	content: "";
}

.single-prediction__analysis .entry-content .wp-block-table .has-text-align-center {
	text-align: center;
}

.single-prediction__analysis .entry-content .wp-block-table .has-text-align-left {
	text-align: left;
}

.single-prediction__analysis .entry-content .wp-block-table figcaption {
	padding: 0.7rem 0.9rem;
	margin: 0;
	color: #78837c;
	font-size: 0.72rem;
	text-align: left;
	background: #f7faf8;
	border-top: 1px solid #e3eae5;
}

.single-prediction__final-pick {
	position: relative;
	margin-top: clamp(1.8rem, 4vw, 2.8rem);
	overflow: hidden;
	color: #eef8f1;
	background:
		radial-gradient(circle at 88% 15%, rgba(105, 218, 26, 0.2), transparent 14rem),
		linear-gradient(135deg, #061d13 0%, #0b3020 58%, #0d3b22 100%);
	border: 1px solid rgba(115, 213, 53, 0.3);
	border-radius: 16px;
	box-shadow: 0 20px 42px rgba(5, 36, 22, 0.18);
}

.single-prediction__final-pick::after {
	position: absolute;
	right: -3rem;
	bottom: -5rem;
	width: 14rem;
	height: 14rem;
	border: 1px solid rgba(112, 217, 0, 0.14);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.single-prediction__final-pick-header {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.85rem clamp(1rem, 3vw, 1.5rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.single-prediction__final-pick-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #7cdd39;
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.single-prediction__final-pick-eyebrow svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.single-prediction__final-pick-tournament {
	padding: 0.32rem 0.62rem;
	color: #c4d4ca;
	font-size: 0.65rem;
	font-weight: 750;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
}

.single-prediction__final-pick-body {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(230px, 0.58fr);
	gap: clamp(1.2rem, 4vw, 2.5rem);
	align-items: center;
	padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem);
}

.single-prediction__final-pick-choice small {
	display: block;
	margin-bottom: 0.45rem;
	color: #9caf9f;
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.single-prediction__final-pick-choice .ui-title {
	margin: 0;
	color: #fff;
	font-size: clamp(1.35rem, 3vw, 2rem);
	font-weight: 850;
	line-height: 1.2;
	letter-spacing: -0.035em;
}

.single-prediction__final-pick-choice p {
	margin: 0.55rem 0 0;
	color: #b9c9bf;
	font-size: 0.78rem;
	font-weight: 650;
}

.single-prediction__final-pick-metrics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.single-prediction__final-pick-metric {
	min-width: 0;
	padding: 0.85rem;
	background: rgba(1, 13, 8, 0.34);
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 11px;
}

.single-prediction__final-pick-metric > span:first-child,
.single-prediction__final-pick-metric > strong {
	display: block;
}

.single-prediction__final-pick-metric > span:first-child {
	margin-bottom: 0.25rem;
	color: #9fb0a5;
	font-size: 0.59rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.single-prediction__final-pick-metric > strong {
	color: #77df32;
	font-size: 1.35rem;
	line-height: 1.1;
}

.single-prediction__final-pick-track {
	display: block;
	height: 5px;
	margin-top: 0.55rem;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 999px;
}

.single-prediction__final-pick-track > span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #4eaf1d, #8ae126);
	border-radius: inherit;
}

.single-prediction__final-pick > footer {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.72rem clamp(1rem, 3vw, 1.5rem);
	color: #91a399;
	font-size: 0.62rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.single-prediction__final-pick > footer span {
	padding: 0.17rem 0.35rem;
	color: #dce9df;
	font-size: 0.54rem;
	font-weight: 850;
	background: rgba(255, 255, 255, 0.09);
	border-radius: 4px;
}

.single-prediction__analysis .entry-footer {
	padding-top: 1rem;
	margin-top: 1.4rem;
	color: #7c857f;
	font-size: 0.7rem;
	border-top: 1px solid #e7ece9;
}

.single-prediction__analysis .entry-footer a {
	color: #378f14;
	font-weight: 750;
	text-decoration: none;
}

.single-prediction__sidebar {
	position: sticky;
	top: 1rem;
	display: grid;
	gap: 1rem;
}

.single-prediction__related {
	padding: 1rem;
}

.single-prediction__responsible {
	position: relative;
	min-height: 178px;
	padding: 1.15rem;
	overflow: hidden;
	color: #fff;
	background:
		linear-gradient(90deg, rgba(3, 13, 9, 0.96) 0%, rgba(3, 17, 11, 0.82) 58%, rgba(3, 17, 11, 0.48) 100%),
		url("../images/stadium.png") center / cover;
	border-radius: 9px;
	box-shadow: 0 8px 25px rgba(4, 20, 11, 0.16);
}

.single-prediction__responsible::after {
	position: absolute;
	right: -32px;
	bottom: -48px;
	width: 145px;
	aspect-ratio: 1;
	content: "";
	border: 1px solid rgba(109, 201, 0, 0.2);
	border-radius: 50%;
	box-shadow: 0 0 0 25px rgba(109, 201, 0, 0.04);
}

.single-prediction__responsible > span {
	display: inline-flex;
	padding: 0.26rem 0.48rem;
	color: #bfc9c3;
	font-size: 0.53rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
}

.single-prediction__responsible .ui-title {
	position: relative;
	z-index: 1;
	margin: 0.65rem 0 0;
	color: var(--accent);
	font-size: 1.55rem;
	line-height: 1.08;
}

.single-prediction__responsible p {
	position: relative;
	z-index: 1;
	max-width: 210px;
	margin: 0.55rem 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.69rem;
	line-height: 1.45;
}

.single-prediction__related > header {
	justify-content: space-between;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #e5eae7;
}

.single-prediction__related > header > a {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	color: #399714;
	text-decoration: none;
	background: #eff8eb;
	border-radius: 50%;
}

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

.single-prediction__related li + li {
	border-top: 1px solid #e9edea;
}

.single-prediction__related li > a {
	display: flex;
	gap: 0.7rem;
	align-items: center;
	justify-content: space-between;
	padding-block: 0.75rem;
	text-decoration: none;
}

.single-prediction__related li > a > span {
	min-width: 0;
}

.single-prediction__related li strong,
.single-prediction__related li small {
	display: block;
}

.single-prediction__related li strong {
	overflow: hidden;
	color: #28312b;
	font-size: 0.72rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.single-prediction__related li small {
	margin-top: 0.15rem;
	color: #858e89;
	font-size: 0.61rem;
}

.single-prediction__related li b {
	color: #3d9f18;
	font-size: 0.8rem;
}

.single-prediction__latest {
	padding: 1.05rem;
	border-top: 3px solid var(--accent);
}

.single-prediction__latest li > a {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr) auto;
	gap: 0.7rem;
	padding-block: 0.85rem;
}

.single-prediction__latest-icon {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	color: #3d9f18;
	background: #eff8eb;
	border: 1px solid #d6ebcd;
	border-radius: 50%;
}

.single-prediction__latest-icon svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.single-prediction__latest-copy small {
	display: flex;
	gap: 0.16rem;
	flex-direction: column;
}

.single-prediction__latest li b {
	min-width: 28px;
	padding: 0.2rem 0.38rem;
	font-size: 0.72rem;
	text-align: center;
	background: #edf8e9;
	border-radius: 999px;
}

.single-prediction__latest li > a:hover strong,
.single-prediction__latest li > a:focus-visible strong {
	color: #348f11;
}

.single-prediction__leagues {
	padding: 1rem;
	border-color: #dfe6e1;
	box-shadow: 0 8px 28px rgba(18, 51, 29, 0.055);
}

.single-prediction__leagues > header .ui-title {
	font-size: 1rem;
}

.single-prediction__leagues li > a {
	grid-template-columns: minmax(0, 1.4fr) minmax(44px, 0.65fr) auto;
}

.single-prediction__main > .post-navigation,
.single-prediction__main > .comments-area {
	border-top: 1px solid #e6ebe8;
}

.single-prediction__main > .post-navigation .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.single-prediction__main > .post-navigation a {
	display: block;
	padding: 0.75rem;
	color: #364039;
	font-size: 0.7rem;
	text-decoration: none;
	background: #f7f9f8;
	border: 1px solid #e2e7e4;
	border-radius: 7px;
}

.single-prediction .comments-area .comments-title,
.single-prediction .comments-area .comment-reply-title {
	margin: 0 0 0.7rem;
	color: #1b231e;
	font-size: 1.1rem;
}

.single-prediction .comments-area .comment-notes,
.single-prediction .comments-area .logged-in-as {
	color: #727c76;
	font-size: 0.74rem;
}

.single-prediction .comments-area .comment-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.single-prediction .comments-area .comment-form > p {
	margin: 0;
}

.single-prediction .comments-area .comment-form-comment,
.single-prediction .comments-area .comment-notes,
.single-prediction .comments-area .logged-in-as,
.single-prediction .comments-area .comment-form-cookies-consent,
.single-prediction .comments-area .form-submit {
	grid-column: 1 / -1;
}

.single-prediction .comments-area .comment-form label {
	display: block;
	margin-bottom: 0.28rem;
	color: #59635d;
	font-size: 0.68rem;
	font-weight: 750;
}

.single-prediction .comments-area input[type="text"],
.single-prediction .comments-area input[type="email"],
.single-prediction .comments-area input[type="url"],
.single-prediction .comments-area textarea {
	width: 100%;
	padding: 0.68rem 0.75rem;
	color: #1d251f;
	font: inherit;
	font-size: 0.8rem;
	background: #fafbfa;
	border: 1px solid #dce3de;
	border-radius: 7px;
	outline: 0;
}

.single-prediction .comments-area textarea {
	min-height: 130px;
	resize: vertical;
}

.single-prediction .comments-area input:focus,
.single-prediction .comments-area textarea:focus {
	background: #fff;
	border-color: #62b83a;
	box-shadow: 0 0 0 3px rgba(98, 184, 58, 0.12);
}

.single-prediction .comments-area .comment-form-cookies-consent {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
	color: #69736d;
	font-size: 0.68rem;
}

.single-prediction .comments-area .comment-form-cookies-consent label {
	margin: 0;
	font-weight: 500;
}

.single-prediction .comments-area .submit {
	min-height: 41px;
	padding: 0.65rem 1.1rem;
	color: #fff;
	font: inherit;
	font-size: 0.72rem;
	font-weight: 800;
	background: #3d9f18;
	border: 0;
	border-radius: 7px;
	cursor: pointer;
}

@media (max-width: 1050px) {
	.single-prediction__layout {
		grid-template-columns: minmax(0, 1fr) 310px;
	}

	
}

@media (max-width: 900px) {
	.single-prediction__layout {
		grid-template-columns: 1fr;
	}

	.single-prediction__sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-prediction__related {
		grid-column: 1 / -1;
	}

	.single-prediction__latest {
		grid-column: auto;
	}
}

@media (max-width: 700px) {
	.single-prediction__analysis .entry-content h2,
.single-prediction__analysis .entry-content h3 {
		padding: 0.8rem 0.9rem 0.8rem 1.1rem;
		border-radius: 9px;
	}

	.single-prediction__analysis .entry-content ul,
.single-prediction__analysis .entry-content ol {
		padding-top: 0.85rem;
		padding-right: 0.85rem;
		padding-bottom: 0.85rem;
		margin-block: 1rem 1.25rem;
	}

	.single-prediction__analysis .entry-content ul {
		padding-left: 2.15rem;
	}

	.single-prediction__analysis .entry-content ol {
		padding-left: 0.85rem;
	}

	.single-prediction__analysis .entry-content .wp-block-table {
		margin-right: -1rem;
		margin-left: -1rem;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}

	.single-prediction__analysis .entry-content .wp-block-table th,
.single-prediction__analysis .entry-content .wp-block-table td {
		padding: 0.72rem 0.68rem;
	}

	.single-prediction__final-pick-body {
		grid-template-columns: 1fr;
	}

	.single-prediction__final-pick-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.55rem;
	}

	

	

	

	

	

	.single-prediction__layout {
		padding-top: 1rem;
	}

	

	

	

	

	

	

	

	

	

	

	

	.single-prediction__analysis,
.single-prediction__main > .post-navigation,
.single-prediction__main > .comments-area {
		padding: 1rem;
	}

	.single-prediction__sidebar {
		grid-template-columns: 1fr;
	}

	.single-prediction__related {
		grid-column: auto;
	}

	.single-prediction .comments-area .comment-form {
		grid-template-columns: 1fr;
	}

	.single-prediction .comments-area .comment-form > p {
		grid-column: 1;
	}
}
.prediction-page-hero--express .prediction-page-hero__eyebrow {
	color: #9af044;
}

.single-prediction__express-slip {
	margin: 0 0 1.5rem;
	overflow: hidden;
	background: #f9fcf7;
	border: 1px solid #cfe7c4;
	border-radius: 13px;
	box-shadow: 0 12px 30px rgba(40, 102, 23, 0.07);
}

.single-prediction__express-slip > header {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.1rem;
	color: #fff;
	background: linear-gradient(110deg, #173b1d, #245f21);
}

.single-prediction__express-slip > header small,
.single-prediction__express-slip > header > span {
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.single-prediction__express-slip > header .ui-title {
	margin-top: 0.12rem;
	font-size: 1.05rem;
}

.single-prediction__express-slip > header > span {
	padding: 0.55rem 0.7rem;
	color: #dcebd8;
	background: rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
}

.single-prediction__express-slip > header > span strong {
	margin-left: 0.35rem;
	color: #91ef36;
	font-size: 1rem;
}

.single-prediction__express-slip ol {
	padding: 0;
	margin: 0;
	list-style: none;
}

.single-prediction__express-slip li {
	display: grid;
	grid-template-columns: 34px minmax(190px, 1fr) minmax(120px, 0.55fr) 72px;
	gap: 0.8rem;
	align-items: center;
	padding: 0.9rem 1.1rem;
}

.single-prediction__express-slip li + li {
	border-top: 1px solid #dfebe0;
}

.single-prediction__express-number {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	color: #2e8f12;
	font-size: 0.72rem;
	font-weight: 900;
	background: #eaf6e5;
	border: 1px solid #cce8bf;
	border-radius: 50%;
}

.single-prediction__express-match,
.single-prediction__express-pick,
.single-prediction__express-odds {
	min-width: 0;
}

.single-prediction__express-match > strong,
.single-prediction__express-pick > strong,
.single-prediction__express-odds > strong {
	display: block;
	color: #1c2a20;
	font-size: 0.82rem;
	line-height: 1.3;
}

.single-prediction__express-match small {
	display: flex;
	gap: 0.6rem;
	margin-top: 0.2rem;
	color: #7b877f;
	font-size: 0.64rem;
	flex-wrap: wrap;
}

.single-prediction__express-pick small,
.single-prediction__express-odds small {
	display: block;
	margin-bottom: 0.14rem;
	color: #8b958f;
	font-size: 0.57rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.single-prediction__express-pick > strong,
.single-prediction__express-odds > strong {
	color: #318f13;
}

.single-prediction__express-odds {
	text-align: right;
}

@media (max-width: 720px) {
	.single-prediction__express-slip > header {
		align-items: flex-start;
		flex-direction: column;
	}

	.single-prediction__express-slip li {
		grid-template-columns: 30px minmax(0, 1fr) 62px;
		gap: 0.65rem;
	}

	.single-prediction__express-pick {
		grid-column: 2 / -1;
	}
}
