/*
Template: jin
Theme Name: jin-child-7
Author: CrossPiece
Version: 2.0.0
*/

/* =========================================================
   設計メモ
   - 読者レーンの色分け: 転職・キャリア = 琥珀(#c98a2b系) / 技術 = ティール(#177f70系)
   - トップページは .jin-child-front 配下のみに適用（親テーマJINと衝突させない）
   - 記事可読性の改善は .cps-post-main（JINの本文コンテナ）に最小限で適用
   ========================================================= */

.jin-child-front,
.jin-child-front * {
	box-sizing: border-box;
	letter-spacing: 0;
}

#contents.jin-child-front {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 32px;
	/* align-items は stretch のまま：サイドバー最下段の追従パネル（sticky）の可動域を確保する */
	max-width: 1140px;
	padding: 8px 20px 56px;
}

.jin-child-front #main-contents {
	float: none;
	width: auto;
	max-width: none;
	margin: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.jin-child-front-main a,
.jin-child-front-sidebar a {
	text-decoration: none;
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.jin-child-front a:focus-visible {
	outline: 2px solid #177f70;
	outline-offset: 2px;
}

/* ---------------------------------------------------------
   ヒーロー（画像に依存しない。インク地＋方眼＋回路の光）
   --------------------------------------------------------- */

.jin-child-hero {
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
	padding: 52px 44px 48px;
	border-radius: 12px;
	background:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		radial-gradient(circle at 85% 10%, rgba(23, 127, 112, 0.5), transparent 45%),
		radial-gradient(circle at 8% 95%, rgba(201, 138, 43, 0.28), transparent 40%),
		linear-gradient(135deg, #101b26 0%, #0d1620 60%, #10222a 100%);
	background-size: 26px 26px, 26px 26px, auto, auto, auto;
	color: #fff;
}

.jin-child-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 3px;
	background: linear-gradient(90deg, #c98a2b 0%, #c98a2b 50%, #1c9c8a 50%, #1c9c8a 100%);
}

.jin-child-hero__kicker {
	margin: 0 0 14px;
	color: #7fd6c9;
	font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas, Menlo, monospace;
	font-size: 0.85rem;
	font-weight: 600;
}

.jin-child-hero h1 {
	margin: 0 0 16px;
	color: #fff;
	font-size: 2.15rem;
	font-weight: 800;
	line-height: 1.4;
}

.jin-child-hero__lead {
	max-width: 640px;
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.98rem;
	line-height: 2;
}

/* ---------------------------------------------------------
   読者レーン（未経験・転職 ／ 技術・学習）
   --------------------------------------------------------- */

.jin-child-fork {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 48px;
}

.jin-child-lane {
	display: flex;
	flex-direction: column;
	padding: 26px 24px 24px;
	border: 1px solid #e0e6e5;
	border-top-width: 3px;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(16, 27, 38, 0.06);
}

.jin-child-lane--career {
	border-top-color: #c98a2b;
}

.jin-child-lane--tech {
	border-top-color: #177f70;
}

.jin-child-lane__tag {
	margin: 0 0 10px;
	font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas, Menlo, monospace;
	font-size: 0.8rem;
	font-weight: 600;
}

.jin-child-lane--career .jin-child-lane__tag {
	color: #a86f1c;
}

.jin-child-lane--tech .jin-child-lane__tag {
	color: #177f70;
}

.jin-child-lane h2 {
	margin: 0 0 10px;
	color: #17242e;
	font-size: 1.3rem;
	font-weight: 800;
	line-height: 1.5;
}

.jin-child-lane__desc {
	margin: 0 0 18px;
	color: #55656d;
	font-size: 0.92rem;
	line-height: 1.9;
}

.jin-child-lane__links {
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
}

.jin-child-lane__links li {
	border-bottom: 1px dashed #e4e9e8;
}

.jin-child-lane__links li:last-child {
	border-bottom: 0;
}

.jin-child-lane__links a {
	position: relative;
	display: block;
	padding: 11px 4px 11px 20px;
	color: #2a3a43;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.6;
}

.jin-child-lane__links a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 4px;
	width: 7px;
	height: 7px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	opacity: 0.55;
	transform: translateY(-50%) rotate(45deg);
}

.jin-child-lane--career .jin-child-lane__links a:hover {
	color: #a86f1c;
}

.jin-child-lane--tech .jin-child-lane__links a:hover {
	color: #177f70;
}

/* 技術レーン内のレベルチップ（入門/実務） */
.jin-child-level {
	display: inline-flex;
	align-items: center;
	margin-left: 8px;
	padding: 1px 7px;
	border-radius: 4px;
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1.5;
	vertical-align: middle;
}

.jin-child-level--learn {
	border: 1px solid #9fd3ca;
	background: #e9f4f2;
	color: #10685b;
}

.jin-child-level--pro {
	border: 1px solid #0d4a41;
	background: #0d4a41;
	color: #fff;
}

.jin-child-lane__cta {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	padding: 10px 18px;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.4;
}

.jin-child-lane--career .jin-child-lane__cta {
	background: #c98a2b;
	color: #fff;
}

.jin-child-lane--career .jin-child-lane__cta:hover {
	background: #b3781f;
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(201, 138, 43, 0.32);
}

.jin-child-lane--tech .jin-child-lane__cta {
	background: #177f70;
	color: #fff;
}

.jin-child-lane--tech .jin-child-lane__cta:hover {
	background: #10685b;
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(23, 127, 112, 0.32);
}

/* ---------------------------------------------------------
   セクション見出し
   --------------------------------------------------------- */

.jin-child-section {
	margin-bottom: 48px;
}

.jin-child-section__head {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 18px;
	padding-bottom: 10px;
	border-bottom: 2px solid #17242e;
}

.jin-child-section__label {
	color: #8a979d;
	font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas, Menlo, monospace;
	font-size: 0.78rem;
	font-weight: 600;
}

.jin-child-section__head h2,
.jin-child-side-panel h2 {
	margin: 0;
	color: #17242e;
	font-size: 1.3rem;
	font-weight: 800;
	line-height: 1.45;
}

/* ---------------------------------------------------------
   最新記事カード
   --------------------------------------------------------- */

.jin-child-post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.jin-child-post-card > a {
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 100%;
	overflow: hidden;
	border: 1px solid #e0e6e5;
	border-radius: 12px;
	background: #fff;
	color: #2a3a43;
	box-shadow: 0 4px 14px rgba(16, 27, 38, 0.05);
}

.jin-child-post-card > a:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(16, 27, 38, 0.12);
}

