.vbw,
.vbw * {
	box-sizing: border-box;
}

.vbw {
	--vbw-accent: #2563eb;
	--vbw-ink: #101828;
	--vbw-muted: #667085;
	--vbw-line: #e7eaf0;
	--vbw-soft: #f5f7fa;
	--vbw-radius: 22px;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	color: var(--vbw-ink);
	font-family: inherit;
	font-size: 16px;
	line-height: 1.45;
	-webkit-font-smoothing: antialiased;
}

.vbw button,
.vbw a {
	font-family: inherit;
}

.vbw__topline {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin: 0 0 24px;
}

.vbw__eyebrow,
.vbw__section-heading p {
	margin: 0 0 4px !important;
	color: var(--vbw-accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .11em;
	line-height: 1.3;
	text-transform: uppercase;
}

.vbw__page-title {
	margin: 0 !important;
	color: var(--vbw-ink) !important;
	font-size: clamp(31px, 4vw, 46px) !important;
	font-weight: 850 !important;
	letter-spacing: -.04em !important;
	line-height: 1.04 !important;
}

.vbw__live-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
	padding: 8px 13px;
	border: 1px solid #e3e6ec;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 3px 12px rgba(16, 24, 40, .05);
	color: #475467;
	font-size: 12px;
	font-weight: 750;
	white-space: nowrap;
}

.vbw__live-pill span {
	position: relative;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 0 4px rgba(34, 197, 94, .12);
}

.vbw__location-picker {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
}

.vbw__location-picker > label {
	color: #667085;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .065em;
	text-transform: uppercase;
}

.vbw__select-wrap {
	position: relative;
	display: flex;
	width: 210px;
	height: 44px;
	align-items: center;
	border: 1px solid #d7dce5;
	border-radius: 11px;
	background: #fff;
	box-shadow: 0 4px 14px rgba(16, 24, 40, .055);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.vbw__select-wrap:focus-within {
	border-color: #8cb1f7;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, .12), 0 4px 14px rgba(16, 24, 40, .055);
}

.vbw__select-wrap > svg {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	margin-left: 13px;
	fill: none;
	stroke: #64748b;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.vbw__select-wrap select {
	appearance: none;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0 39px 0 9px;
	border: 0;
	outline: 0;
	background: transparent;
	color: #475467;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-weight: 780;
}

.vbw__select-wrap > span {
	position: absolute;
	top: 50%;
	right: 14px;
	width: 8px;
	height: 8px;
	border-right: 1.7px solid #667085;
	border-bottom: 1.7px solid #667085;
	pointer-events: none;
	transform: translateY(-70%) rotate(45deg);
}

.vbw__retry:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--vbw-accent) 30%, transparent);
	outline-offset: 2px;
}

.vbw__hourly-track::-webkit-scrollbar {
	display: none;
}

.vbw__notice {
	margin: 0 0 14px;
	padding: 11px 14px;
	border: 1px solid #f5d88b;
	border-radius: 10px;
	background: #fff9e8;
	color: #7a5511;
	font-size: 13px;
	font-weight: 650;
}

.vbw__content {
	min-height: 520px;
	transition: opacity .18s ease;
}

.vbw.is-loading .vbw__content {
	opacity: .55;
	pointer-events: none;
}

.vbw__alerts {
	display: grid;
	gap: 10px;
	margin: 0 0 16px;
}

