.lake-info-page {
	max-width: 1120px;
	margin: 0 auto;
	padding: clamp(1.25rem, 4vw, 2.5rem) 1rem 2rem;
}

.lake-info-hero {
	background: linear-gradient(145deg, #f8fbff 0%, #e9f3ff 100%);
	border: 1px solid #d5e5f7;
	border-radius: 16px;
	padding: clamp(1.1rem, 3.5vw, 2rem);
	margin-bottom: 1rem;
}

.lake-info-hero__kicker {
	margin: 0;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #336699;
	font-weight: 700;
}

.lake-info-hero__title {
	margin: 0.4rem 0 0.45rem;
	font-size: clamp(1.4rem, 3vw, 2.1rem);
	line-height: 1.2;
	color: #0f172a;
}

.lake-info-hero__text {
	margin: 0;
	color: #334155;
	max-width: 72ch;
}

.lake-info-hero__stamp {
	margin: 0.75rem 0 0;
	font-size: 0.85rem;
	color: #64748b;
}

.lake-info-tabs {
	display: inline-flex;
	gap: 0.4rem;
	padding: 0.25rem;
	border: 1px solid #d3dee8;
	border-radius: 12px;
	background: #fff;
	margin: 0.6rem 0 1rem;
}

.lake-info-tab {
	border: 0;
	background: transparent;
	color: #0f172a;
	font-weight: 600;
	padding: 0.55rem 0.9rem;
	border-radius: 8px;
	cursor: pointer;
}

.lake-info-tab.is-active {
	background: #e5eff9;
	color: #123f66;
}

.lake-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
	gap: 0.85rem;
}

.lake-info-block {
	background: #fff;
	border: 1px solid #d9e2ea;
	border-radius: 14px;
	padding: 1rem;
	margin: 0 0 1rem;
}

.lake-info-block__header h2 {
	margin: 0;
	font-size: clamp(1.12rem, 2.4vw, 1.5rem);
	color: #0f172a;
}

.lake-info-block__header p {
	margin: 0.35rem 0 0.85rem;
	color: #64748b;
}

.lake-info-note {
	margin-top: 0.8rem;
	border-left: 4px solid #336699;
	background: #f3f8fe;
	border-radius: 8px;
	padding: 0.6rem 0.75rem;
}

.lake-info-note p {
	margin: 0;
	color: #1e293b;
	font-size: 0.92rem;
}

.lake-info-card {
	background: #fff;
	border: 1px solid #d9e2ea;
	border-radius: 12px;
	padding: 0.9rem 1rem;
}

.lake-info-card__label {
	margin: 0;
	font-size: 0.8rem;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 600;
}

.lake-info-card__value {
	margin: 0.45rem 0 0;
	font-size: 1.45rem;
	font-weight: 700;
	color: #0f172a;
}

.lake-info-card__value--text {
	font-size: 1.02rem;
	line-height: 1.4;
	font-weight: 600;
}

.lake-info-card__unit {
	margin: 0.15rem 0 0;
	color: #475569;
	font-size: 0.92rem;
}

.lake-info-chip {
	display: inline-flex;
	margin-top: 0.6rem;
	padding: 0.22rem 0.55rem;
	border-radius: 999px;
	font-size: 0.73rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.lake-info-status--normal {
	background: #e2e8f0;
	color: #334155;
}

.lake-info-status--good,
.lake-info-status--open {
	background: #dcfce7;
	color: #166534;
}

.lake-info-status--caution {
	background: #fef3c7;
	color: #92400e;
}

.lake-info-status--closed {
	background: #fee2e2;
	color: #991b1b;
}

.lake-info-card__desc {
	margin: 0.65rem 0 0;
	color: #475569;
	font-size: 0.91rem;
	line-height: 1.45;
}

.lake-info-card__source {
	margin: 0.55rem 0 0;
	font-size: 0.86rem;
}

.lake-info-card__source a {
	color: #336699;
	text-decoration: none;
	font-weight: 600;
}

.lake-info-card__source a:hover {
	text-decoration: underline;
}

.lake-info-about,
.lake-info-sources {
	margin-top: 0.85rem;
	padding-top: 0.75rem;
	border-top: 1px solid #e2e8f0;
}

.lake-info-about h3,
.lake-info-sources h3 {
	margin: 0;
	font-size: 1rem;
	color: #0f172a;
}

.lake-info-about p {
	margin: 0.45rem 0 0;
	color: #475569;
}

.lake-info-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: 1rem 0 0;
}

.lake-info-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	font-weight: 700;
	line-height: 1.2;
	padding: 0.72rem 1rem;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.lake-info-button--primary {
	background: #123f66;
	border: 1px solid #123f66;
	color: #fff;
}

.lake-info-button--primary:hover,
.lake-info-button--primary:focus {
	background: #0f3352;
	border-color: #0f3352;
	color: #fff;
	text-decoration: none;
}

.lake-info-button--secondary {
	background: #fff;
	border: 1px solid #336699;
	color: #123f66;
}

.lake-info-button--secondary:hover,
.lake-info-button--secondary:focus {
	background: #e5eff9;
	color: #123f66;
	text-decoration: none;
}

.lake-info-sources ul {
	margin: 0.55rem 0 0;
	padding-left: 1.1rem;
}

.lake-info-sources li {
	margin: 0.3rem 0;
}

.lake-info-sources a {
	color: #336699;
	text-decoration: none;
	font-weight: 600;
}

.lake-info-sources a:hover {
	text-decoration: underline;
}

.lake-info-block--history .lake-info-block__header p {
	margin-bottom: 0;
}

.lake-info-history__body {
	color: #334155;
	line-height: 1.65;
	font-size: 1rem;
}

.lake-info-history__body > *:first-child {
	margin-top: 0;
}

.lake-info-history__body > *:last-child {
	margin-bottom: 0;
}

.lake-info-history__body h2,
.lake-info-history__body h3,
.lake-info-history__body h4 {
	color: #0f172a;
	line-height: 1.3;
	margin: 1.1em 0 0.45em;
}

.lake-info-history__body p {
	margin: 0.65em 0;
}

.lake-info-history__body ul,
.lake-info-history__body ol {
	margin: 0.65em 0;
	padding-left: 1.35rem;
}

.lake-info-history__body a {
	color: #336699;
	font-weight: 600;
	text-decoration: none;
}

.lake-info-history__body a:hover {
	text-decoration: underline;
}

.lake-info-history__body img,
.lake-info-history__body iframe,
.lake-info-history__body video {
	max-width: 100%;
	height: auto;
}

.lake-info-history__placeholder {
	margin: 0;
	color: #64748b;
	font-style: italic;
}

@media (max-width: 768px) {
	.lake-info-page {
		padding: 0.85rem 0.5rem 1.25rem;
	}

	.lake-info-hero {
		padding: 0.9rem 0.8rem;
	}

	.lake-info-tabs {
		display: flex;
		flex-direction: column;
		width: 100%;
		gap: 0.25rem;
		padding: 0.2rem;
	}

	.lake-info-tab {
		width: 100%;
		text-align: left;
		padding: 0.48rem 0.72rem;
		font-size: 0.9rem;
	}

	.lake-info-block {
		padding: 0.75rem;
	}

	.lake-info-card {
		padding: 0.72rem 0.75rem;
	}

	.lake-info-grid {
		grid-template-columns: 1fr;
		gap: 0.65rem;
	}
}
