
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 
              inset 0 1px 2px rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 15px;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.25), 
              inset 0 1px 2px rgba(255, 255, 255, 0.8);
}
.card img {
  width: 100%;
  height: 180px; /* Fixed size */
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.card-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
}
.card-body {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

