/* Product Digital */
.digital-page {
	--digital-yellow: #ffbc42;
	--digital-green: #267b68;
	--digital-cream: #fff8e5;
	--digital-blue-soft: #edf5ff;
	overflow: hidden;
	color: #252b36;
}

.digital-container {
	width: min(100% - 2rem, 68rem);
	margin-inline: auto;
}

.digital-section {
	padding-block: clamp(4rem, 8vw, 7rem);
}

.digital-page h1,
.digital-page h2,
.digital-page p {
	margin-top: 0;
}

.digital-richtext {
	line-height: 1.75;
}

.digital-richtext .block,
.digital-richtext .block-layout,
.digital-richtext .layout-element,
.digital-richtext .text-box {
	display: contents;
}

.digital-richtext p:last-child,
.digital-richtext ul:last-child {
	margin-bottom: 0;
}

.digital-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	padding: 0.85rem 1.2rem;
	border-radius: 0.7rem;
	background: var(--color-primary);
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 160ms ease;
}

.digital-button:hover {
	background: #e9453d;
	color: #fff;
}

.digital-button:focus-visible {
	outline: 3px solid var(--digital-yellow);
	outline-offset: 4px;
}

/* Hero */
.digital-hero {
	position: relative;
	display: grid;
	min-height: clamp(36rem, 65vw, 48rem);
	place-items: center;
	isolation: isolate;
	overflow: hidden;
	background: #162b27;
	color: #fff;
	text-align: center;
}

.digital-hero::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 21, 19, 0.46), rgba(10, 21, 19, 0.76));
	content: "";
}

.digital-hero__background {
	position: absolute;
	z-index: -2;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.digital-hero__content {
	padding-block: clamp(4rem, 10vw, 8rem);
}

.digital-hero__logo {
	display: block;
	width: clamp(8rem, 17vw, 12rem);
	height: auto;
	margin: 0 auto 1.25rem;
}

.digital-hero h1 {
	max-width: 54rem;
	margin: 0 auto;
	color: var(--digital-yellow);
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.1;
	letter-spacing: -0.035em;
}

.digital-hero__description {
	max-width: 58rem;
	margin: 1.25rem auto 1.75rem;
	font-size: 1rem;
}

/* About */
.digital-about {
	background: #fff;
}

.digital-about__content {
	max-width: 54rem;
}

.digital-about h2 {
	margin-bottom: 1.5rem;
	color: var(--color-secondary);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	line-height: 1.15;
	letter-spacing: -0.03em;
	text-align: center;
}

.digital-about .digital-richtext {
	font-size: 0.95rem;
}

.digital-about .digital-richtext p + p {
	margin-top: 1.25rem;
}

/* Product cards */
.digital-products {
	background: #f4f6f8;
}

.digital-products__grid {
	display: grid;
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: stretch;
	max-width: 64rem;
}

.digital-product-card {
	display: flex;
	overflow: hidden;
	flex-direction: column;
	border: 1px solid #dfe4e9;
	border-radius: 1.1rem;
	background: #fff;
	box-shadow: 0 0.5rem 1.5rem rgba(35, 45, 60, 0.06);
}

.digital-product-card__media {
	position: relative;
	display: grid;
	min-height: 13rem;
	padding: 1.25rem;
	place-items: center;
	background: var(--digital-cream);
}

.digital-product-card:nth-child(even) .digital-product-card__media {
	background: var(--digital-blue-soft);
}

.digital-product-card__image {
	display: block;
	width: min(100%, 18rem);
	height: auto;
	filter: drop-shadow(0 0.6rem 0.6rem rgba(35, 45, 62, 0.12));
}

.digital-product-card__discount {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	padding: 0.4rem 0.65rem;
	border-radius: 0.45rem;
	background: var(--digital-green);
	color: #fff;
	font-family: var(--font-heading);
	font-size: 0.75rem;
	font-weight: 700;
}

.digital-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 1.25rem;
}

.digital-product-card h2 {
	margin-bottom: 0.65rem;
	color: var(--color-secondary);
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	line-height: 1.25;
}

.digital-product-card__price {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem 0.8rem;
	align-items: baseline;
	margin-bottom: 1rem;
}

.digital-product-card__price del {
	color: #717784;
	font-size: 0.82rem;
}

.digital-product-card__price strong {
	color: var(--color-primary);
	font-family: var(--font-heading);
	font-size: 1.65rem;
	line-height: 1;
}

.digital-product-card__features {
	width: 100%;
	margin-bottom: 1.75rem;
	color: #3e4653;
	font-size: 0.85rem;
}

.digital-product-card__features p:first-child {
	font-weight: 500;
}

.digital-product-card__button {
	width: 100%;
	margin-top: auto;
}

@media (min-width: 48rem) {
	.digital-container {
		width: min(100% - 3rem, 68rem);
	}

	.digital-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 32rem) {
	.digital-button {
		width: 100%;
	}

	.digital-product-card__media {
		min-height: 15rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.digital-button {
		transition: none;
	}
}
