.rishikesh_cards h2 {
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: bold;
}

.rishikesh_cards {
  margin: 2rem 0;
  text-align: center;
  align-self: center;
}

.card-row {
  display: flex;
  padding-inline: 20px;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  min-width: 260px;
  background: var(--section-background-1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
}

.card a{
  color: var(--primary-text-color);
}

.card-slideshow {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.slides {
  display: flex;
  will-change: transform;
  transition: transform .45s ease;
}

.slides img {
  flex: 0 0 100%;
  width: 100%;
  height: 220px;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(0, 0, 0, .55);
  color: var(--sub-text-color);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}

.nav.prev {
  left: 10px;
}

.nav.next {
  right: 10px;
}

.nav:focus-visible {
  outline: 2px solid var(--sub-text-color);
}

.card-info {
  padding: 14px 16px 18px;
}

.card-info p{
  font-size: 14px;
}

.card-info h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
}

.rishikesh_location{
  font-size: 10px !important;
  font-weight: 700;
  margin-top: 5px;
}

.price {
  margin-top: 8px;
  font-weight: 500;
}

.price span {
  color: var(--primary-text-color) !important;
  font-size: 12px;
}

.price .old {
  color: #888;
  text-decoration: line-through;
  margin-right: 6px;
  font-size: 13px;
  font-weight: 400;
}

.offer {
  color: var(--primary-text-color);
  background-color: var(--button-bgHover-1);
  font-size: 12px !important;
  margin-top: 10px;
}

.price .new-price {
  font-size: 16px;
  font-weight: 650;
  margin-right: 3px;
}


/* Responsive */
@media (max-width: 1024px) {
  .card {
    flex: 1 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }
}

@media (max-width: 768px) {
  .card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}