.mood-board-teaser-grid {
  margin-top: 1.3rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mood-board-teaser-grid-loading {
  position: relative;
}

.mood-board-loading-card {
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 240, 232, 0.96) 100%);
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.mood-board-loading-image,
.mood-board-loading-line {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #eadfd2 0%, #f7efe7 48%, #e2edf4 100%);
}

.mood-board-loading-image::after,
.mood-board-loading-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.58) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: mood-board-loading-sheen 1.9s ease-in-out infinite;
}

.mood-board-loading-image {
  aspect-ratio: 1 / 1;
}

.mood-board-loading-copy {
  display: grid;
  gap: 0.6rem;
  padding: 0.95rem 0.85rem 1rem;
}

.mood-board-loading-line {
  display: block;
  height: 0.72rem;
  border-radius: 999px;
}

.mood-board-loading-line-wide {
  width: 88%;
}

.mood-board-loading-line-medium {
  width: 66%;
}

.mood-board-loading-line-short {
  width: 48%;
}

.mood-board-loading-caption {
  grid-column: 1 / -1;
  margin: 0.15rem 0 0;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

@keyframes mood-board-loading-sheen {
  100% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mood-board-loading-image::after,
  .mood-board-loading-line::after {
    animation: none;
  }
}

.prompt-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.prompt-list li {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.prompt-list li p {
  margin: 0;
  color: var(--muted);
}

.prompt-placeholder {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px dashed var(--border);
  background: #f1f3f9;
  aspect-ratio: 4 / 3;
}

.prompt-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.prompt-examples {
  margin-top: 2.5rem;
}

.mood-board-teaser {
  background: linear-gradient(140deg, #fff8ef 0%, #f0f7fb 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mood-board-teaser-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.mood-board-teaser-header h2 {
  margin: 0.35rem 0 0.55rem;
}

.mood-board-teaser-item {
  border-radius: 0.85rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  display: grid;
  transition: transform 0.25s ease;
}

.mood-board-teaser-item:hover,
.mood-board-teaser-item:focus-visible {
  transform: translateY(-2px);
}

.mood-board-teaser-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.mood-board-teaser-item span {
  padding: 0.72rem;
  font-size: 0.88rem;
  line-height: 1.3;
  color: #2c3440;
}

@media (max-width: 720px) {
  .mood-board-teaser-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prompt-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