.vbw__alert {
	position: relative;
	display: flex;
	gap: 15px;
	overflow: hidden;
	padding: 18px 20px;
	border: 1px solid #f0d48b;
	border-left: 5px solid #d89113;
	border-radius: 15px;
	background: linear-gradient(100deg, #fff9e9, #fffdf7);
	box-shadow: 0 8px 24px rgba(94, 66, 16, .07);
}

.vbw__alert--grey {
	border-color: #d8dee8;
	border-left-color: #64748b;
	background: #f8fafc;
}

.vbw__alert--yellow {
	border-left-color: #d7a308;
}

.vbw__alert--orange,
.vbw__alert--red {
	border-left-color: #d97706;
	background: linear-gradient(100deg, #fff6df, #fffaf0);
}

.vbw__alert-icon {
	display: grid;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: #f6d66e;
	color: #684807;
	place-items: center;
}

.vbw__alert-icon .vbw-ui-icon {
	width: 22px;
	height: 22px;
}

.vbw__alert-content {
	min-width: 0;
}

.vbw__alert-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 2px;
	color: #7a5511;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.vbw__alert-meta b {
	padding: 2px 6px;
	border-radius: 4px;
	background: rgba(217, 119, 6, .11);
	font-size: 9px;
}

.vbw__alert h2 {
	margin: 0 !important;
	color: #352a16 !important;
	font-size: 19px !important;
	font-weight: 850 !important;
	letter-spacing: -.02em !important;
	line-height: 1.15 !important;
}

.vbw__alert-area {
	margin: 3px 0 0 !important;
	color: #735f36;
	font-size: 11px;
	font-weight: 750;
}

.vbw__alert-summary {
	max-width: 850px;
	margin: 9px 0 0 !important;
	color: #4c4435;
	font-size: 13px;
	line-height: 1.5;
}

.vbw__alert a {
	display: inline-block;
	margin-top: 10px;
	color: #58400d;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.vbw__alert a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.vbw__hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(25px, 4vw, 44px);
	border-radius: 28px;
	background: linear-gradient(135deg, #1677e8 0%, #55b5f6 100%);
	box-shadow: 0 20px 50px rgba(18, 90, 166, .2);
	color: #fff;
}

.vbw__hero--clear-day {
	background: linear-gradient(135deg, #0868d8 0%, #43b6f6 58%, #70d2fb 100%);
}

.vbw__hero--clear-night {
	background: linear-gradient(135deg, #111936 0%, #253568 55%, #485894 100%);
	box-shadow: 0 20px 50px rgba(17, 25, 54, .25);
}

.vbw__hero--clouds {
	background: linear-gradient(135deg, #40546d 0%, #71879e 56%, #9aabb9 100%);
	box-shadow: 0 20px 50px rgba(56, 73, 93, .22);
}

.vbw__hero--fog {
	background: linear-gradient(135deg, #526372 0%, #8796a2 54%, #b3bec6 100%);
}

.vbw__hero--rain {
	background: linear-gradient(135deg, #16344f 0%, #2f607c 56%, #628ba2 100%);
	box-shadow: 0 20px 50px rgba(22, 52, 79, .26);
}

.vbw__hero--snow {
	background: linear-gradient(135deg, #427294 0%, #7daccc 54%, #b2d3e5 100%);
}

.vbw__hero--storm {
	background: linear-gradient(135deg, #211f35 0%, #49405f 54%, #665e7c 100%);
	box-shadow: 0 20px 50px rgba(33, 31, 53, .3);
}

.vbw__hero::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(115deg, rgba(255, 255, 255, .09), transparent 42%);
	content: '';
}

.vbw__hero-orb {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	filter: blur(1px);
}

.vbw__hero-orb--one {
	top: -110px;
	right: -80px;
	width: 330px;
	height: 330px;
}

.vbw__hero-orb--two {
	bottom: -190px;
	left: 28%;
	width: 380px;
	height: 380px;
	background: rgba(255, 255, 255, .06);
}

.vbw__hero-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.vbw__current-copy {
	position: relative;
	z-index: 2;
	min-width: 0;
}

.vbw__place-row {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 6px;
	color: rgba(255, 255, 255, .8);
	font-size: 13px;
}

.vbw__place-row strong {
	color: #fff;
	font-size: 16px;
	font-weight: 800;
}

.vbw__pin {
	color: #fff;
	font-size: 8px;
	filter: drop-shadow(0 0 5px rgba(255, 255, 255, .7));
}

.vbw__temperature-row {
	display: flex;
	align-items: center;
	gap: clamp(14px, 3vw, 28px);
}

.vbw__temperature {
	font-size: clamp(76px, 11vw, 126px);
	font-weight: 280;
	letter-spacing: -.085em;
	line-height: .98;
	white-space: nowrap;
}

.vbw__temperature sup {
	position: relative;
	top: -.39em;
	margin-left: .03em;
	font-size: .4em;
	font-weight: 500;
	letter-spacing: 0;
}

.vbw__current-condition {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.vbw__current-condition strong {
	font-size: clamp(21px, 2.6vw, 31px);
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.08;
}

.vbw__current-condition span {
	color: rgba(255, 255, 255, .78);
	font-size: 14px;
	font-weight: 600;
}

.vbw__high-low {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 4px 0 0 !important;
	color: rgba(255, 255, 255, .92);
	font-size: 14px;
	font-weight: 700;
}

.vbw__high-low span {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .58);
}

.vbw__updated {
	margin: 9px 0 0 !important;
	color: rgba(255, 255, 255, .65);
	font-size: 11px;
	font-weight: 650;
	letter-spacing: .03em;
	text-transform: uppercase;
}

.vbw__hero-icon-wrap {
	display: grid;
	flex: 0 0 clamp(160px, 24vw, 270px);
	place-items: center;
	color: rgba(255, 255, 255, .94);
	filter: drop-shadow(0 14px 20px rgba(0, 34, 75, .15));
}

.vbw-icon {
	display: block;
	width: 54px;
	height: 54px;
}

.vbw-icon--hero {
	width: clamp(150px, 22vw, 250px);
	height: clamp(150px, 22vw, 250px);
}

.vbw__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	margin-top: 30px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 16px;
	background: rgba(255, 255, 255, .14);
	box-shadow: 0 8px 24px rgba(0, 30, 70, .08);
	backdrop-filter: blur(10px);
}

.vbw__stat {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
	padding: 15px 17px;
	background: rgba(19, 55, 90, .12);
}

.vbw__stat-icon {
	display: grid;
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border-radius: 9px;
	background: rgba(255, 255, 255, .14);
	place-items: center;
}

.vbw-ui-icon {
	display: inline-block;
	width: 17px;
	height: 17px;
	vertical-align: -3px;
}

.vbw__stat > div {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.vbw__stat-label {
	color: rgba(255, 255, 255, .68);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .06em;
	line-height: 1.2;
	text-transform: uppercase;
}

.vbw__stat strong {
	overflow: hidden;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vbw__stat small {
	overflow: hidden;
	color: rgba(255, 255, 255, .63);
	font-size: 10px;
	font-weight: 550;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vbw__summary {
	margin: 14px 0 24px !important;
	padding: 0 3px;
	color: #475467;
	font-size: 14px;
	line-height: 1.55;
}

.vbw__summary span {
	display: inline-block;
	margin-right: 9px;
	padding: 3px 8px;
	border-radius: 5px;
	background: color-mix(in srgb, var(--vbw-accent) 10%, white);
	color: var(--vbw-accent);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.vbw__panel {
	border: 1px solid var(--vbw-line);
	border-radius: var(--vbw-radius);
	background: #fff;
	box-shadow: 0 12px 32px rgba(16, 24, 40, .055);
}

.vbw__hourly {
	margin-bottom: 22px;
	padding: 24px 0 18px;
}

.vbw__section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	padding: 0 25px 18px;
}

.vbw__section-heading h2 {
	margin: 0 !important;
	color: var(--vbw-ink) !important;
	font-size: 23px !important;
	font-weight: 820 !important;
	letter-spacing: -.025em !important;
	line-height: 1.1 !important;
}

.vbw__section-heading > span {
	color: #98a2b3;
	font-size: 11px;
	font-weight: 650;
}

.vbw__section-heading > span b {
	margin-left: 4px;
	color: var(--vbw-accent);
	font-size: 16px;
}

.vbw__hourly-track {
	display: flex;
	gap: 7px;
	margin: 0;
	padding: 0 19px 5px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.vbw__hour {
	display: flex;
	flex: 0 0 74px;
	min-height: 139px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	gap: 7px;
	padding: 10px 7px;
	border: 1px solid transparent;
	border-radius: 15px;
	background: #f7f8fa;
	scroll-snap-align: start;
}

.vbw__hour.is-now {
	border-color: color-mix(in srgb, var(--vbw-accent) 25%, white);
	background: color-mix(in srgb, var(--vbw-accent) 7%, white);
}

.vbw__hour > strong {
	color: #667085;
	font-size: 11px;
	font-weight: 750;
	white-space: nowrap;
}

.vbw__hour.is-now > strong {
	color: var(--vbw-accent);
}

.vbw-icon--hour {
	width: 38px;
	height: 38px;
	color: #52708d;
}

.vbw__hour > b {
	font-size: 17px;
	font-weight: 820;
}

.vbw__rain,
.vbw__day-rain {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: #3789c9;
	font-size: 10px;
	font-weight: 750;
}

.vbw__rain .vbw-ui-icon,
.vbw__day-rain .vbw-ui-icon {
	width: 11px;
	height: 11px;
}

.vbw__lower-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.72fr) minmax(250px, .78fr);
	align-items: start;
	gap: 22px;
}

.vbw__daily {
	padding: 24px 0 8px;
}

.vbw__daily .vbw__section-heading {
	padding-bottom: 13px;
}

.vbw__daily-list {
	padding: 0 20px;
}

.vbw__day {
	display: grid;
	grid-template-columns: minmax(145px, 1fr) minmax(125px, .8fr) 80px;
	align-items: center;
	gap: 14px;
	min-height: 68px;
	border-top: 1px solid #edf0f3;
}

.vbw__day:first-child {
	border-top: 0;
}

.vbw__day-name {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.vbw__day-name strong {
	font-size: 14px;
	font-weight: 800;
}

.vbw__day-name span {
	overflow: hidden;
	color: var(--vbw-muted);
	font-size: 11px;
	font-weight: 550;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vbw__day-weather {
	display: flex;
	align-items: center;
	gap: 12px;
}

.vbw-icon--day {
	width: 38px;
	height: 38px;
	color: #52708d;
}

.vbw__day-temps {
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
	gap: 15px;
}

.vbw__day-temps strong {
	font-size: 16px;
	font-weight: 850;
}

.vbw__day-temps span {
	width: 28px;
	color: #98a2b3;
	font-size: 14px;
	font-weight: 700;
}

.vbw__details {
	display: grid;
	gap: 14px;
}

.vbw__sun-card,
.vbw__mini-card {
	padding: 21px;
}

.vbw__detail-title {
	display: flex;
	align-items: center;
	gap: 11px;
}

.vbw__detail-title > .vbw-ui-icon {
	width: 30px;
	height: 30px;
	padding: 6px;
	border-radius: 9px;
	background: color-mix(in srgb, var(--vbw-accent) 9%, white);
	color: var(--vbw-accent);
}

.vbw__detail-title > div {
	display: flex;
	flex-direction: column;
}

.vbw__detail-title span {
	color: var(--vbw-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.vbw__detail-title strong {
	font-size: 15px;
	font-weight: 820;
}

.vbw__sun-arc {
	position: relative;
	height: 37px;
	margin: 20px 7px 7px;
	overflow: hidden;
}

.vbw__sun-line {
	position: absolute;
	top: 8px;
	left: 0;
	width: 100%;
	height: 52px;
	border: 2px dashed #d9dee6;
	border-bottom: 0;
	border-radius: 50% 50% 0 0;
}

.vbw__sun-arc i {
	position: absolute;
	top: 5px;
	width: 11px;
	height: 11px;
	margin-left: -5px;
	border-radius: 50%;
	background: #f7b928;
	box-shadow: 0 0 0 4px rgba(247, 185, 40, .16), 0 0 12px rgba(247, 185, 40, .5);
}

.vbw__sun-times {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.vbw__sun-times > div {
	display: flex;
	flex-direction: column;
}

.vbw__sun-times > div:last-child {
	align-items: flex-end;
}

.vbw__sun-times span {
	color: var(--vbw-muted);
	font-size: 10px;
}

.vbw__sun-times strong {
	font-size: 13px;
	font-weight: 800;
}

.vbw__mini-card p {
	margin: 14px 0 0 !important;
	color: var(--vbw-muted);
	font-size: 11px;
	line-height: 1.45;
}

.vbw__meter {
	height: 7px;
	margin-top: 18px;
	overflow: hidden;
	border-radius: 99px;
	background: linear-gradient(90deg, #60c369 0 18%, #f5cf4a 36%, #f39737 57%, #e94d4d 76%, #883c9f 100%);
}

.vbw__meter i {
	display: block;
	height: 100%;
	border-right: 3px solid #fff;
	background: transparent;
	box-shadow: 2px 0 0 #1e293b;
}

.vbw__credit {
	margin: 20px 0 0;
	color: #98a2b3;
	font-size: 10px;
	text-align: right;
}

.vbw__credit a {
	color: #667085;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.vbw__ad-slot {
	margin: 26px auto;
	text-align: center;
}

.vbw__error {
	display: flex;
	min-height: 270px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	padding: 35px;
	border: 1px solid #e6e9ee;
	border-radius: 22px;
	background: #f8f9fb;
	text-align: center;
}

.vbw__error strong {
	font-size: 19px;
}

.vbw__error p {
	max-width: 460px;
	margin: 7px 0 17px !important;
	color: var(--vbw-muted);
	font-size: 13px;
}

.vbw__retry {
	padding: 9px 16px;
	border: 0;
	border-radius: 8px;
	background: var(--vbw-ink);
	color: #fff;
	cursor: pointer;
	font-size: 13px;
	font-weight: 750;
}

.vbw__skeleton {
	animation: vbw-pulse 1.35s ease-in-out infinite;
}

.vbw__skeleton-hero {
	height: 400px;
	border-radius: 28px;
	background: #e9edf2;
}

.vbw__skeleton-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	margin-top: 18px;
}

.vbw__skeleton-row span {
	height: 140px;
	border-radius: 18px;
	background: #eef1f4;
}

@keyframes vbw-pulse {
	0%, 100% { opacity: .55; }
	50% { opacity: 1; }
}

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

	.vbw__lower-grid {
		grid-template-columns: 1fr;
	}

	.vbw__details {
		grid-template-columns: 1.2fr 1fr 1fr;
	}
}

@media (max-width: 700px) {
	.vbw {
		--vbw-radius: 18px;
	}

	.vbw__topline {
		align-items: flex-start;
		margin-bottom: 18px;
	}

	.vbw__live-pill {
		display: none;
	}

	.vbw__hero {
		padding: 23px 19px 19px;
		border-radius: 22px;
	}

	.vbw__hero-main {
		gap: 8px;
	}

	.vbw__place-row {
		flex-wrap: wrap;
		gap: 5px 8px;
	}

	.vbw__place-row span:last-child {
		flex-basis: 100%;
		padding-left: 16px;
	}

	.vbw__temperature-row {
		align-items: flex-start;
		flex-direction: column;
		gap: 0;
	}

	.vbw__current-condition {
		margin-top: -2px;
	}

	.vbw__hero-icon-wrap {
		flex-basis: 39%;
		align-self: center;
		margin-right: -8px;
	}

	.vbw-icon--hero {
		width: min(36vw, 155px);
		height: min(36vw, 155px);
	}

	.vbw__stats {
		margin-top: 22px;
	}

	.vbw__stat {
		padding: 13px 11px;
	}

	.vbw__stat-icon {
		display: none;
	}

	.vbw__summary {
		margin-bottom: 19px !important;
		font-size: 13px;
	}

	.vbw__section-heading {
		padding-right: 19px;
		padding-left: 19px;
	}

	.vbw__details {
		grid-template-columns: 1fr 1fr;
	}

	.vbw__sun-card {
		grid-column: 1 / -1;
	}
}

@media (max-width: 500px) {
	.vbw__page-title {
		font-size: 31px !important;
	}

	.vbw__location-picker {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
	}

	.vbw__select-wrap {
		width: 100%;
		max-width: 100%;
	}

	.vbw__alert {
		gap: 11px;
		padding: 15px;
	}

	.vbw__alert-icon {
		flex-basis: 36px;
		width: 36px;
		height: 36px;
		border-radius: 10px;
	}

	.vbw__alert h2 {
		font-size: 17px !important;
	}

	.vbw__hero {
		box-shadow: 0 15px 35px rgba(18, 70, 120, .2);
	}

	.vbw__temperature {
		font-size: 78px;
	}

	.vbw__current-condition strong {
		font-size: 20px;
	}

	.vbw__hero-icon-wrap {
		margin-left: -3px;
	}

	.vbw__stat strong {
		font-size: 13px;
	}

	.vbw__stat small {
		display: none;
	}

	.vbw__section-heading h2 {
		font-size: 21px !important;
	}

	.vbw__section-heading > span {
		display: none;
	}

	.vbw__hourly {
		padding-top: 20px;
	}

	.vbw__daily-list {
		padding: 0 14px;
	}

	.vbw__day {
		grid-template-columns: minmax(100px, 1fr) 84px 66px;
		gap: 6px;
	}

	.vbw__day-name span {
		max-width: 120px;
	}

	.vbw__day-weather {
		gap: 5px;
	}

	.vbw-icon--day {
		width: 34px;
		height: 34px;
	}

	.vbw__day-temps {
		gap: 8px;
	}

	.vbw__day-temps span {
		width: 25px;
	}

	.vbw__details {
		grid-template-columns: 1fr;
	}

	.vbw__sun-card {
		grid-column: auto;
	}

	.vbw__skeleton-hero {
		height: 440px;
	}

	.vbw__skeleton-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.vbw__credit {
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vbw *,
	.vbw *::before,
	.vbw *::after {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}
}
