.saved-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 42px;
  padding-top: 24px;
}

.saved-close {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 12;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(233, 30, 99, 0.52);
  border-radius: 999px;
  color: var(--wc-pink);
  background:
    linear-gradient(135deg, rgba(233, 30, 99, 0.28), rgba(107, 0, 255, 0.2)),
    var(--wc-panel-strong);
  box-shadow: var(--wc-shadow);
  text-decoration: none;
  backdrop-filter: blur(24px);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.saved-close:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 248, 239, 0.72);
  background:
    linear-gradient(135deg, rgba(236, 5, 5, 0.32), rgba(233, 30, 99, 0.22)),
    var(--wc-panel-strong);
}

.saved-close span {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  font-size: 1.7rem;
  line-height: 1;
}

.saved-close span::before,
.saved-close span::after {
  position: absolute;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: var(--wc-white);
  box-shadow: 0 0 18px rgba(255, 248, 239, 0.34);
}

.saved-close span::before {
  transform: rotate(45deg);
}

.saved-close span::after {
  transform: rotate(-45deg);
}

.saved-head {
  margin-bottom: 14px;
  padding-right: 84px;
}

.saved-head h1 {
  margin: 4px 0 0;
  font-family: var(--wc-font-display);
  font-size: 4.7rem;
  line-height: 0.88;
  text-transform: uppercase;
}

.soft-copy {
  color: var(--wc-muted);
  line-height: 1.45;
}

.saved-list {
  display: grid;
  gap: 10px;
}

.saved-card,
.empty-state {
  display: grid;
  gap: 7px;
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--wc-line);
  border-radius: var(--wc-radius);
  color: var(--wc-white);
  background: var(--wc-panel);
  backdrop-filter: blur(18px);
  text-decoration: none;
}

.saved-card {
  position: relative;
  overflow: hidden;
  padding-right: 118px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.saved-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: var(--risk-color, var(--wc-lime));
}

.saved-card:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 240, 0, 0.58);
  background:
    linear-gradient(135deg, rgba(107, 0, 255, 0.2), rgba(233, 30, 99, 0.12)),
    var(--wc-panel);
}

.saved-card h2 {
  margin: 4px 0;
  overflow-wrap: anywhere;
  font-size: 1.35rem;
}

.saved-card strong {
  color: var(--risk-color, var(--wc-lime));
}

.saved-card .direct-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid color-mix(in srgb, var(--risk-color, var(--wc-lime)) 42%, transparent);
  border-radius: 999px;
  color: var(--wc-white);
  background: var(--risk-bg, rgba(167, 240, 0, 0.12));
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .saved-shell {
    width: min(100% - 18px, 1200px);
    padding-top: 12px;
  }

  .saved-head {
    padding-right: 72px;
  }

  .saved-head h1 {
    font-size: 2.9rem;
  }

  .saved-card {
    padding-right: 16px;
    padding-bottom: 58px;
  }

  .saved-close {
    right: 12px;
    bottom: 12px;
    width: 56px;
    height: 56px;
  }
}
