.gar-carousel-wrapper {
  position: relative;
  
  margin: 20px auto;
  overflow: hidden;
}

.gar-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.gar-card {
  flex: 0 0 100%;
  background: #fff;
  padding: 20px;
  margin: 5px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}

.gar-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.gar-content {
  margin-bottom: 15px;
  color: #333;
}

.gar-prev, .gar-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}

.gar-prev { left: 10px; }
.gar-next { right: 10px; }

.gar-prev:hover, .gar-next:hover {
  background: #555;
}