.jin-child-post-card__thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #eef2f1;
}

.jin-child-post-card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jin-child-post-card__audience {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 4px 9px;
	border-radius: 5px;
	color: #fff;
	font-size: 0.74rem;
	font-weight: 700;
	line-height: 1.35;
}

.jin-child-post-card--career .jin-child-post-card__audience {
	background: #c98a2b;
}

.jin-child-post-card--tech .jin-child-post-card__audience {
	background: #177f70;
}

.jin-child-post-card__body {
	padding: 16px 18px 18px;
}

.jin-child-post-card__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
	color: #7c8a90;
	font-size: 0.78rem;
	line-height: 1.4;
}

.jin-child-post-card__cat {
	font-weight: 700;
	color: #55656d;
}

.jin-child-post-card__meta time {
	font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas, Menlo, monospace;
}

.jin-child-post-card h3 {
	margin: 0 0 8px;
	color: #17242e;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.6;
}

.jin-child-post-card p {
	margin: 0;
	color: #55656d;
	font-size: 0.88rem;
	line-height: 1.75;
}

/* ---------------------------------------------------------
   カテゴリ探索（読者レーン別グループ）
   --------------------------------------------------------- */

.jin-child-cat-group {
	margin-bottom: 26px;
}

.jin-child-cat-group:last-child {
	margin-bottom: 0;
}

.jin-child-cat-group__title {
	position: relative;
	margin: 0 0 14px;
	padding-left: 14px;
	color: #17242e;
	font-size: 1.02rem;
	font-weight: 800;
	line-height: 1.5;
}

.jin-child-cat-group__title::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 5px;
	height: 1.1em;
	border-radius: 3px;
	transform: translateY(-50%);
}

.jin-child-cat-group--career .jin-child-cat-group__title::before {
	background: #c98a2b;
}

