/* 導入事例 — 詳細ページ用スタイル（/use-case/xxx/） */


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ヒーロー: 左アイキャッチ + 右タイトル
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.aind-uc-hero {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	margin-bottom: 32px;
}

/* 左: 正方形アイキャッチ */
.aind-uc-hero__thumb {
	width: 220px;
	height: 220px;
	flex-shrink: 0;
	overflow: hidden;
	background: #e2e8f0;
}
.aind-uc-hero__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 右: 情報 */
.aind-uc-hero__info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 220px;
}

/* メタ情報 */
.aind-uc-hero__meta {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
.aind-uc-hero__industry {
	font-size: 12px;
	font-weight: 600;
	color: #1e3a5f;
	background: #eef2f7;
	padding: 3px 10px;
	letter-spacing: .02em;
}
.aind-uc-hero__company {
	font-size: 12px;
	font-weight: 600;
	color: #475569;
	padding: 3px 0;
	letter-spacing: .02em;
}

/* タイトル */
.aind-uc-hero__title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
	color: #0f172a;
	margin: 0 0 12px;
}

/* 日付 */
.aind-uc-hero__date {
	font-size: 13px;
	color: #94a3b8;
}

/* ヒーロー内シェアボタン */
.aind-uc-hero__info .c-shareBtns {
	margin-top: 12px;
}
.aind-uc-hero__info .c-shareBtns__list {
	justify-content: flex-start;
	gap: 4px;
}
.aind-uc-hero__info .c-shareBtns__item {
	width: 28px !important;
	height: 28px !important;
	min-width: 0 !important;
	flex: none !important;
	margin-top: 0 !important;
	margin-right: 0 !important;
}
.aind-uc-hero__info .c-shareBtns__btn {
	width: 28px !important;
	height: 28px !important;
	padding: 0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
}
.aind-uc-hero__info .c-shareBtns__icon {
	font-size: 13px !important;
}

/* SWELLデフォルトのpost_headとサムネを非表示 */
.single-use-case .l-mainContent .p-articleThumb {
	display: none !important;
}

/* モバイル対応 */
@media (max-width: 600px) {
	.aind-uc-hero {
		flex-direction: column;
		gap: 16px;
	}
	.aind-uc-hero__thumb {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
	}
	.aind-uc-hero__info {
		min-height: auto;
	}
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   見出し（heading.css で共通化済み、必要に応じて上書き）
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
