.acb-card {
	--acb-accent: #1769e0;
	background: #fff;
	border: 1px solid #dfe4ea;
	border-radius: 18px;
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.1);
	color: #1f2937;
	margin: 24px 0;
	max-width: 720px;
	overflow: hidden;
}

.acb-card--hotel {
	--acb-accent: #0f766e;
}

.acb-card--flight {
	--acb-accent: #2563eb;
}

.acb-card--product {
	--acb-accent: #7c3aed;
}

.acb-card--coupon {
	--acb-accent: #c2410c;
}

.acb-card--custom {
	--acb-accent: #334155;
}

.acb-card__image {
	aspect-ratio: 16 / 9;
	background: #eef2f7;
	overflow: hidden;
}

.acb-card__image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.acb-card__body {
	padding: 26px;
}

.acb-card__badge {
	background: #f1f5f9;
	border: 1px solid #dbe4ef;
	border-radius: 999px;
	color: var(--acb-accent);
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 14px;
	padding: 8px 11px;
	text-transform: uppercase;
}

.acb-card__title {
	color: #111827;
	font-size: clamp(24px, 2.5vw, 34px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0 0 8px;
}

.acb-card__subtitle {
	color: #475569;
	font-size: 18px;
	font-weight: 650;
	line-height: 1.45;
	margin: 0 0 14px;
}

.acb-card__description {
	color: #4b5563;
	font-size: 16px;
	line-height: 1.65;
	margin: 0 0 22px;
}

.acb-card__description p {
	margin: 0 0 12px;
}

.acb-card__description p:last-child {
	margin-bottom: 0;
}

.acb-card__button {
	align-items: center;
	background: var(--acb-accent);
	border-radius: 12px;
	color: #fff;
	display: inline-flex;
	font-size: 17px;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 52px;
	padding: 14px 24px;
	text-align: center;
	text-decoration: none;
	transition: filter 0.18s ease, transform 0.18s ease;
	width: 100%;
}

.acb-card__button:hover,
.acb-card__button:focus {
	color: #fff;
	filter: brightness(0.92);
	text-decoration: none;
	transform: translateY(-1px);
}

.acb-message {
	background: #fff8e5;
	border: 1px solid #f2d082;
	border-radius: 10px;
	color: #7a4d00;
	margin: 18px 0;
	padding: 14px 16px;
}

@media (max-width: 600px) {
	.acb-card {
		border-radius: 14px;
		margin: 18px 0;
	}

	.acb-card__body {
		padding: 20px;
	}

	.acb-card__title {
		font-size: 24px;
	}

	.acb-card__subtitle {
		font-size: 16px;
	}

	.acb-card__button {
		font-size: 16px;
		min-height: 50px;
		padding: 13px 18px;
	}
}
