/**
 * Component: Catch History Feature — styles
 * Figma: node 11383:3040 — "03 LEARN" journal showcase section.
 * Scoped to .catch-history-feature (BEM root). No global selectors.
 */

/* ── Section root ─────────────────────────────────────────── */
.catch-history-feature {
	background-color: var(--color-bg);
	padding-block: 7.5rem;
	padding-inline: clamp(1.5rem, 9vw, 8.125rem);
}

/* ── Inner container (1180 px centred) ───────────────────── */
.catch-history-feature__inner {
	max-width: 1180px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

/* ── Section header ──────────────────────────────────────── */
.catch-history-feature__header {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 680px;
}

.catch-history-feature__heading-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.catch-history-feature__label {
	font-family: var(--font-body);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-brand);
	margin: 0;
}

.catch-history-feature__heading {
	font-family: var(--font-title);
	font-size: var(--text-h3);
	font-weight: 400;
	line-height: 44px;
	letter-spacing: -2px;
	color: var(--color-text-pri);
	margin: 0;
}

.catch-history-feature__subhead {
	font-family: var(--font-body);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-text-sec);
	margin: 0;
}

/* ── Fishing journal image ─────────────────────────────────── */
.catch-history-feature__journal-wrap {
	width: 100%;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.catch-history-feature__journal-img {
	display: block;
	width: 100%;
	height: auto;
	pointer-events: none;
}

/* ── Tablet ≤ 900 px ─────────────────────────────────────── */
@media (max-width: 900px) {
	.catch-history-feature {
		padding-block: 4rem;
	}

	.catch-history-feature__inner {
		gap: 2.5rem;
	}

	.catch-history-feature__label,
	.catch-history-feature__subhead {
		font-size: var(--text-body-lg);
	}
}

/* ── Mobile ≤ 480 px ─────────────────────────────────────── */
@media (max-width: 480px) {
	.catch-history-feature {
		padding-block: 3rem;
		padding-inline: 1.25rem;
	}

	.catch-history-feature__label,
	.catch-history-feature__subhead {
		font-size: var(--text-body);
	}
}
