/* Homepage actions: shared layout for the original and colorful themes. */
.home-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.home-actions .home-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 22px;
  border: 1px solid #cbded8;
  border-radius: 14px;
  background: #f0f8f5;
}
.home-actions .home-action + .home-action {
  background: #fff7e9;
  border-color: #eadcc0;
}
.home-actions .home-action h2 {
  font-size: 21px;
  line-height: 1.3;
  margin: 0 0 10px;
}
.home-actions .home-action p { margin: 0 0 18px; }
.home-actions .home-signup {
  margin-top: auto;
  color: #fff;
  text-decoration: none;
}
.home-actions .home-tag-search { width: 100%; margin: auto 0 0; }
.home-actions .home-tag-search label { display: block; font-size: 13px; margin-bottom: 6px; }
.home-actions .home-search-controls { display: flex; flex-wrap: wrap; gap: 8px; }
.home-actions #home-tag-identifier {
  flex: 1 1 150px;
  width: 0;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  height: 42px;
  margin: 0;
  padding: 9px 10px;
  border: 1px solid #a2bdb3;
  border-radius: 7px;
  background: #fff;
  color: #263f46;
  font-size: 16px;
}
.home-actions .home-search-controls button { margin: 0; min-height: 42px; white-space: nowrap; }
.home-feedback { margin: 24px 0 0; padding-top: 18px; border-top: 1px solid #dce5df; font-size: 14px; }
@media (max-width: 900px) {
  .home-actions { grid-template-columns: minmax(0, 1fr); }
}
