.fish-single-page {
	padding: 40px 20px 80px;
}

.fish-single {
	max-width: 1180px;
	margin: 0 auto;
}

.fish-hero {
	margin-bottom: 48px;
}

.fish-hero__inner {
	display: block;
}

.fish-hero__content {
	max-width: 980px;
}

.fish-hero__eyebrow {
	margin: 0 0 10px;
	font-size: 13px;
	letter-spacing: 0.08em;
	opacity: 0.7;
}

.fish-hero__title {
	margin: 0 0 14px;
	font-size: 40px;
	line-height: 1.2;
}

.fish-hero__subname {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.6;
}

.fish-hero__scientific {
	margin: 0 0 18px;
	font-size: 16px;
	opacity: 0.8;
}

.fish-hero__summary p {
	margin: 0;
	line-height: 1.9;
}

.fish-hero__art-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
	gap: 24px;
	align-items: start;
	margin: 28px 0 32px;
}

.fish-hero__art-card {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 22px;
	padding: 14px;
	overflow: hidden;
}

.fish-hero__art-card img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
	background: #fff;
}

.fish-hero__art-card:first-child img {
	aspect-ratio: 4 / 3;
	object-fit: contain;
}

.fish-hero__art-card:last-child {
	align-self: center;
}

.fish-hero__art-card:last-child img {
	aspect-ratio: 4 / 3;
	object-fit: contain;
}

.fish-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.fish-badge {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid #ddd;
	border-radius: 999px;
	font-size: 14px;
	background: #fff;
}

.fish-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 40px;
	align-items: start;
}

.fish-section {
	margin-bottom: 52px;
}

.fish-section__title {
	margin: 0 0 20px;
	font-size: 26px;
	line-height: 1.4;
}

.fish-info-table {
	border-top: 1px solid #e5e5e5;
}

.fish-info-row {
	display: grid;
	grid-template-columns: 220px 1fr;
	border-bottom: 1px solid #e5e5e5;
}

.fish-info-label,
.fish-info-value {
	padding: 16px 14px;
}

.fish-info-label {
	font-weight: 700;
	background: #fafafa;
}

.fish-info-value {
	line-height: 1.8;
}

.fish-image-box img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 18px;
}

.fish-image-box--fishing-method {
	margin-bottom: 20px;
}

.fish-image-box--fishing-method img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 18px;
}

.fish-source-note {
	margin: -4px 0 20px;
	font-size: 13px;
	line-height: 1.6;
	color: #6b7280;
}

.fish-text-block p {
	margin: 0 0 1em;
	line-height: 1.9;
}

.fish-text-block ul,
.fish-text-block ol {
	margin: 0 0 1em 1.4em;
	padding: 0;
}

.fish-text-block li {
	margin-bottom: 0.4em;
	line-height: 1.8;
}

.fish-related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.fish-card {
	display: block;
	text-decoration: none;
	color: inherit;
	border: 1px solid #ececec;
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fish-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.fish-card__thumb img,
.fish-card__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: #f3f3f3;
}

.fish-card__body {
	padding: 16px;
}

.fish-card__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.5;
}

.fish-sidebar__box {
	padding: 24px;
	border: 1px solid #ececec;
	border-radius: 18px;
	position: sticky;
	top: 24px;
	background: #fff;
}

.fish-sidebar__title {
	margin: 0 0 16px;
	font-size: 20px;
}

.fish-sidebar__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.fish-sidebar__list li {
	margin-bottom: 10px;
	line-height: 1.7;
}

@media (max-width: 960px) {
	.fish-layout,
	.fish-info-row,
	.fish-related-grid {
		grid-template-columns: 1fr;
	}

	.fish-sidebar__box {
		position: static;
	}

	.fish-hero__title {
		font-size: 30px;
	}
}

@media (max-width: 767px) {
	.fish-hero__art-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.fish-hero__art-card {
		padding: 10px;
	}
}