.cyc-weather {
	font-family: inherit;
	max-width: 340px;
	border-radius: 12px;
	padding: 16px 20px;
	background: linear-gradient(135deg, #e8f4fb 0%, #ffffff 100%);
	border: 1px solid #d7e8f2;
	color: #1f2937;
}

.cyc-weather__header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 13px;
	color: #6b7280;
	margin-bottom: 6px;
}

.cyc-weather__location {
	font-weight: 600;
	color: #0f172a;
	font-size: 14px;
}

.cyc-weather__main {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 10px 0;
}

.cyc-weather__icon {
	font-size: 40px;
	line-height: 1;
}

.cyc-weather__temp {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
}

.cyc-weather__desc {
	font-size: 13px;
	color: #4b5563;
	margin-left: auto;
}

.cyc-weather__wind {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 10px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 14px;
}

.cyc-weather__wind-item {
	display: flex;
	justify-content: space-between;
}

.cyc-weather__wind-label {
	color: #6b7280;
}

.cyc-weather__wind-value {
	font-weight: 600;
}

.cyc-weather__compass {
	display: inline-block;
	margin-left: 4px;
	padding: 1px 6px;
	background: #dbeafe;
	border-radius: 4px;
	font-size: 12px;
	color: #1d4ed8;
}

.cyc-weather__forecast {
	display: flex;
	justify-content: space-between;
	gap: 6px;
	margin-top: 12px;
}

.cyc-weather__day {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-size: 12px;
	flex: 1;
	text-align: center;
}

.cyc-weather__day-label {
	color: #6b7280;
	text-transform: capitalize;
}

.cyc-weather__day-icon {
	font-size: 18px;
}

.cyc-weather__day-temp {
	font-weight: 600;
}

.cyc-weather__day-wind {
	color: #6b7280;
	font-size: 11px;
}

.cyc-weather--empty {
	padding: 16px;
	color: #6b7280;
	font-size: 14px;
}
