.ski-resort-current-weather {
	padding-top: 0;
}

.cw-report {
	--cw-ink: #0b104a;
	--cw-muted: #5c6380;
	--cw-card: rgba(255, 255, 255, 0.14);
	--cw-card-border: rgba(255, 255, 255, 0.22);
	--cw-shadow: 0 24px 60px rgba(11, 16, 74, 0.18);
	margin-top: 0.25rem;
}

.cw-report__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	margin-bottom: 1.25rem;
}

.cw-report__eyebrow {
	margin: 0 0 0.25rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #525fe1;
}

.cw-report__title {
	margin: 0;
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	font-weight: 800;
	line-height: 1.15;
	color: var(--cw-ink);
}

.cw-report__coords {
	margin: 0.35rem 0 0;
	font-size: 0.875rem;
	color: var(--cw-muted);
}

.cw-report__toolbar-controls {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.35rem;
	min-width: min(100%, 16rem);
}

.cw-report__elevation-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--cw-muted);
}

.cw-report__elevation-select {
	min-width: 16rem;
	font-weight: 600;
	color: var(--cw-ink);
	border: 1px solid #d8dce8;
	border-radius: 10px;
	padding: 0.55rem 0.8rem;
	background: #fff;
	box-shadow: 0 1px 2px rgba(11, 16, 74, 0.04);
}

.cw-report__updated {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--cw-muted);
}

.cw-report__compare {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.cw-report__compare-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.15rem;
	padding: 0.9rem 1rem;
	border: 1px solid #e4e8f1;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(11, 16, 74, 0.05);
	text-align: left;
	cursor: pointer;
	transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.cw-report__compare-card:hover:not(:disabled) {
	transform: translateY(-1px);
	border-color: #c9d0e4;
}

.cw-report__compare-card.is-active {
	border-color: #525fe1;
	box-shadow: 0 0 0 2px rgba(82, 95, 225, 0.18), 0 8px 20px rgba(11, 16, 74, 0.08);
}

.cw-report__compare-card:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.cw-report__compare-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--cw-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.cw-report__compare-temp {
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.1;
	color: var(--cw-ink);
}

.cw-report__compare-elev {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #7a8299;
}

.cw-report__panel {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	box-shadow: var(--cw-shadow);
	color: #fff;
}

.cw-report__panel.theme-clear-day {
	background: linear-gradient(145deg, #1d4ed8 0%, #38bdf8 48%, #fbbf24 100%);
}

.cw-report__panel.theme-clear-night {
	background: linear-gradient(145deg, #0f172a 0%, #1e3a8a 55%, #312e81 100%);
}

.cw-report__panel.theme-cloudy {
	background: linear-gradient(145deg, #334155 0%, #64748b 50%, #94a3b8 100%);
}

.cw-report__panel.theme-fog {
	background: linear-gradient(145deg, #475569 0%, #94a3b8 55%, #cbd5e1 100%);
}

.cw-report__panel.theme-rain {
	background: linear-gradient(145deg, #0f766e 0%, #0ea5e9 48%, #1d4ed8 100%);
}

.cw-report__panel.theme-snow {
	background: linear-gradient(145deg, #1e3a8a 0%, #38bdf8 42%, #e2e8f0 100%);
}

.cw-report__panel.theme-storm {
	background: linear-gradient(145deg, #111827 0%, #4c1d95 48%, #7c3aed 100%);
}

.cw-report__panel.theme-unknown {
	background: linear-gradient(145deg, #0b104a 0%, #525fe1 100%);
}

.cw-report__hero {
	position: relative;
	padding: clamp(1.25rem, 3vw, 2rem);
}

.cw-report__hero-glow {
	position: absolute;
	inset: auto -10% -40% auto;
	width: min(420px, 70%);
	height: min(420px, 70%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 68%);
	pointer-events: none;
}

.cw-report__hero-main {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.5rem;
}

.cw-report__hero-icon {
	width: clamp(96px, 16vw, 140px);
	height: clamp(96px, 16vw, 140px);
	filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

.cw-report__hero-level {
	margin: 0 0 0.2rem;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.9;
}

.cw-report__hero-temp {
	margin: 0;
	font-size: clamp(3.25rem, 8vw, 5.5rem);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.04em;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.cw-report__hero-condition {
	margin: 0.35rem 0 0;
	font-size: clamp(1.125rem, 2.4vw, 1.5rem);
	font-weight: 700;
}

.cw-report__hero-observed {
	margin: 0.45rem 0 0;
	font-size: 0.875rem;
	font-weight: 600;
	opacity: 0.88;
}

.cw-report__metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
	padding: 0 clamp(1rem, 2.5vw, 1.5rem) clamp(1rem, 2.5vw, 1.5rem);
}

.cw-report__metric {
	padding: 0.95rem 1rem;
	border: 1px solid var(--cw-card-border);
	border-radius: 16px;
	background: var(--cw-card);
	backdrop-filter: blur(10px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cw-report__metric-top {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 0.45rem;
}

.cw-report__metric-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.88;
}

.cw-report__metric-icon {
	width: 1rem;
	height: 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
	flex: 0 0 auto;
}

.cw-report__metric-icon--thermometer { background: #fda4af; }
.cw-report__metric-icon--droplet { background: #7dd3fc; }
.cw-report__metric-icon--wind { background: #a5b4fc; }
.cw-report__metric-icon--gust { background: #fcd34d; }
.cw-report__metric-icon--snow { background: #e2e8f0; }
.cw-report__metric-icon--rain { background: #38bdf8; }
.cw-report__metric-icon--cloud { background: #cbd5e1; }
.cw-report__metric-icon--pressure { background: #c4b5fd; }
.cw-report__metric-icon--sunrise { background: #fbbf24; }
.cw-report__metric-icon--sunset { background: #fb923c; }

.cw-report__metric-value-row {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.cw-report__metric-value {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.15;
}

.cw-report__metric-meta {
	margin: 0.25rem 0 0;
	font-size: 0.8125rem;
	font-weight: 600;
	opacity: 0.88;
}

.cw-report__metric-extra .lr-forecast-wind-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 999px;
}

.cw-report__metric-extra .lr-forecast-wind-arrow {
	display: block;
}

.cw-report__empty {
	padding: 2rem 1.25rem;
	border: 1px dashed #d8dce8;
	border-radius: 16px;
	background: #f8f9fc;
	color: var(--cw-muted);
	text-align: center;
}

.cw-report__empty--panel {
	margin: 1.25rem;
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
	color: #fff;
}

@media (max-width: 991.98px) {
	.cw-report__metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575.98px) {
	.cw-report__toolbar-controls,
	.cw-report__elevation-select {
		width: 100%;
		align-items: stretch;
		min-width: 0;
	}

	.cw-report__compare {
		grid-template-columns: 1fr;
	}

	.cw-report__metrics {
		grid-template-columns: 1fr;
	}
}
