/**
 * GPTXT Article Pattern 04
 *
 * Pattern04: 見出し強調型
 * - 雑誌・メディア風
 * - すっきりしつつ、読み物感を強める
 */

/* =========================
   Wrapper
========================= */
.gptxt-pattern-04 {
	background: var(--gptxt-article-surface);
	border: 2px solid var(--gptxt-article-border-strong);
	border-radius: 10px;
	padding: 16px;
}

/* =========================
   Title
========================= */
.gptxt-pattern-04 .gptxt-title {
	font-size: 28px;
	line-height: 1.4;
	font-weight: 700;
	color: var(--gptxt-article-title);
	margin-bottom: 28px;
	padding-left: 18px;
	border-left: 10px solid var(--gptxt-article-accent);
}

/* =========================
   Link / Image
========================= */
.gptxt-pattern-04 .gptxt-link {
	margin-bottom: 0;
}

.gptxt-pattern-04 .gptxt-img {
	border-radius: 10px;
	box-shadow: 0px 12px 24px rgba(15, 23, 42, 0.08);
	border: 1px solid var(--gptxt-article-border);
}

/* =========================
   Button
========================= */
.gptxt-pattern-04 .gptxt-btn {
	background: #ffffff;
	color: #1d4ed8;
	border: 2px solid #1d4ed8;
	border-radius: 999px;
	box-shadow: none;
}

.gptxt-pattern-04 .gptxt-btn:hover {
	background: #1d4ed8;
	color: #ffffff;
	text-decoration: none;
}

.gptxt-pattern-04 .gptxt-btn:visited,
.gptxt-pattern-04 .gptxt-btn:focus,
.gptxt-pattern-04 .gptxt-btn:active {
	text-decoration: none;
}

/* =========================
   Headings
========================= */
.gptxt-pattern-04 .gptxt-headding {
	
	font-size: 24px;
	line-height: 1.45;
	font-weight: 700;
	color: #fff;
	margin-top: 40px;
	margin-bottom: 18px;
	margin-left: -23px;
	margin-right: -23px;
	padding: 10px 0 9px 16px;
	border-radius: 8px;
	border: 2px solid var(--gptxt-article-accent);
	box-shadow: none;
	background: var(--gptxt-article-accent);
}

/* =========================
   Text blocks
========================= */
.gptxt-pattern-04 .gptxt-txt {
	padding: 0 0 0 16px;
	margin-bottom: 18px;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	color: var(--gptxt-article-text);
	line-height: 1.95;
}

/* まとめだけ少しだけ締める */
.gptxt-pattern-04 .gptxt-txt07 {
	color: var(--gptxt-article-title);
	margin-bottom: 24px;
}

/* =========================
   Mobile
========================= */
@media screen and (max-width: 640px) {
	.gptxt-pattern-04 .gptxt-title {
		font-size: 24px;
		padding-left: 14px;
		border-left-width: 4px;
		margin-bottom: 22px;
	}

	.gptxt-pattern-04 .gptxt-headding {
		font-size: 20px;
		margin-top: 32px;
		margin-bottom: 14px;
		padding-left: 12px;
		border-left-width: 4px;
	}

	.gptxt-pattern-04 .gptxt-txt {
		padding-left: 12px;
		line-height: 1.9;
	}
}