/* css styles */
.a {
  color: "#097f5f"
}
.mrgg {
  color: #097f5f;
}

/* 2D CSS Grid Layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

/* Card Styling */
.card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover Effect */
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.card h3 a {
  text-decoration: none;
  color: #2b6cb0;
}

.card h3 a:hover {
  text-decoration: underline;
}

.card p {
  color: #4a5568;
  font-size: 0.95rem;
  margin-bottom: 0;
}