.jin-child-cat-group--learn .jin-child-cat-group__title::before {
	background: #177f70;
}

.jin-child-cat-group--pro .jin-child-cat-group__title::before {
	background: #0d4a41;
}

.jin-child-category-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.jin-child-category-card {
	padding: 18px;
	border: 1px solid #e0e6e5;
	border-radius: 12px;
	background: #fff;
}

.jin-child-category-card__title {
	display: inline-block;
	margin-bottom: 8px;
	color: #17242e;
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.5;
}

.jin-child-category-card__title:hover {
	color: #177f70;
}

.jin-child-category-card p {
	margin: 0;
	color: #55656d;
	font-size: 0.86rem;
	line-height: 1.75;
}

.jin-child-category-card__children {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.jin-child-category-card__children a,
.jin-child-tag-list a {
	display: inline-flex;
	min-height: 32px;
	align-items: center;
	padding: 5px 11px;
	border: 1px solid #dde5e3;
	border-radius: 16px;
	background: #f7f9f8;
	color: #40525a;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.35;
}

.jin-child-category-card__children a:hover,
.jin-child-tag-list a:hover {
	border-color: #177f70;
	background: #e9f4f2;
	color: #10685b;
}

/* ---------------------------------------------------------
   サイドバー
   --------------------------------------------------------- */

.jin-child-front-sidebar {
	min-width: 0;
}

.jin-child-front-sidebar > * + * {
	margin-top: 16px;
}

.jin-child-side-panel {
	padding: 20px;
	border: 1px solid #e0e6e5;
	border-radius: 12px;
	background: #fff;
}

/* 最下段「まず読む記事」はスクロールに追従させる（回遊・ロードマップ導線の主役） */
.jin-child-side-panel--sticky {
	position: sticky;
	top: 24px;
}

.jin-child-side-panel h2 {
	margin-bottom: 12px;
	font-size: 1.02rem;
}

.jin-child-side-panel p {
	margin: 0;
	color: #55656d;
	font-size: 0.88rem;
	line-height: 1.85;
}

.jin-child-side-panel__eyebrow {
	display: block;
	margin-bottom: 8px;
	color: #8a979d;
	font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas, Menlo, monospace;
	font-size: 0.74rem;
	font-weight: 600;
}

.jin-child-side-profile {
	border-top: 3px solid #17242e;
}

.jin-child-side-profile__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.jin-child-side-profile__avatar {
	display: block;
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	border-radius: 50%;
	object-fit: cover;
}

.jin-child-side-profile__avatar--fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #17242e;
	color: #7fd6c9;
	font-size: 1.3rem;
	font-weight: 700;
}

.jin-child-side-profile__id {
	min-width: 0;
}

.jin-child-side-panel h2.jin-child-side-profile__name {
	margin-bottom: 2px;
	font-size: 1.05rem;
	line-height: 1.4;
}

.jin-child-side-panel p.jin-child-side-profile__role {
	margin: 0;
	color: #8a979d;
	font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas, Menlo, monospace;
	font-size: 0.7rem;
	font-weight: 600;
	line-height: 1.5;
}

.jin-child-side-profile__btn {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	margin-top: 14px;
	padding: 8px 14px;
	border-radius: 8px;
	background: #17242e;
	color: #fff;
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.35;
}

.jin-child-side-profile__btn:hover {
	background: #2a3a43;
}

.jin-child-front-sidebar .search-box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 46px;
	gap: 0;
	margin: 0;
}

.jin-child-front-sidebar .search-text {
	width: 100%;
	min-height: 44px;
	padding: 8px 12px;
	border: 1px solid #dde5e3;
	border-right: 0;
	border-radius: 8px 0 0 8px;
	background: #fff;
}

.jin-child-front-sidebar #searchsubmit {
	width: 46px;
	min-height: 44px;
	border: 0;
	border-radius: 0 8px 8px 0;
	background: #177f70;
	color: #fff;
	cursor: pointer;
}

.jin-child-side-list,
.jin-child-side-categories {
	margin: 0;
	padding: 0;
	list-style: none;
}

.jin-child-side-list {
	counter-reset: jin-child-side-list;
}

