	/* =========================================
	Modern News Article (MONSTER NEWS)
	- add this to custom.css などに追記
	========================================= */

	/* =========================
   MONSTER SPORT Theme Color
========================= */
	:root{
		--monster-red: #e60012;
		--monster-dark: #111111;
		--monster-gray: #2a2a2a;
		--monster-light: #f5f5f5;
	}

	h1{
		font-size: 28px;
		font-weight: bold;
		font-family: "Noto Sans JP", sans-serif;
	}

	/* layout */
	.newsArticle {
	max-width: 980px;
	margin: 0 auto;
	padding: 28px 18px 48px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
	}

	.newsArticle__header {
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(0, 0, 0, .08);
	margin-bottom: 18px;
	}

	.newsArticle__date {
	display: inline-block;
	font-size: 13px;
	letter-spacing: .04em;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(0, 0, 0, .05);
	margin: 0 0 10px;
	}

	.newsArticle__title{
	position: relative;
	color: #111;
	padding: 18px 18px 20px;
	font-size: clamp(24px, 2.6vw, 28px);
	line-height: 1.35;
	margin: 0 0 18px;
	font-weight: 800;
	letter-spacing: .02em;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 24px rgba(0,0,0,.08);
	}

	/* 上の黒ライン（レーシング感） */
	/* .newsArticle__title::before{
	content:"";
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:6px;
	background:#111;
	border-radius:10px 10px 0 0;
	} */

	/* 下の赤アクセントライン */
	/* .newsArticle__title::after{
	content:"";
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	height:4px;
	background:#e60012;
	border-radius:999px;
	} */

	.newsArticle__lead {
	font-size: 16px;
	line-height: 1.8;
	margin: 0;
	color: rgba(0, 0, 0, .78);
	}

	.newsArticle__lead strong {
	color: rgba(0, 0, 0, .92);
	}

	/* hero */
	.newsArticle__hero {
	margin: 18px 0 26px;
	border-radius: 16px;
	overflow: hidden;
	background: rgba(0, 0, 0, .04);
	}


	/* ======news内の画像強制フィット====== */

	.newsArticle img{
	max-width: 100% !important;
	height: auto;
	}

	/* 車両カード画像（最重要） */
	.newsArticle__modelImg{
	width: 100%;
	overflow: hidden;
	}

	.newsArticle__modelImg img{
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
	}


	.newsArticle__hero img {
	width: 100%;
	height: auto;
	display: block;
	transform: scale(1.001); /* for subpixel gap */
	}

	/* sections */
	.newsArticle__section {
		padding: 22px 0;
	}

	.newsArticle__section + .newsArticle__section {
		border-top: 1px solid rgba(0, 0, 0, .07);
	}

	.newsArticle__h2{
		display: flex;
		align-items: center;
		gap: 10px;
		margin: 0 0 14px;
		padding: 10px 0;
		font-size: 20px;
		font-weight: 800;
		line-height: 1.35;
		color: var(--monster-dark);
		background: none !important;     /* 既存の背景競合を潰す */
		border: none !important;         /* 既存のボーダー競合を潰す */
		border-radius: 0 !important;
		box-sizing: border-box;
		word-break: break-word;
	}

	/* 左の赤アクセント（縦バー） */
	.newsArticle__h2::before{
		content:"";
		flex: 0 0 6px;
		width: 6px;
		height: 1.2em;
		border-radius: 999px;
		background: var(--monster-red);
	}

	.newsArticle__h3 {
		font-size: 17px;
		font-weight: 700;
		margin: 0 0 6px;
		line-height: 1.5;
		position: relative;
		padding-left: 14px;
		color: black;
		}

		.newsArticle__h3::before{
		content:"";
		position:absolute;
		left:0;
		top:0.6em;
		width:6px;
		height:6px;
		background:var(--monster-red);
		transform:rotate(45deg);
	}

	.newsArticle p {
		margin: 0 0 12px;
		line-height: 1.9;
		color: rgba(0, 0, 0, .78);
	}

	.newsArticle p:last-child {
		margin-bottom: 0;
	}

	/* models grid */
	.newsArticle__models {
		display: grid;
		gap: 14px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin: 14px 0 10px;
	}

	.newsArticle__model {
		padding: 14px 14px 12px;
		border: 1px solid rgba(0, 0, 0, .08);
		border-radius: 14px;
		background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .00));
		transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
	}

	.newsArticle__model:hover {
		transform: translateY(-2px);
		box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
		border-color: rgba(0, 0, 0, .14);
	}

	.newsArticle__model p {
		margin: 0;
	}

	.newsArticle__note {
	font-size: 13px;
	color: rgba(0, 0, 0, .60);
	margin-top: 10px;
	}

	/* features list */
	.newsArticle__features {
		list-style: none;
		padding: 0;
		margin: 12px 0 0;
		display: grid;
		gap: 12px;
	}

