/*
 * Sunderland Giveaway — page styles
 * Scoped to body.sunderland-giveaway.
 * Loaded only on page-sunderland-giveaway.php.
 * Mobile-first: base = mobile, overrides via @media (min-width).
 */

/* Variables */
:root {
	/* Brand palette (matches Figma tokens) */
	--sg-black: #141313;
	--sg-bg: #141313;
	--sg-bg-dark: #191817;
	--sg-white: #fff;
	--sg-off-white: #e3e0e0;
	--sg-muted: #b3afa9;
	--sg-gray: #979797;
	--sg-orange: #f3981f;
	--sg-orange-dark: #e57625;
	--sg-orange-light: #ffaf45;

	/* Gradients */
	--sg-cta-gradient: linear-gradient(105.97deg, #f3981f 0%, #e57625 100%);
	--sg-title-gradient: linear-gradient(90deg, #ffc271 0%, #ff9242 100%);

	/* Shadows */
	--sg-cta-shadow: 0 2px 21.2px rgba(243, 152, 31, 0.39);
	--sg-heading-shadow: 0 14px 24px rgba(0, 0, 0, 0.6);
	--sg-card-shadow: 0 4px 30px rgba(243, 152, 31, 0.3);

	/* Surfaces */
	--sg-card-bg: #201914;
	--sg-card-border: #784c0f;
	--sg-outline: #332e2a;
	--sg-divider: #747474;

	/* Buttons */
	--sg-btn-primary-bg: linear-gradient(105.97deg, #f3981f 0%, #e57625 100%);
	--sg-btn-primary-color: #fff;
	--sg-btn-primary-shadow: 0 2px 21.2px rgba(243, 152, 31, 0.39);
	--sg-btn-secondary-bg: rgba(20, 19, 19, 0.8);
	--sg-btn-secondary-border: #332e2a;
	--sg-btn-secondary-color: #fff;

	/* Radii */
	--sg-radius: 12px;
	--sg-radius-sm: 7px;
	--sg-radius-pill: 40px;

	/* Layout */
	--sg-wrapper-max: 976px;
}

/* Base */
body.sunderland-giveaway {
	margin: 0;
	background: var(--sg-bg);
	font-family: "Figtree", sans-serif;
	color: var(--sg-white);
}

body.sunderland-giveaway *,
body.sunderland-giveaway *::before,
body.sunderland-giveaway *::after {
	box-sizing: border-box;
}

body.sunderland-giveaway ::selection {
	background: var(--sg-orange);
	color: var(--sg-black);
}

body.sunderland-giveaway img {
	max-width: 100%;
	height: auto;
}

body.sunderland-giveaway a {
	color: var(--sg-orange);
	text-decoration: none;
}

body.sunderland-giveaway a:hover {
	color: var(--sg-orange-light);
}

body.sunderland-giveaway .wrapper {
	max-width: calc(var(--sg-wrapper-max) + 14px);
	padding-inline: 7px;
	margin-inline: auto;
}

@media (min-width: 768px) {
	body.sunderland-giveaway .wrapper {
		max-width: calc(var(--sg-wrapper-max) + 24px);
		padding-inline: 12px;
	}
}

/* Headings */
body.sunderland-giveaway .sg-heading-lg,
body.sunderland-giveaway .sg-heading-sm {
	text-align: center;
	color: var(--sg-white);
	margin: 0;
}

body.sunderland-giveaway .sg-heading-lg span,
body.sunderland-giveaway .sg-heading-sm span {
	background: var(--sg-title-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

body.sunderland-giveaway .sg-heading-lg {
	font-weight: 600;
	font-size: 42px;
	line-height: 1;
}

@media (min-width: 768px) {
	body.sunderland-giveaway .sg-heading-lg {
		font-size: 58px;
	}
}

@media (min-width: 992px) {
	body.sunderland-giveaway .sg-heading-lg {
		font-size: 68px;
	}
}

body.sunderland-giveaway .sg-heading-sm {
	font-weight: 600;
	font-size: 28px;
	line-height: 1.1;
}

@media (min-width: 768px) {
	body.sunderland-giveaway .sg-heading-sm {
		font-size: 36px;
	}
}

body.sunderland-giveaway .sg-subtitle {
	font-size: 16px;
	line-height: 1.4;
	color: var(--sg-muted);
	text-align: center;
	margin: 0;
}

@media (min-width: 768px) {
	body.sunderland-giveaway .sg-subtitle {
		font-size: 18px;
	}
}

body.sunderland-giveaway .sg-body-text {
	font-size: 16px;
	line-height: 1.5;
	color: var(--sg-muted);
	margin: 0;
}

/* Buttons */
body.sunderland-giveaway .btn-primary,
body.sunderland-giveaway .sg-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border: 0;
	border-radius: var(--sg-radius);
	background: var(--sg-btn-primary-bg);
	color: var(--sg-btn-primary-color);
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	cursor: pointer;
	box-shadow: var(--sg-btn-primary-shadow);
	transition:
		transform 0.15s ease,
		filter 0.15s ease;
}

body.sunderland-giveaway .btn-primary:hover,
body.sunderland-giveaway .sg-btn-primary:hover {
	filter: brightness(1.05);
	color: var(--sg-btn-primary-color);
	transform: translateY(-1px);
}

body.sunderland-giveaway .sg-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border: 1px solid var(--sg-btn-secondary-border);
	border-radius: var(--sg-radius);
	background: var(--sg-btn-secondary-bg);
	color: var(--sg-btn-secondary-color);
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition:
		background 0.15s ease,
		border-color 0.15s ease;
}

body.sunderland-giveaway .sg-btn-secondary:hover {
	background: rgba(20, 19, 19, 1);
	border-color: var(--sg-orange-dark);
	color: var(--sg-btn-secondary-color);
}

/* Cards */
body.sunderland-giveaway .sg-card {
	background: var(--sg-card-bg);
	border: 1px solid var(--sg-card-border);
	border-radius: var(--sg-radius);
	box-shadow: var(--sg-card-shadow);
	padding: 20px;
}

@media (min-width: 768px) {
	body.sunderland-giveaway .sg-card {
		padding: 28px;
	}
}

body.sunderland-giveaway .sg-card--flat {
	box-shadow: none;
}

/* Coupon / Code */
body.sunderland-giveaway .sg-coupon-code {
	display: inline-block;
	padding: 10px 20px;
	border: 1px dashed var(--sg-orange);
	border-radius: var(--sg-radius-sm);
	background: rgba(243, 152, 31, 0.08);
	color: var(--sg-orange-light);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Hero bg */
body.sunderland-giveaway .sg-hero-bg {
	position: relative;
	background: url("../img/hero-mobile.jpg") center top / 100% auto no-repeat;
	background-color: var(--sg-bg);
}

@media (min-width: 768px) {
	body.sunderland-giveaway .sg-hero-bg {
		background-image: url("../img/hero-desktop.jpg");
		background-size: cover;
	}

	body.sunderland-giveaway .sg-hero-bg::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 120px;
		background: linear-gradient(to bottom, transparent, var(--sg-bg));
		pointer-events: none;
		z-index: 2;
	}
}

/* Header */
body.sunderland-giveaway .sg-header {
	position: relative;
	padding-block: 40px 10px;
}

body.sunderland-giveaway .sg-header .wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

body.sunderland-giveaway .sg-header__logo {
	flex-shrink: 0;
}

body.sunderland-giveaway .sg-header__logo img {
	display: block;
	width: 52px;
	height: auto;
}

@media (min-width: 992px) {
	body.sunderland-giveaway .sg-header {
		padding-block: 50px 35px;
	}

	body.sunderland-giveaway .sg-header__logo img {
		width: 80px;
	}
}

/* Hero */
body.sunderland-giveaway .sg-hero {
	position: relative;
	z-index: 1;
	padding-bottom: 50px;
	text-align: center;
}

body.sunderland-giveaway .sg-hero__title {
	margin: 0;
	font-size: 72px;
	font-weight: 700;
	line-height: 1;
	background: var(--sg-title-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@media (min-width: 768px) {
	body.sunderland-giveaway .sg-hero__title {
		font-size: 78px;
	}
}

body.sunderland-giveaway .sg-hero__sub {
	margin: 0 0 20px;
	font-size: 40px;
	font-weight: 400;
	line-height: 1;
	color: var(--sg-white);
}

@media (min-width: 768px) {
	body.sunderland-giveaway .sg-hero__sub {
		font-size: 68px;
	}
}

body.sunderland-giveaway .sg-hero__desc {
	margin: 0 auto;
	max-width: 331px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--sg-white);
}

@media (min-width: 768px) {
	body.sunderland-giveaway .sg-hero__desc {
		max-width: 600px;
		font-size: 22px;
	}
}

body.sunderland-giveaway .sg-hero__trust {
	margin-top: 50px;
	display: flex;
	justify-content: center;
}

@media (min-width: 768px) {
	body.sunderland-giveaway .sg-hero__trust {
		margin-top: 40px;
	}
}

/* Giveaway Card */
body.sunderland-giveaway .sg-giveaway-card {
	position: relative;
	z-index: 3;
	padding-bottom: 20px;
}

@media (min-width: 768px) {
	body.sunderland-giveaway .sg-giveaway-card {
		padding-bottom: 40px;
	}
}

body.sunderland-giveaway .sg-giveaway-card .wrapper {
	--sg-wrapper-max: 640px;
}

body.sunderland-giveaway .sg-giveaway-card__frame {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--sg-card-border);
	border-radius: 10px;
	background: var(--sg-black);
	box-shadow: var(--sg-card-shadow);
	aspect-ratio: 640 / 336;
}

body.sunderland-giveaway .sg-giveaway-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

/* Prizes */
body.sunderland-giveaway .sg-prizes {
	position: relative;
	padding-block: 30px 25px;
	background-color: var(--sg-bg);
}

body.sunderland-giveaway .sg-prizes .wrapper {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

body.sunderland-giveaway .sg-prizes__title {
	font-size: 58px;
}

body.sunderland-giveaway .sg-prizes__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	align-items: center;
}

body.sunderland-giveaway .sg-prizes__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: 361px;
	padding: 20px 0;
	background: var(--sg-card-bg);
	border: 1px solid var(--sg-card-border);
	border-radius: 10px;
	box-shadow: 0 4px 30px rgba(243, 152, 31, 0.4);
}

body.sunderland-giveaway .sg-prizes__icon {
	flex-shrink: 0;
	width: 66px;
	height: 66px;
	object-fit: contain;
}

body.sunderland-giveaway .sg-prizes__icon--round {
	border-radius: 50%;
	object-fit: cover;
}

body.sunderland-giveaway .sg-prizes__text,
body.sunderland-giveaway .sg-prizes__ordinal {
	margin: 0;
	font-size: 26px;
	font-weight: 600;
	line-height: 1;
	color: var(--sg-white);
	text-align: center;
}

body.sunderland-giveaway .sg-prizes__ordinal {
	white-space: nowrap;
}

body.sunderland-giveaway .sg-prizes__accent {
	background: var(--sg-title-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	text-underline-offset: 2px;
}

body.sunderland-giveaway .sg-prizes__text .sg-prizes__accent {
	display: block;
	margin-top: 10px;
}

body.sunderland-giveaway .sg-prizes__accent--block {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
}

body.sunderland-giveaway .sg-prizes__bonus {
	margin: 0;
	max-width: 317px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	color: var(--sg-white);
	text-align: center;
}

body.sunderland-giveaway .sg-prizes__bonus-accent {
	background: var(--sg-title-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@media (min-width: 992px) {
	body.sunderland-giveaway .sg-prizes {
		padding-block: 50px;
		background: url("../img/prize-bg.jpg") center center / cover no-repeat
			var(--sg-bg);
	}

	body.sunderland-giveaway .sg-prizes::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		height: 160px;
		background: linear-gradient(to bottom, transparent, var(--sg-bg));
		pointer-events: none;
	}

	body.sunderland-giveaway .sg-prizes .wrapper {
		gap: 50px;
	}

	body.sunderland-giveaway .sg-prizes__list {
		gap: 20px;
	}

	body.sunderland-giveaway .sg-prizes__card {
		flex-direction: row;
		max-width: 662px;
		padding: 20px 26px;
		border-radius: 70px;
	}

	body.sunderland-giveaway .sg-prizes__icon {
		width: 42px;
		height: 42px;
	}

	body.sunderland-giveaway .sg-prizes__accent--block {
		font-size: 26px;
		line-height: 1;
		max-width: 472px;
	}

	body.sunderland-giveaway .sg-prizes__text {
		white-space: nowrap;
	}

	body.sunderland-giveaway .sg-prizes__text .sg-prizes__accent {
		display: inline;
		margin-top: 0;
	}

	body.sunderland-giveaway .sg-prizes__br-mobile {
		display: none;
	}

	body.sunderland-giveaway .sg-prizes__bonus {
		max-width: none;
		font-size: 22px;
		line-height: 1;
	}
}

/* Participate */
body.sunderland-giveaway .sg-participate {
	padding-top: 10px;
	text-align: center;
}

body.sunderland-giveaway .sg-participate .wrapper {
	--sg-wrapper-max: 705px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

body.sunderland-giveaway .sg-participate .sg-heading-lg {
	margin: 0;
	font-size: 58px;
}

body.sunderland-giveaway .sg-participate__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

body.sunderland-giveaway .sg-participate__desc {
	margin: 0;
	max-width: 349px;
	font-size: 18px;
	line-height: 1.2;
	color: var(--sg-gray);
}

body.sunderland-giveaway .sg-participate__desc strong {
	font-weight: 400;
	color: var(--sg-white);
}

body.sunderland-giveaway .sg-participate__widget {
	width: 100%;
	max-width: 361px;
}

body.sunderland-giveaway .sg-participate__widget .e-widget-wrapper {
	box-shadow: 0 3.978px 63.644px 0 rgba(243, 152, 31, 0.2) !important;
}

@media (min-width: 768px) {
	body.sunderland-giveaway .sg-participate__desc {
		max-width: none;
		font-size: 20px;
	}

	body.sunderland-giveaway .sg-participate__widget {
		max-width: 537px;
	}
}

@media (min-width: 992px) {
	body.sunderland-giveaway .sg-participate {
		padding-top: 50px;
	}

	body.sunderland-giveaway .sg-participate .wrapper {
		gap: 43px;
	}

	body.sunderland-giveaway .sg-participate .sg-heading-lg {
		font-size: 68px;
	}

	body.sunderland-giveaway .sg-participate__heading {
		gap: 30px;
	}

	body.sunderland-giveaway .sg-participate__desc {
		font-size: 22px;
	}
}

/* Timeline */
body.sunderland-giveaway .sg-timeline {
	margin-top: 50px;
	text-align: center;
}

body.sunderland-giveaway .sg-timeline .wrapper {
	--sg-wrapper-max: 473px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

body.sunderland-giveaway .sg-timeline .sg-heading-lg {
	margin: 0;
	font-size: 58px;
}

body.sunderland-giveaway .sg-timeline__card {
	position: relative;
	width: 100%;
	max-width: 361px;
	display: flex;
	flex-direction: column;
	gap: 47px;
	padding: 30px 20px;
	border-radius: var(--sg-radius);
	background: rgba(25, 24, 23, 0.4);
	box-shadow: 0 4px 30px rgba(243, 152, 31, 0.1);
	opacity: 0.9;
}

body.sunderland-giveaway .sg-timeline__card::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid transparent;
	border-radius: inherit;
	background: linear-gradient(
			to left,
			rgba(116, 116, 116, 0.2),
			rgba(255, 255, 255, 0.2)
		)
		border-box;
	-webkit-mask:
		linear-gradient(#fff 0 0) padding-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask:
		linear-gradient(#fff 0 0) padding-box,
		linear-gradient(#fff 0 0);
	mask-composite: exclude;
	pointer-events: none;
}

body.sunderland-giveaway .sg-timeline__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

body.sunderland-giveaway .sg-timeline__label {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	line-height: 1.2;
}

body.sunderland-giveaway .sg-timeline__emoji {
	color: var(--sg-gray);
}

body.sunderland-giveaway .sg-timeline__label-text {
	background: var(--sg-title-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

body.sunderland-giveaway .sg-timeline__date {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
	color: var(--sg-white);
}

@media (min-width: 768px) {
	body.sunderland-giveaway .sg-timeline__card {
		max-width: 473px;
		gap: 40px;
		padding: 30px 42px;
	}
}

@media (min-width: 992px) {
	body.sunderland-giveaway .sg-timeline {
		margin-top: 100px;
	}

	body.sunderland-giveaway .sg-timeline .sg-heading-lg {
		font-size: 68px;
	}

	body.sunderland-giveaway .sg-timeline__label {
		font-size: 18px;
	}

	body.sunderland-giveaway .sg-timeline__date {
		font-size: 22px;
	}
}

/* Why */
body.sunderland-giveaway .sg-why {
	margin-top: 50px;
	text-align: center;
}

body.sunderland-giveaway .sg-why .wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

body.sunderland-giveaway .sg-why .sg-heading-lg {
	margin: 0;
	max-width: 346px;
	font-size: 58px;
}

body.sunderland-giveaway .sg-why__subtitle {
	margin: 0;
	max-width: 346px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--sg-white);
}

body.sunderland-giveaway .sg-why__cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	width: 100%;
	max-width: 312px;
	margin-top: 10px;
}

body.sunderland-giveaway .sg-why__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 20px 24px;
	min-height: 198px;
	border-radius: 10px;
	background: #161515;
	border: 1px solid transparent;
}

body.sunderland-giveaway .sg-why__card::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid transparent;
	border-radius: inherit;
	background: linear-gradient(
			to top right,
			rgba(255, 255, 255, 0.2),
			rgba(116, 116, 116, 0.2),
			#f3981f
		)
		border-box;
	-webkit-mask:
		linear-gradient(#fff 0 0) padding-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask:
		linear-gradient(#fff 0 0) padding-box,
		linear-gradient(#fff 0 0);
	mask-composite: exclude;
	pointer-events: none;
}

body.sunderland-giveaway .sg-why__card-title {
	margin: 0;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.1;
	text-align: center;
	background: var(--sg-title-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

body.sunderland-giveaway .sg-why__card-emoji {
	-webkit-text-fill-color: initial;
}

body.sunderland-giveaway .sg-why__card-desc {
	margin: 0;
	max-width: 264px;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.2;
	color: var(--sg-white);
}

@media (min-width: 768px) {
	body.sunderland-giveaway .sg-why__subtitle {
		max-width: 381px;
		font-size: 22px;
	}

	body.sunderland-giveaway .sg-why__cards {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px 20px;
		max-width: 976px;
	}

	body.sunderland-giveaway .sg-why__card-title {
		font-size: 22px;
	}

	body.sunderland-giveaway .sg-why__card-desc {
		font-size: 16px;
	}
}

@media (min-width: 992px) {
	body.sunderland-giveaway .sg-why {
		margin-top: 100px;
	}

	body.sunderland-giveaway .sg-why .sg-heading-lg {
		max-width: none;
		font-size: 68px;
	}
}

/* Success Story */
body.sunderland-giveaway .sg-story {
	margin-top: 50px;
	margin-bottom: 100px;
	text-align: center;
}

body.sunderland-giveaway .sg-story .wrapper {
	--sg-wrapper-max: 764px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 23px;
}

body.sunderland-giveaway .sg-story .sg-heading-lg {
	margin: 0;
	width: 100%;
	font-size: 58px;
}

body.sunderland-giveaway .sg-story__top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

body.sunderland-giveaway .sg-story__desc {
	margin: 0;
	max-width: 340px;
	font-size: 18px;
	line-height: 1.2;
	color: var(--sg-gray);
}

body.sunderland-giveaway .sg-story__desc strong {
	font-weight: 400;
	color: var(--sg-white);
}

body.sunderland-giveaway .sg-story__visual {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

body.sunderland-giveaway .sg-story__photo {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: auto;
}

body.sunderland-giveaway .sg-story__yt-card {
	position: absolute;
	bottom: 12%;
	left: 50%;
	width: max-content;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 20px 30px;
	border-radius: 10px;
	border: 1px solid rgba(243, 152, 31, 0.07);
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(17px);
	-webkit-backdrop-filter: blur(17px);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s;
}

body.sunderland-giveaway .sg-story__yt-card:hover,
body.sunderland-giveaway .sg-story__yt-card:focus-visible {
	border-color: rgba(243, 152, 31, 0.25);
	text-decoration: none;
	color: inherit;
}

body.sunderland-giveaway .sg-story__yt-text {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.36px;
	color: var(--sg-white);
}

body.sunderland-giveaway .sg-story__yt-icon {
	width: 32px;
	height: auto;
}

body.sunderland-giveaway .sg-story__bottom {
	margin-top: 27px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 100%;
}

body.sunderland-giveaway .sg-story__limited {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
	color: var(--sg-gray);
}

body.sunderland-giveaway .sg-story__limited strong {
	font-weight: 400;
	color: var(--sg-white);
}

body.sunderland-giveaway .sg-story__coupon {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 100%;
	max-width: 361px;
	padding: 30px 52px;
	border: 1px solid var(--sg-divider);
	border-radius: var(--sg-radius);
	background: rgba(25, 24, 23, 0.4);
	box-shadow: 0 4px 30px rgba(243, 152, 31, 0.4);
	opacity: 0.9;
}

body.sunderland-giveaway .sg-story__coupon-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.2;
}

body.sunderland-giveaway .sg-story__coupon-label {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	background: var(--sg-title-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

body.sunderland-giveaway .sg-story__coupon-code {
	margin: 0;
	font-size: 42px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--sg-white);
}

body.sunderland-giveaway .sg-story__cta {
	padding: 16px 20px;
	font-size: 18px;
	color: var(--sg-black);
	text-wrap: nowrap;
}

body.sunderland-giveaway .sg-story__cta:hover {
	color: var(--sg-black);
}

body.sunderland-giveaway .sg-story__more {
	position: relative;
	z-index: 1;
	margin-top: -35px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 9px;
	padding: 10px 30px;
	white-space: nowrap;
	border: 1px solid var(--sg-btn-secondary-border);
	border-radius: 10px;
	background: var(--sg-btn-secondary-bg);
	color: var(--sg-orange);
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	transition:
		background 0.15s ease,
		border-color 0.15s ease,
		color 0.15s ease;
}

body.sunderland-giveaway .sg-story__more:hover {
	background: rgba(20, 19, 19, 1);
	border-color: var(--sg-orange-dark);
	color: var(--sg-orange-light);
}

body.sunderland-giveaway .sg-story__more-arrow {
	flex-shrink: 0;
	font-size: 18px;
	line-height: 1;
}

@media (min-width: 768px) {
	body.sunderland-giveaway .sg-story {
		margin-bottom: 160px;
	}

	body.sunderland-giveaway .sg-story__top {
		gap: 30px;
	}

	body.sunderland-giveaway .sg-story__desc {
		max-width: 705px;
		font-size: 20px;
	}

	body.sunderland-giveaway .sg-story__photo {
		width: 510px;
	}

	body.sunderland-giveaway .sg-story__yt-card {
		padding: 20px;
	}

	body.sunderland-giveaway .sg-story__yt-text {
		font-size: 22px;
		letter-spacing: -0.44px;
	}

	body.sunderland-giveaway .sg-story__yt-icon {
		width: 38px;
	}

	body.sunderland-giveaway .sg-story__bottom {
		gap: 25px;
	}

	body.sunderland-giveaway .sg-story__coupon {
		max-width: 451px;
	}

	body.sunderland-giveaway .sg-story__coupon-label {
		font-size: 18px;
	}

	body.sunderland-giveaway .sg-story__coupon-code {
		font-size: 52px;
	}

	body.sunderland-giveaway .sg-story__cta {
		width: 100%;
		padding: 16px 28px;
	}

	body.sunderland-giveaway .sg-story__more {
		width: auto;
	}
}

@media (min-width: 992px) {
	body.sunderland-giveaway .sg-story {
		margin-top: 100px;
	}

	body.sunderland-giveaway .sg-story .sg-heading-lg {
		font-size: 68px;
	}

	body.sunderland-giveaway .sg-story__desc {
		font-size: 22px;
	}

	body.sunderland-giveaway .sg-story__limited {
		font-size: 22px;
	}
}
