@import "index.css";

header h1 {
  color: #0a9666;
}

.content-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

button.card-link {
  all: unset;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  padding: 0;
}
.card-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-content h3 {
  margin: 0.5rem 0 0.75rem;
  color: var(--primary);
  font-size: 1.1rem;
}
.card-content p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
  flex: 1;
}
.card-cta {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
}
