.card03 {
    margin-bottom: 5rem;
    a{ text-decoration: none;}
  .swiper-slide {
    &:not(.swiper-slide-visible) {
      .slide {
        pointer-events: none;
        opacity: .3;
      }
    }
  }
}
.swiper-wrapper{
  height: unset !important;
}

.swiper {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  max-height: 600px;
  @media screen and (max-width: 812px) {
    height: 450px;
  }
}

.swiper-slide {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.25rem;
  font-weight: 500;
  
}

.swiper-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.swiper-button-next,
.swiper-button-prev {
  color: #333;
  transition: opacity 0.2s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.7;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #333;
}

.swiper-scrollbar-drag {
  background: #333;
}

.slide-content{
    text-align: center;
    h2{
        margin-bottom: 0;
        font-size: 1.8rem;
    }
    p{
        color: #593100;
    }
}

.slide-media{
    img{
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 12px;
        display: block;
    }
}

.swiper-slide article{
    align-items: center;
}