.weekly-panel {
  position: relative;
  display: grid;
  gap: 12px;
  background:
    radial-gradient(circle at 12% 0, rgba(255, 176, 95, .2), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(99, 230, 184, .16), transparent 36%),
    linear-gradient(145deg, rgba(15, 28, 50, .94), rgba(37, 21, 47, .86));
}

.weekly-panel::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 54px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(255, 255, 255, .035);
}

.weekly-card {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(3, 9, 19, .35);
}

.weekly-card b {
  color: #fff8d8;
  font-family: var(--font-cute);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
}

.weekly-card p {
  color: #e9f7ff !important;
  font-family: var(--font-soft);
  font-size: 14px !important;
  line-height: 1.62 !important;
}

.weekly-detail {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.weekly-detail div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .065);
}

.weekly-detail span {
  color: var(--mint);
  font-family: var(--font-cute);
  font-size: 12px;
  font-weight: 400;
}

.weekly-detail em {
  color: #f2f7ff;
  font-family: var(--font-soft);
  font-size: 13px;
  font-style: normal;
  line-height: 1.42;
}

.weekly-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.weekly-chips span {
  padding: 8px 10px;
  border-radius: 999px;
  color: #142337;
  background: linear-gradient(180deg, #fff8df, #dcfff3);
  font-family: var(--font-cute);
  font-size: 12px;
  font-weight: 400;
}

.weekly-panel button {
  min-height: 40px;
}

.weekly-panel.is-saved button {
  color: #133022 !important;
  background: linear-gradient(180deg, #dfffe9, #c8f2ff) !important;
}

.weekly-panel.is-updated .weekly-card {
  animation: weeklyLift .5s ease;
}

@keyframes weeklyLift {
  0% { transform: translateY(8px); opacity: .66; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 390px) {
  .weekly-detail div {
    grid-template-columns: 1fr;
  }
}
