/**
 * Baxter Prompts Grid Styles
 * [baxter_prompts] shortcode
 */

.baxter-prompts-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* 2 columns on tablets */
@media (min-width: 600px) {
  .baxter-prompts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 columns on desktop */
@media (min-width: 900px) {
  .baxter-prompts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.baxter-prompt-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  min-height: 140px;
  background: #f0f0f0;
  border: none;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.2s ease;
  cursor: pointer;
}

.baxter-prompt-card:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #1a1a1a;
}

.baxter-prompt-card:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.baxter-prompt-card:active {
  transform: translateY(0);
}
