.clock-weather-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 32px;
  padding: 24px;
  background: var(--bg-primary);
}

.cw-clock-section {
  text-align: center;
}

.cw-time {
  font-size: 64px;
  font-weight: 200;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -2px;
}

.cw-date {
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.cw-separator {
  width: 60px;
  height: 1px;
  background: var(--separator);
}

.cw-weather-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cw-weather-icon {
  font-size: 56px;
}

.cw-weather-info {
  text-align: left;
}

.cw-temp {
  font-size: 36px;
  font-weight: 300;
  color: var(--text-primary);
}

.cw-condition {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.cw-details {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.cw-detail {
  display: flex;
  align-items: center;
  gap: 4px;
}
