/* 【案件レイヤ】記事から受け皿LPへのバナー(L-6・C-122)
   HTML = inc/site-article-banners.php。記事ページ(ns_blog)だけで読み込む。
   色は /ad-support/ のLPにそろえる(文字 #15181f・赤 #c0392b・淡灰 #f6f7f9・罫 #e5e7eb)。
   左の縦線・装飾アイコン・文字の擬似要素・派手な動きは使わない(CLAUDE.md 4-4)。 */

.entry-content > .ns-abn {
	margin: 44px 0 0;
}
/* 末尾に2つ並べるとき(上=小さなLPのカード、下=無料相談)は間を詰めて1つのまとまりにする */
.entry-content > .ns-abn + .ns-abn {
	margin-top: 14px;
}

.ns-abn .ns-abn__link {
	display: grid;
	grid-template-columns: 272px minmax(0, 1fr);
	align-items: stretch;
	background: #f6f7f9;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	overflow: hidden;
	color: #15181f;
	text-decoration: none;
	transition: border-color .25s ease, box-shadow .25s ease;
}
.ns-abn .ns-abn__link:hover,
.ns-abn .ns-abn__link:focus-visible {
	border-color: #f2706d;
	box-shadow: 0 18px 36px -28px rgba(21, 24, 31, .45);
}
.ns-abn .ns-abn__link:focus-visible {
	outline: 2px solid #c0392b;
	outline-offset: 3px;
}

.ns-abn .ns-abn__media {
	/* 画像は切り抜かずに全体を見せる。枠の余りは画像の背景と同じ色でなじませる */
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ebe9e7;
}
.ns-abn .ns-abn__media img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	border-radius: 0;
}

.ns-abn .ns-abn__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	padding: 22px 26px 24px;
}
.ns-abn .ns-abn__tag {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 6px;
	background: #faecea;
	color: #c0392b;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .04em;
}
.ns-abn .ns-abn__title {
	display: block;
	color: #15181f;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.55;
	word-break: auto-phrase; /* 日本語を文節で折り返す(対応ブラウザのみ) */
	text-wrap: pretty;
}
.ns-abn .ns-abn__text {
	display: block;
	color: #3f4651;
	font-size: 14.5px;
	line-height: 1.85;
}
.ns-abn .ns-abn__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
	padding: 12px 22px;
	border-radius: 999px;
	background: #c0392b;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	transition: background .25s ease;
}
.ns-abn .ns-abn__link:hover .ns-abn__btn {
	background: #ea4341;
}
.ns-abn .ns-abn__arrow {
	flex: 0 0 auto;
	transition: transform .25s ease;
}
.ns-abn .ns-abn__link:hover .ns-abn__arrow {
	transform: translateX(3px);
}

/* 本文の途中: 読む流れを止めない小さめの形。ボタンは文字リンクの見た目にする */
.ns-abn--mid .ns-abn__link {
	grid-template-columns: 176px minmax(0, 1fr);
}
.ns-abn--mid .ns-abn__body {
	gap: 6px;
	padding: 16px 20px 18px;
}
.ns-abn--mid .ns-abn__title {
	font-size: 17px;
}
.ns-abn--mid .ns-abn__text {
	font-size: 14px;
	line-height: 1.8;
}
.ns-abn--mid .ns-abn__btn,
.ns-abn--mid .ns-abn__link:hover .ns-abn__btn {
	margin-top: 2px;
	padding: 0;
	background: none;
	color: #c0392b;
	font-size: 14.5px;
}

/* 画像が無い行き先は文字だけ */
.ns-abn--noimg .ns-abn__link {
	grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 600px) {
	.entry-content > .ns-abn {
		margin-top: 36px;
	}
	.entry-content > .ns-abn + .ns-abn {
		margin-top: 12px;
	}

	/* 著者情報の直前: 横長の画像を上に置き、ボタンは横幅いっぱい */
	.ns-abn--end .ns-abn__link {
		grid-template-columns: minmax(0, 1fr);
	}
	.ns-abn--end .ns-abn__body {
		padding: 18px 18px 20px;
	}
	.ns-abn--end .ns-abn__title {
		font-size: 18px;
	}
	.ns-abn--end .ns-abn__btn {
		align-self: stretch;
		justify-content: center;
		padding: 14px 18px;
	}

	/* 本文の途中: 小さな画像と見出しだけにして高さを抑える */
	.ns-abn--mid .ns-abn__link {
		grid-template-columns: 96px minmax(0, 1fr);
	}
	.ns-abn--mid .ns-abn__body {
		gap: 4px;
		padding: 12px 14px 13px;
	}
	.ns-abn--mid .ns-abn__tag {
		padding: 2px 8px;
		font-size: 11px;
	}
	.ns-abn--mid .ns-abn__title {
		font-size: 15.5px;
		line-height: 1.5;
	}
	.ns-abn--mid .ns-abn__text {
		display: none;
	}
	.ns-abn--mid .ns-abn__btn {
		font-size: 13.5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ns-abn .ns-abn__link,
	.ns-abn .ns-abn__btn,
	.ns-abn .ns-abn__arrow {
		transition: none;
	}
}