.jin-child-side-list li,
.jin-child-side-categories li {
	margin: 0;
	border-bottom: 1px solid #eef2f1;
}

.jin-child-side-list li:last-child,
.jin-child-side-categories li:last-child {
	border-bottom: 0;
}

.jin-child-side-categories a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 0;
	color: #2a3a43;
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.65;
}

.jin-child-side-categories a:hover {
	color: #177f70;
}

.jin-child-side-categories__name {
	min-width: 0;
}

.jin-child-side-categories__count {
	flex-shrink: 0;
	color: #8a979d;
	font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas, Menlo, monospace;
	font-size: 0.72rem;
	font-weight: 600;
}

.jin-child-side-categories a:hover .jin-child-side-categories__count {
	color: #177f70;
}

/* まず読む記事：サムネイル＋順位バッジのランキング型 */
.jin-child-side-list li {
	counter-increment: jin-child-side-list;
}

.jin-child-side-list a {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding: 10px 0;
	color: #2a3a43;
}

.jin-child-side-list__thumb {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	border-radius: 6px;
	background: #eef2f1;
}

.jin-child-side-list__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jin-child-side-list__thumb::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: inline-flex;
	width: 21px;
	height: 21px;
	align-items: center;
	justify-content: center;
	border-radius: 0 0 6px 0;
	background: #17242e;
	color: #7fd6c9;
	content: counter(jin-child-side-list, decimal-leading-zero);
	font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas, Menlo, monospace;
	font-size: 0.66rem;
	font-weight: 700;
}

/* 関連記事（記事ページ）は順位バッジなし */
.jin-child-side-list--plain .jin-child-side-list__thumb::before {
	display: none;
}

.jin-child-side-list__title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.55;
}

.jin-child-side-list a:hover .jin-child-side-list__title {
	color: #177f70;
}

.jin-child-tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* ---------------------------------------------------------
   記事・アーカイブページのサイドバー（sidebar.php オーバーライド）
   親JINの #sidebar 内に、トップと同じパネル群を置く
   --------------------------------------------------------- */

#sidebar .jin-child-front-sidebar a {
	text-decoration: none;
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

#sidebar .jin-child-article-sidebar h2 {
	padding: 0;
	border: 0;
	background: transparent;
	color: #17242e;
	text-align: left;
}

#sidebar #widget-tracking {
	margin-top: 16px;
}

/* 追従目次（記事ページ。#widget-tracking 内） */
.jin-child-side-toc__list {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: jin-child-side-toc;
}

.jin-child-side-toc__list li {
	margin: 0;
	border-bottom: 1px solid #eef2f1;
	counter-increment: jin-child-side-toc;
}

.jin-child-side-toc__list li:last-child {
	border-bottom: 0;
}

.jin-child-side-toc__list a {
	display: flex;
	gap: 10px;
	padding: 9px 0;
	color: #40525a;
	font-size: 0.84rem;
	font-weight: 600;
	line-height: 1.55;
}

.jin-child-side-toc__list a::before {
	flex-shrink: 0;
	padding-top: 1px;
	color: #8a979d;
	content: counter(jin-child-side-toc, decimal-leading-zero);
	font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas, Menlo, monospace;
	font-size: 0.7rem;
	font-weight: 700;
}

.jin-child-side-toc__list a:hover,
#sidebar .jin-child-side-toc__list a:hover {
	color: #177f70;
}

.jin-child-side-toc__list a.is-active,
#sidebar .jin-child-side-toc__list a.is-active {
	color: #10685b;
}

.jin-child-side-toc__list a.is-active::before {
	color: #177f70;
}

/* JINの #sidebar a 配色より詳細度で勝たせる色の再指定 */
#sidebar .jin-child-side-panel a {
	color: #2a3a43;
}

#sidebar .jin-child-side-categories a:hover,
#sidebar .jin-child-side-categories a:hover .jin-child-side-categories__count,
#sidebar .jin-child-side-list a:hover .jin-child-side-list__title {
	color: #177f70;
}

#sidebar .jin-child-side-categories__count {
	color: #8a979d;
}

#sidebar .jin-child-side-panel a.jin-child-side-profile__btn {
	color: #fff;
	background: #17242e;
}

