.collection-word-panel {
  background: #fffdf8;
}

.collection-intent-panel {
  background: #fbfff8;
}

.collection-viral-panel {
  background: #fffaf7;
}

.collection-viral-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.collection-viral-link {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid #f0d3d6;
  border-radius: 12px;
  background: #fff;
  color: #2f3e2f;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.collection-viral-link:hover {
  border-color: #ebaab4;
  box-shadow: 0 10px 20px rgba(46, 39, 24, 0.08);
  color: #2f3e2f;
  text-decoration: none;
  transform: translateY(-1px);
}

.collection-viral-link strong {
  color: #1f2a1f;
  font-size: 17px;
}

.collection-viral-link span {
  color: #766b63;
  font-size: 14px;
  line-height: 1.5;
}

.collection-intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.collection-intent-grid a {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid #d9eadf;
  border-radius: 12px;
  background: #fff;
  color: #2f3e2f;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.collection-intent-grid a:hover {
  border-color: #9dd8b1;
  box-shadow: 0 10px 20px rgba(46, 39, 24, 0.08);
  color: #2f3e2f;
  text-decoration: none;
  transform: translateY(-1px);
}

.collection-intent-grid strong {
  color: #1f2a1f;
  font-size: 17px;
}

.collection-intent-grid span {
  color: #766b63;
  font-size: 14px;
  line-height: 1.5;
}

.collection-shell .back-link {
  margin-bottom: 16px;
}

.collection-hero {
  text-align: left;
}

.collection-hero h1 {
  margin: 0 0 10px;
  color: #1f2a1f;
  font-size: 32px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.collection-hero p {
  margin: 0;
  color: #766b63;
  line-height: 1.7;
}

.collection-bookmark-wrap {
  margin-top: 16px;
}

.collection-kicker {
  margin: 0 0 8px !important;
  color: #6b7c6b !important;
  font-size: 14px;
  font-weight: 700;
}

.collection-word-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.collection-suggestion-panel {
  background: #fbfff8;
}

.collection-suggestion-copy {
  margin: 14px 0;
  color: #766b63;
  line-height: 1.7;
}

.collection-suggestion-form {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin-top: 12px;
}

.collection-suggestion-form input,
.collection-suggestion-form textarea {
  width: 100%;
  box-sizing: border-box;
  display: block;
  border: 1px solid #d8cfbf;
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  color: #1d1d1d;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
}

.collection-suggestion-form input:focus,
.collection-suggestion-form textarea:focus {
  outline: none;
  border-color: #6b7c6b;
  box-shadow: 0 0 0 3px rgba(107, 124, 107, 0.14);
}

.collection-suggestion-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.collection-suggestion-actions button {
  min-height: 44px;
  border: none;
  border-radius: 999px;
  background: #2f3e2f;
  color: #fff;
  padding: 10px 18px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}

.collection-suggestion-actions button:disabled {
  cursor: wait;
  opacity: 0.65;
}

#collection-suggestion-status {
  margin: 0;
  color: #6b7c6b;
  font-size: 14px;
}

#collection-suggestion-status.is-error {
  color: #991b1b;
}

@media (max-width: 720px) {
  .collection-viral-grid {
    grid-template-columns: 1fr;
  }

  .collection-intent-grid {
    grid-template-columns: 1fr;
  }
}
