.adpc-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.adpc-carousel .swiper-slide {
  height: auto;
}

.adpc-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: var(--adpc-min-height, 700px);
  text-decoration: none;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.adpc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 2.2s ease;
  z-index: 0;
}

.adpc-hover-zoom-off .adpc-card::before {
  transition: none;
}

.adpc-hover-zoom-on .adpc-card:hover::before {
  transform: scale(1.08);
}

.adpc-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(0,0,0,var(--adpc-overlay-opacity,0.45)) 71%, #000000 100%);
  transition: all 1.4s ease;
  z-index: 1;
}

.adpc-card:hover .adpc-overlay {
  background-image: linear-gradient(180deg, rgba(20,37,189,0) 0%, #000000 100%);
}

.adpc-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 20px 20px;
  margin-top: 100px;
}

.adpc-content h3 {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
}

.adpc-content p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
}

.adpc-button {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  font-size: 13px;
}

.adpc-carousel-prev,
.adpc-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background: rgba(0,0,0,0.25);
  border-radius: 50%;
}

.adpc-carousel-prev::before,
.adpc-carousel-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.adpc-carousel-prev { left: 15px; }
.adpc-carousel-next { right: 15px; }
.adpc-carousel-prev::before { transform: translate(-35%, -50%) rotate(-135deg); }
.adpc-carousel-next::before { transform: translate(-65%, -50%) rotate(45deg); }

.adpc-carousel-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 25;
  text-align: center;
}

.adpc-carousel .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.65;
}

.adpc-carousel .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 980px) {
  .adpc-card { min-height: 550px; }
  .adpc-content h3 { font-size: 28px; }
}

@media (max-width: 767px) {
  .adpc-card { min-height: 450px; }
  .adpc-content h3 { font-size: 24px; }
}
