.hrt-bap {
	width: 100%;
	min-height: 0;
	padding: 50px 20px;
	background: #fffdf9;
	color: #1a1a1a;
	overflow: hidden;
}

.hrt-bap,
.hrt-bap * {
	box-sizing: border-box;
}

.hrt-bap__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.hrt-bap__header {
	text-align: center;
}

.hrt-bap__header.has-following {
	margin-bottom: 32px;
}

.hrt-bap__badge-row {
	display: block;
	margin-bottom: 12px;
}

.hrt-bap__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 16px;
	border-radius: 999px;
	background: #fff1db;
	color: #ff9600;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.hrt-bap__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	line-height: 1;
}

.hrt-bap__icon i {
	line-height: 1;
}

.hrt-bap__icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.hrt-bap__heading {
	margin: 0;
	color: #000;
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.12;
}

.hrt-bap__highlight {
	color: #ff9600;
}

.hrt-bap__description {
	max-width: 850px;
	margin: 15px auto 0;
	color: #4a4a4a;
	font-size: 17px;
	line-height: 1.7;
}

.hrt-bap__description > :first-child,
.hrt-bap__content-block > :first-child,
.hrt-bap__disclaimer-content > :first-child {
	margin-top: 0;
}

.hrt-bap__description > :last-child,
.hrt-bap__content-block > :last-child,
.hrt-bap__disclaimer-content > :last-child {
	margin-bottom: 0;
}

.hrt-bap__card {
	position: relative;
	overflow: hidden;
	padding: 38px 42px;
	border: 1px solid #f2d9b8;
	border-radius: 24px;
	background: linear-gradient(135deg, #fffaf2 0%, #fff3df 100%);
	box-shadow: 0 12px 34px rgba(0, 0, 0, .05);
	transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.hrt-bap__card:hover {
	border-color: rgba(255, 150, 0, .55);
	box-shadow: 0 16px 38px rgba(0, 0, 0, .07);
}

.hrt-bap__card.has-hover-lift:hover {
	transform: translateY(-3px);
}

.hrt-bap__card.has-top-accent::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: #ff9600;
	content: "";
}

.hrt-bap__body {
	display: grid;
	gap: 18px;
}

.hrt-bap__content-block {
	color: #4a4a4a;
	font-size: 16px;
	line-height: 1.8;
}

.hrt-bap__actions {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.hrt-bap__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	max-width: 100%;
	padding: 14px 24px;
	border: 1px solid #ff9600;
	border-radius: 999px;
	background: #ff9600;
	color: #000;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.hrt-bap__button:hover {
	border-color: #df7615;
	background: #df7615;
	color: #000;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(223, 118, 21, .2);
}

.hrt-bap__button:focus-visible {
	outline: 3px solid rgba(255, 150, 0, .42);
	outline-offset: 3px;
}

.hrt-bap__button-icon {
	font-size: 16px;
}

.hrt-bap__disclaimer {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 22px;
	padding: 14px 16px;
	border: 1px solid #f0d7b5;
	border-radius: 12px;
	background: rgba(255, 255, 255, .7);
}

.hrt-bap__disclaimer-icon {
	margin-top: 4px;
	color: #ff9600;
	font-size: 16px;
}

.hrt-bap__disclaimer-content {
	min-width: 0;
	color: #555;
	font-size: 14px;
	line-height: 1.65;
}

@media (max-width: 767px) {
	.hrt-bap__heading {
		font-size: clamp(28px, 9vw, 38px);
	}

	.hrt-bap__description {
		font-size: 16px;
	}

	.hrt-bap__card {
		padding: 28px 20px;
	}

	.hrt-bap__button {
		width: 100%;
		white-space: normal;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hrt-bap__card,
	.hrt-bap__button {
		transition: none;
	}

	.hrt-bap__card.has-hover-lift:hover,
	.hrt-bap__button:hover {
		transform: none;
	}
}
