.card {
  background: #f5f5f7;
  margin: 10px;
  transition: transform 0.3s ease;
  height: 350px;
}

.card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-spacing {
  padding: 0 20px 20px;
}

.card-title {
  font-family: "DM Sans", serif;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 15px 0 10px;
  color: #333;
}

.card-text {
  color: #666;
  line-height: 1.5;
  font-size: 13px;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white !important;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  background: #f8f8f8 !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.owl-prev {
  left: -36px;
}

.owl-next {
  right: -36px;
}

.owl-nav button span {
  font-size: 16px;
  line-height: 30px;
  color: #333;
}

.owl-container {
  max-width: 1200px;
  margin: 0 auto;
}
