.post-carousel-wrapper {
  margin: 0;
}

.slick-carousel {
  margin: 0 -10px;
}

.slick-carousel .carousel-item {
  padding: 40px;
}
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
  align-self: stretch;
}
.tip-card {
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s ease;
  height: 100%;
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 40px;
}

.tip-content {
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 320px);
}

.tip-category {
  color: #00aa9e;
  font-weight: 400;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 24px;
}

.tip-title {
  font-size: 28px !important;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2d6272;
  line-height: 33px;
}

.tip-desc {
  color: #2d6272;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 15px;
}

.tip-btn {
  display: inline-block;
  background: #eb6070;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none !important;
  /* display: inline-block; */
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.tip-btn svg {
  width: 16px;
  fill: #fff;
  margin-left: 10px;
}
/* Optional: slick arrow customization */
.slick-prev:before,
.slick-next:before {
  color: #eb6070;
  font-size: 28px;
}


@media screen and (max-width: 1024px) {
  .slick-carousel .carousel-item{
    padding: 30px 5px;
  }
}