/**
 * Advantage — カード（philosophy と同じグラデーション枠、radius 24px）
 */

/* 4列 → 1024pxで2列 → 640pxで1列（フロントのみ） */
.post_content .advantage-cards > .uagb-container-inner-blocks-wrap {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	width: 100% !important;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	align-items: stretch;
	justify-content: center;
	flex-direction: unset !important;
	flex-wrap: unset !important;
}

/* エディタ — Spectra 既定レイアウト（gap のみ調整） */
.editor-styles-wrapper .advantage-cards > .uagb-container-inner-blocks-wrap {
	align-items: stretch;
	gap: 20px;
}

@media screen and (max-width: 1024px) {
	.post_content .advantage-cards > .uagb-container-inner-blocks-wrap {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 640px) {
	.post_content .advantage-cards > .uagb-container-inner-blocks-wrap {
		grid-template-columns: minmax(0, 1fr);
		justify-content: center;
		justify-items: center;
	}

	.post_content .advantage-cards .advantage-card {
		width: 100% !important;
		max-width: 360px;
	}
}

.post_content .advantage-cards .advantage-card {
	--advantage-card-heading-height: calc(24px * 1.5 * 2);
	position: relative;
	z-index: 0;
	align-self: stretch !important;
	width: auto !important;
	max-width: 100% !important;
	flex: unset !important;
	row-gap: 0 !important;
	padding: 42px 10px;
	border: none !important;
	border-radius: 24px;
	background: #fff !important;
	box-sizing: border-box;
	overflow: visible;
	text-align: center;
}

.editor-styles-wrapper .advantage-cards .advantage-card {
	--advantage-card-heading-height: calc(24px * 1.5 * 2);
	position: relative;
	z-index: 0;
	align-self: stretch !important;
	padding: 42px 10px;
	border: none !important;
	border-radius: 24px;
	background: #fff !important;
	box-sizing: border-box;
	overflow: visible;
	text-align: center;
}

.post_content .advantage-cards .advantage-card::before,
.editor-styles-wrapper .advantage-cards .advantage-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 24px;
	padding: 5px;
	background: linear-gradient(
		55deg,
		#1c42b4 14.39%,
		#1e73be 32.61%,
		#2078c1 33.44%,
		#359fdc 43.38%,
		#43bbef 52.49%,
		#4cccfa 59.95%,
		#50d2ff 65.75%,
		#b5f1ff 86.46%
	);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.post_content .advantage-cards .advantage-card > .uagb-container-inner-blocks-wrap,
.editor-styles-wrapper .advantage-cards .advantage-card > .uagb-container-inner-blocks-wrap {
	row-gap: 0 !important;
}

.post_content .advantage-cards .advantage-card > *,
.editor-styles-wrapper .advantage-cards .advantage-card > * {
	position: relative;
	z-index: 1;
}

.post_content .advantage-cards .advantage-card .uagb-advanced-heading,
.editor-styles-wrapper .advantage-cards .advantage-card .uagb-advanced-heading {
	height: var(--advantage-card-heading-height);
	margin: 0;
	overflow: hidden;
}

.post_content .advantage-cards .advantage-card :is(h3, .wp-block-heading),
.editor-styles-wrapper .advantage-cards .advantage-card :is(h3, .wp-block-heading) {
	margin: 0;
	font-family: 'Noto Sans JP', noto sans jp, sans-serif;
	font-size: 24px !important;
	font-weight: 700;
	line-height: 1.5em;
	text-align: center;
	color: #1e73be !important;
}

.post_content .advantage-cards .advantage-card .advantage-card__subtitle,
.editor-styles-wrapper .advantage-cards .advantage-card .advantage-card__subtitle {
	font-size: 20px !important;
	font-weight: 700;
	line-height: 1.5em;
	color: #1e73be !important;
}

.post_content .advantage-cards .advantage-card > p,
.editor-styles-wrapper .advantage-cards .advantage-card > p {
	margin: 16px 0 0;
	font-family: 'Noto Sans JP', noto sans jp, sans-serif;
	font-size: 16px !important;
	font-weight: 400;
	line-height: 2;
	text-align: center;
	color: #1e73be !important;
}

@media screen and (max-width: 768px) {
	.post_content .advantage-cards .advantage-card {
		width: 100% !important;
	}
}