.restore-shade {
  grid-column-start: 1;
  grid-row-start: 1;
  width: 100%;
  height: 100%;
  background: rgba(31, 41, 55, .72);
}
#restore-mobile-menu:not(.hidden) {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: block;
  width: 100%;
  height: 100%;
}
.restore-generated-preview {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .5rem;
}
.restore-prompt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  width: min(960px, calc(100% - 2rem));
  margin: 3rem auto 5rem;
}
.restore-prompt-card {
  overflow: hidden;
  border: 1px solid #dbe2ea;
  border-radius: .75rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
}
.restore-prompt-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.restore-prompt-card p {
  margin: 0;
  padding: 1rem 1.1rem 1.2rem;
  color: #172033;
  font-weight: 600;
  line-height: 1.45;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #5b21ff !important;
  outline-offset: 3px;
}
@media (max-width: 700px) {
  .restore-prompt-grid {
    grid-template-columns: 1fr;
  }
  .restore-prompt-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}
