/* Custom styles on top of Tailwind */
.idea-orange { color: #FE7F28; }
.idea-orange-bg { background-color: #FE7F28; }
.idea-blue { color: #2c5aa0; }



.custom-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .custom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .custom-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}