.newsArticle__feature {
	padding: 14px 14px 12px;
	border-radius: 14px;
	background: rgba(0, 0, 0, .03);
	border: 1px solid rgba(0, 0, 0, .06);
	display: flex;            
	align-items: center;     /* 縦中央揃え */
}

/* 左（テキスト）60% */
.newsArticle__feature > div:first-child{
	flex: 0 0 45%;
}

/* 右（画像）40% */
.newsArticle__feature > div:last-child{
	flex: 0 0 55%;
}

	.newsArticle__feature p {
		margin: 0;
	}

	/* inline emphasis */
		.newsArticle strong {
		font-weight: 700;
	}

	.newsArticle a {
		text-decoration: none;
	}

	.newsArticle a {
		color: #e60012;
	}
	.newsArticle a:hover {
		color: #9c020f;
	}

	.flex-img{
		padding: 20px;
	}

	/* CTA */
	/* .newsArticle__cta {
	margin-top: 14px;
	padding: 14px;
	border-radius: 14px;
	text-align: center;
	}

	.newsArticle__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, .18);
	background: rgba(0, 0, 0, .92);
	color: #fff !important;
	font-weight: 700;
	letter-spacing: .02em;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
	border-bottom: none;
	}

	.newsArticle__btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
	background: rgba(0, 0, 0, .98);
	}

	.newsArticle__ctaNote {
	margin: 10px 0 0;
	font-size: 13px;
	color: rgba(0, 0, 0, .60);
	} */


/* CTA */
.newsArticle__cta {
	margin-top: 18px;
	padding: 18px;
	border-radius: 16px;
	text-align: center;
	/* background: linear-gradient(135deg, rgba(0,140,255,.10), rgba(0,220,255,.10)); */
}

/* ボタン本体 */
.newsArticle__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 999px;

	/* ▼ 青→水色グラデーション */
	background: linear-gradient(135deg, #0072ff, #00d4ff);

	color: #fff !important;
	font-weight: 700;
	letter-spacing: .04em;
	text-decoration: none;
	border: none;

	/* 立体感 */
	box-shadow:
	0 10px 22px rgba(0,114,255,.35),
	inset 0 1px 0 rgba(255,255,255,.35);

	transition: transform .18s ease,
	box-shadow .18s ease,
	filter .18s ease;
}

/* ホバー */
.newsArticle__btn:hover {
	transform: translateY(-2px) scale(1.03);
	filter: brightness(1.08);

	box-shadow:
	0 18px 36px rgba(0,114,255,.45),
	inset 0 1px 0 rgba(255,255,255,.45);
}

/* 押した瞬間 */
.newsArticle__btn:active {
	transform: translateY(1px) scale(.98);
	box-shadow: 0 6px 12px rgba(0,114,255,.35);
}


/*======================================================*/

	/* =========================
	Award badge (text only)
	========================= */
	.awardBadge{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 14px;
	background: #111; /* monster black */
	color: #fff;
	margin: 0 0 12px;
	box-shadow: 0 10px 24px rgba(0,0,0,.10);
	}

	.awardBadge__label{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: #e60012; /* monster red */
	color: #fff;
	font-weight: 800;
	letter-spacing: .08em;
	font-size: 12px;
	line-height: 1;
	white-space: nowrap;
	}

	.awardBadge__text{
	font-weight: 700;
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: .02em;
	}

	/* 受賞リンク */
	.awardLink{
	margin: 10px 0 0;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(0,0,0,.75);
	}

	.awardLink a{
	color: #111;
	font-weight: 700;
	border-bottom: 2px solid rgba(230,0,18,.35);
	text-decoration: none;
	}

	.awardLink a:hover{
	border-bottom-color: rgba(230,0,18,.85);
	}

	

	/* responsive */
	@media (max-width: 860px) {
	.newsArticle {
		padding: 22px 14px 40px;
		border-radius: 14px;
	}
	.newsArticle__models {
		grid-template-columns: 1fr;
	}

	.newsArticle__feature{
		flex-direction: column;
	}

	.newsArticle__feature > div:first-child,
	.newsArticle__feature > div:last-child{
		flex: 0 0 auto;
		width:100%;
	}
	}

	@media (max-width: 500px) {
	.newsArticle__date {
		font-size: 12px;
	}
	.newsArticle__lead {
		font-size: 15px;
	}

	/* スマホ最適化 */
	.newsArticle__h2{
		font-size: 18px;
		gap: 8px;
		padding: 8px 0;
	}
	.newsArticle__h2::after{
		width: 52px;
	}

	.awardBadge{
    width: 100%;
    box-sizing: border-box;
	}
	.awardBadge__text{
		font-size: 13px;
	}

	h1{
		font-size: 20px;
	}

	}

	/* Optional: match site heading spacing if global CSS is aggressive */
	.newsArticle h1,
	.newsArticle h2,
	.newsArticle h3 {
	letter-spacing: .01em;
	}
