.sun-arc-wrap {
  background: linear-gradient(180deg, #0a0f2e 0%, #1a2a6c 40%, #b21f1f 70%, #fdbb2d 100%);
  border-radius: var(--radius-sm);
  padding: 24px;
  position: relative;
  height: 160px;
  overflow: hidden;
}

.sun-arc-wrap canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sun-times-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.sun-time-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}

.sun-time-card .stc-icon {
  font-size: 22px;
  margin-bottom: 6px;
}

.sun-time-card .stc-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text3);
  margin-bottom: 4px;
}

.sun-time-card .stc-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.sun-time-card .stc-sub {
  font-size: 11px;
  color: var(--text3);
  margin-top: 2px;
}

.daylight-bar-wrap {
  margin-top: 16px;
}

.daylight-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 6px;
}

.daylight-bar {
  height: 8px;
  background: var(--bg3);
  border-radius: 4px;
  overflow: hidden;
}

.daylight-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #fdbb2d, #f97316);
  border-radius: 4px;
  transition: width 0.4s ease;
}

@media (max-width: 600px) {
  .sun-times-grid {
    grid-template-columns: 1fr 1fr;
  }
}
