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

.hrt-ap {
	width: 100%;
	background: #fffdf9;
	color: #000;
	font-family: inherit;
}

.hrt-ap__inner {
	width: 100%;
	margin-inline: auto;
}

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

.hrt-ap__badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.hrt-ap__badge svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.hrt-ap__heading {
	margin: 0;
	font-family: inherit;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -.02em;
}

.hrt-ap__description {
	max-width: 760px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.7;
}

.hrt-ap__description > :first-child,
.hrt-ap__card-description > :first-child,
.hrt-ap__notice > div > :first-child {
	margin-top: 0;
}

.hrt-ap__description > :last-child,
.hrt-ap__card-description > :last-child,
.hrt-ap__notice > div > :last-child {
	margin-bottom: 0;
}

.hrt-ap__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.hrt-ap__card {
	min-width: 0;
	background: #fff;
	border: 1px solid #f0ebe4;
	border-radius: 24px;
	padding: 28px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .03);
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.hrt-ap__card:hover {
	transform: translateY(-4px);
	border-color: #ff9600;
	box-shadow: 0 16px 40px rgba(255, 150, 0, .1);
}

.hrt-ap__card-content {
	display: flex;
	height: 100%;
	flex-direction: column;
	align-items: inherit;
	gap: 8px;
}

.hrt-ap__icon {
	display: inline-flex;
	align-self: inherit;
	justify-content: center;
	color: #ff9600;
	font-size: 35px;
	line-height: 1;
}

.hrt-ap__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.hrt-ap__card-title {
	margin: 0;
	font-family: inherit;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.3;
}

.hrt-ap__subclass {
	font-size: 14px;
	font-weight: 500;
}

.hrt-ap__card-description {
	font-size: 15px;
	line-height: 1.65;
}

.hrt-ap__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: inherit;
	gap: 7px;
	margin-top: auto;
	border: 2px solid #f0ebe4;
	border-radius: 999px;
	padding: 8px 18px;
	color: #000;
	background: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	text-decoration: none;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.hrt-ap__link--placeholder {
	cursor: default;
}

.hrt-ap__link:hover,
.hrt-ap__link:focus-visible {
	color: #000;
	background: #ff9600;
	border-color: #ff9600;
	transform: translateY(-2px);
	text-decoration: none;
}

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

.hrt-ap__link svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.hrt-ap__notice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 24px;
	padding: 18px 24px;
	background: #faf8f5;
	border: 1px solid #f0ebe4;
	border-radius: 13px;
	font-size: 14px;
	line-height: 1.7;
}

.hrt-ap__notice-icon {
	display: inline-flex;
	flex: 0 0 auto;
	margin-top: .28em;
	color: #ff9600;
}

.hrt-ap__notice-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

@media (max-width: 1024px) {
	.hrt-ap__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.hrt-ap__grid {
		grid-template-columns: 1fr;
	}

	.hrt-ap__heading {
		font-size: clamp(27px, 8vw, 36px);
	}

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

	.hrt-ap__card {
		padding: 24px 20px;
	}
}

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

	.hrt-ap__card:hover,
	.hrt-ap__link:hover {
		transform: none;
	}
}
