.relationship-weather {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 225, 122, .26);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 225, 122, .18), transparent 32%),
    radial-gradient(circle at 10% 0, rgba(99, 230, 184, .16), transparent 36%),
    rgba(255, 255, 255, .065);
}

.relationship-weather::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -52px;
  top: -62px;
  border: 1px dashed rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.weather-head,
.weather-action-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

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

.weather-head strong {
  color: #fff8d8;
  font-family: var(--font-cute);
  font-size: 19px;
  font-weight: 400;
}

.weather-copy {
  position: relative;
  z-index: 1;
  color: #eef7ff !important;
  font-family: var(--font-soft);
  font-size: 14px !important;
  line-height: 1.62 !important;
}

.weather-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.weather-tags span {
  padding: 7px 9px;
  border-radius: 999px;
  color: #142337;
  background: linear-gradient(180deg, #fff8df, #dffcff);
  font-family: var(--font-cute);
  font-size: 12px;
  font-weight: 400;
}

.weather-action-row button {
  min-height: 38px;
  padding: 8px 12px !important;
  font-size: 13px !important;
}

.weather-action-row small {
  color: #b9c8d8;
  font-family: var(--font-soft);
  font-size: 12px;
  line-height: 1.45;
}

.relationship-panel.is-weather-pulse .relationship-weather {
  animation: weatherPulse .48s ease;
}

@keyframes weatherPulse {
  0% { transform: translateY(5px); opacity: .62; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 390px) {
  .weather-head,
  .weather-action-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .weather-action-row button {
    width: 100%;
  }
}