#sidebar .jin-child-side-panel a.jin-child-side-profile__btn:hover {
	background: #2a3a43;
}

/* ---------------------------------------------------------
   記事ページ: 対象読者バッジ（本文冒頭）
   --------------------------------------------------------- */

.jin-child-audience {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	margin: 0 0 28px;
	padding: 12px 14px;
	border-radius: 8px;
	font-size: 0.85rem;
	line-height: 1.6;
}

.jin-child-audience--career {
	background: #faf3e6;
	border: 1px solid #eddcbb;
}

.jin-child-audience--tech {
	background: #e9f4f2;
	border: 1px solid #c4e0db;
}

.jin-child-audience__tag {
	padding: 3px 10px;
	border-radius: 5px;
	color: #fff;
	font-size: 0.76rem;
	font-weight: 700;
	white-space: nowrap;
}

.jin-child-audience--career .jin-child-audience__tag {
	background: #c98a2b;
}

.jin-child-audience--tech .jin-child-audience__tag {
	background: #177f70;
}

.jin-child-audience__text {
	color: #40525a;
	font-weight: 500;
}

.jin-child-audience__alt {
	margin-left: auto;
	color: #10685b;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
	white-space: nowrap;
}

.jin-child-audience--career .jin-child-audience__alt {
	color: #a86f1c;
}

/* ---------------------------------------------------------
   記事ページ: 可読性の底上げ（JIN本文コンテナへ最小限の上書き）
   --------------------------------------------------------- */

/* コードブロック: 濃色地＋横スクロールで折返し崩れを防ぐ */
.cps-post-main pre {
	overflow-x: auto;
	padding: 16px 18px;
	border-radius: 8px;
	background: #101b26;
	color: #e8eef2;
	font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas, Menlo, monospace;
	font-size: 0.88em;
	line-height: 1.75;
	-webkit-overflow-scrolling: touch;
}

.cps-post-main pre code {
	padding: 0;
	background: transparent;
	color: inherit;
	font-size: inherit;
}

/* インラインコード */
.cps-post-main :not(pre) > code {
	padding: 2px 7px;
	border-radius: 4px;
	background: #eef2f1;
	color: #1d3d4a;
	font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas, Menlo, monospace;
	font-size: 0.9em;
}

/* 本文中の画像 */
.cps-post-main img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
}

/* 埋め込み（YouTube等）のはみ出し防止 */
.cps-post-main iframe {
	max-width: 100%;
}

/* スマホ: 表は横スクロールで読ませる（列潰れ防止） */
@media (max-width: 767px) {
	.cps-post-main table {
		display: block;
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

/* ---------------------------------------------------------
   レスポンシブ（トップページ）
   --------------------------------------------------------- */

@media (max-width: 1024px) {
	#contents.jin-child-front {
		grid-template-columns: minmax(0, 1fr);
	}

	.jin-child-front-sidebar {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.jin-child-front-sidebar > * + * {
		margin-top: 0;
	}

	/* 1カラム時は追従させない（本文の下に並ぶだけなので） */
	.jin-child-side-panel--sticky {
		position: static;
	}
}

@media (max-width: 760px) {
	#contents.jin-child-front {
		padding: 4px 14px 40px;
		gap: 24px;
	}

	.jin-child-hero {
		padding: 34px 22px 32px;
		border-radius: 10px;
	}

	.jin-child-hero h1 {
		font-size: 1.5rem;
	}

	.jin-child-hero h1 br {
		display: none;
	}

	.jin-child-hero__lead {
		font-size: 0.92rem;
		line-height: 1.95;
	}

	.jin-child-fork,
	.jin-child-post-grid,
	.jin-child-category-grid,
	.jin-child-front-sidebar {
		grid-template-columns: 1fr;
	}

	.jin-child-fork {
		gap: 14px;
		margin-bottom: 38px;
	}

	.jin-child-section {
		margin-bottom: 38px;
	}

	.jin-child-lane {
		padding: 22px 18px 20px;
	}

	.jin-child-lane__cta {
		width: 100%;
	}

	.jin-child-audience {
		font-size: 0.82rem;
	}

	.jin-child-audience__alt {
		margin-left: 0;
	}
}
