.desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #2f2f2f;
  font-weight: 400;
  margin-bottom: 0rem;
}

.card {
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  margin-right: .5em;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* Hide any overflowing content */
  max-width: 300px; /* Set a maximum width for the card */
}

/* Card image */
.card-image {
  height: 180px; /* Fixed image height */
  overflow: hidden; /* Hide any overflowing image */
}

.card-image img {
  width: 100%;
  height: auto;
  object-fit: cover; /* Maintain aspect ratio */
}

/* Card content */
.card-content {
  padding: 1rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.card-button {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.card-button:hover {
  background-color: #0056b3;
}
