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

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

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

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

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

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

.hrt-cappt__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-cappt__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	line-height: 1;
}

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

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

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

.hrt-cappt__highlight {
	color: #ff9600;
}

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

.hrt-cappt__tips {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: var(--hrt-cappt-gap);
	--hrt-cappt-columns: 2;
	--hrt-cappt-gap: 16px;
}

.hrt-cappt__tip {
	display: flex;
	flex: 1 1 calc((100% - (var(--hrt-cappt-columns) - 1) * var(--hrt-cappt-gap)) / var(--hrt-cappt-columns));
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
	padding: 24px 22px;
	border: 1px solid #f0ebe4;
	border-radius: 14px;
	background: #fff;
	text-align: center;
	transition: transform .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.hrt-cappt__tip:hover {
	border-color: #ff9600;
	background: #fff7eb;
	transform: translateY(-3px);
}

.hrt-cappt__tip-icon {
	margin-bottom: 10px;
	color: #ff9600;
	font-size: 24px;
	transition: color .22s ease;
}

.hrt-cappt__tip:hover .hrt-cappt__tip-icon {
	color: #df7615;
}

.hrt-cappt__tip-title {
	margin: 0 0 7px;
	color: #1a1a1a;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
}

.hrt-cappt__tip-description {
	min-width: 0;
	color: #4a4a4a;
	font-size: 14px;
	line-height: 1.6;
}

.hrt-cappt__notice {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	padding: 18px 22px;
	border: 1px solid #f2e6d6;
	border-radius: 14px;
	background: #fff1db;
}

.hrt-cappt__notice.has-previous {
	margin-top: 28px;
}

.hrt-cappt__notice-icon {
	margin-top: 5px;
	color: #ff9600;
	font-size: 17px;
}

.hrt-cappt__notice-content {
	min-width: 0;
	color: #4a4a4a;
	font-size: 15px;
	line-height: 1.7;
}

.hrt-cappt__cta {
	display: flex;
	justify-content: center;
}

.hrt-cappt__cta.has-previous {
	margin-top: 28px;
}

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

.hrt-cappt__button:hover,
.hrt-cappt__button:focus-visible {
	background: #df7615;
	color: #000;
	transform: translateY(-2px);
}

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

.hrt-cappt__description > :first-child,
.hrt-cappt__tip-description > :first-child,
.hrt-cappt__notice-content > :first-child {
	margin-top: 0;
}

.hrt-cappt__description > :last-child,
.hrt-cappt__tip-description > :last-child,
.hrt-cappt__notice-content > :last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.hrt-cappt {
		padding: 40px 16px;
	}

	.hrt-cappt__heading {
		font-size: clamp(28px, 9vw, 38px);
	}

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

	.hrt-cappt__notice {
		padding: 16px;
	}

	.hrt-cappt__button {
		width: 100%;
		white-space: normal;
		overflow-wrap: anywhere;
	}
}

@media (max-width: 400px) {
	.hrt-cappt {
		padding-right: 12px;
		padding-left: 12px;
	}

	.hrt-cappt__tip {
		padding-right: 17px;
		padding-left: 17px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hrt-cappt__tip,
	.hrt-cappt__tip-icon,
	.hrt-cappt__button {
		transition: none !important;
		transform: none !important;
	}
}
