/**
 * Public offer cards (clicklabs / SHYFT).
 */

.shyft-offers {
	display: grid;
	gap: clamp(24px, 4vw, 40px);
	width: 100%;
	max-width: 100%;
}

.shyft-offer {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
	gap: clamp(20px, 3vw, 32px);
	align-items: center;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 15px;
	background: transparent;
	border-radius: 0;
}

.shyft-offer::before {
	content: "";
	position: absolute;
	inset: 15px;
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 20px;
	pointer-events: none;
}

.shyft-offer__media {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.shyft-offer__image {
	display: block;
	width: 80%;
	max-width: 80%;
	height: auto;
	margin-left: auto;
	object-fit: contain;
	border-radius: 20px;
	box-shadow: 0 16px 40px rgba(20, 35, 28, 0.12);
}

.shyft-offer__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	width: 100%;
	max-width: 100%;
}

.shyft-offer__deadline {
	display: inline-flex;
	width: fit-content;
	margin: 0 0 24px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.68);
	color: #9c8f78;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.3;
}

.shyft-offer__headline {
	max-width: 920px;
	margin: 0 0 22px;
	font-size: clamp(36px, 5vw, 72px);
	line-height: 0.95;
	letter-spacing: -0.06em;
	color: #172a39;
}

.shyft-offer__headline strong {
	color: #25c96b;
	font-weight: inherit;
}

.shyft-offer__text {
	max-width: 920px;
	margin: 0 0 18px;
	font-size: clamp(16px, 1.2vw, 19px);
	line-height: 1.8;
	color: rgba(23, 42, 57, 0.68);
}

.shyft-offer__text p {
	margin: 0 0 0.75em;
}

.shyft-offer__text p:last-child {
	margin-bottom: 0;
}

.shyft-offer__icons {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	width: max-content;
	max-width: 100%;
	margin: 26px 0 32px;
	padding: 0;
}

.shyft-offer__icon-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 18px;
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.64);
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 10px 30px rgba(23, 42, 57, 0.06);
	backdrop-filter: blur(14px);
}

.shyft-offer__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #25c96b;
}

.shyft-offer__check {
	display: block;
	stroke: #25c96b;
}

.shyft-offer__icon-label {
	color: #172a39;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.4;
}

.shyft-offer__btn {
	display: flex;
	width: 100%;
	max-width: 100%;
}

.shyft-offer__button {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	border-radius: 999px;
	padding: 18px 30px;
	background: linear-gradient(135deg, #25c96b, #12b95c);
	color: #fff !important;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	box-shadow: 0 18px 40px rgba(37, 201, 107, 0.32);
	transition: 0.25s ease;
}

.shyft-offer__button:hover,
.shyft-offer__button:focus {
	transform: translateY(-2px);
	color: #fff !important;
	box-shadow: 0 24px 55px rgba(37, 201, 107, 0.42);
}

.shyft-offer__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.shyft-offer__button-icon svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.shyft-offer__button-label {
	font-weight: 800;
	letter-spacing: -0.02em;
}

@media (max-width: 767px) {
	.shyft-offer {
		grid-template-columns: 1fr;
		padding: 12px;
	}

	.shyft-offer::before {
		inset: 10px;
		border-radius: 10px;
	}

	.shyft-offer__media {
		width: 100%;
		justify-content: center;
	}

	.shyft-offer__image {
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
		border-radius: 20px;
		margin-bottom: 20px;
	}

	.shyft-offer__headline {
		font-size: 34px;
		line-height: 1;
	}

	.shyft-offer__icon-item {
		border-radius: 14px;
	}

	.shyft-offer__button {
		width: 100%;
		justify-content: center;
	}
}
