/* === SLIDE BASIS === */
.dkc-slide-full {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 400px;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  border-radius: 30px;
  overflow: hidden;
}

/* Hintergrundbild über Pseudo-Element */
.dkc-slide-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: inherit; /* nutzt das inline-Background des Elements */
  transition: transform 0.8s ease;
  z-index: 0;
}

/* Zoom-Effekt */
.dkc-slide-full:hover::before {
  transform: scale(1.08);
}

/* Inhaltselemente bleiben oben */
.dkc-overlay {
  position: relative;
  z-index: 1;
}

/* === OVERLAY === */
.dkc-overlay {
  position: absolute;
  inset: 0;
  padding: 40px;
  background: linear-gradient(180deg, rgba(51,37,33,0.3) 50%, rgba(38, 25, 22, 0.8) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Inhalte unten */
  gap: 12px;
  box-sizing: border-box;
  height: 100%;
}

.dkc-overlay:hover {
  background: linear-gradient(180deg, rgba(51,37,33,0.3) 50%, rgba(38, 25, 22, 0.96) 100%);
}

/* === TEXT & BUTTONS === */
.dkc-title {
  font-size: 22px;
  line-height:1.2em;
  color: #fff !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}

.dkc-excerpt {
  font-size: 14px;
  color: #b28880;
  margin: 0;
}

.dkc-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 25px;
  margin-left: auto; /* rechtsbündig */
  background-color: rgba(224,215,199,0.2);
  color: #dfbbb4 !important;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  font-weight: 400;
  font-size: 10px;
  transition: all 0.3s ease;
}

/* === SWIPER STRUKTUR === */
.dkc-swiper-full,
.dkc-swiper-full .swiper-wrapper {
  overflow: visible !important;
}

/* === NAVIGATION & PAGINATION CONTAINER === */
.dkc-nav-pagination-wrapper {
  display: flex;
  justify-content: space-between; /* links Buttons, rechts Dots */
  align-items: center;
  margin-top: 10px;
  position: relative;
}

/* === NAVIGATION BUTTONS === */
.dkc-nav-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  top: 15px;
  position: relative;
}

/* Pfeil-Buttons (Divi Style) */
.swiper-button-prev, .swiper-button-next {
  position: relative;
  width: auto;
  height: auto;
  color: #332521;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #93635d;
}

/* === DIVI ICONS === */
.swiper-button-prev::before,
.swiper-button-next::before {
  font-family: "ETmodules";
  font-size: 50px;
  line-height: 1;
}

.swiper-button-prev::before { content: "\34"; } /* Divi left arrow */
.swiper-button-next::before { content: "\35"; } /* Divi right arrow */

/* Reset default Swiper icons */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: '' !important;
}

/* Position innerhalb Container */
.swiper-button-prev { left: 0; right: auto; }
.swiper-button-next { left: auto; right: 0; }

/* === PAGINATION DOTS === */
.swiper-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1px;
  width: 80% !important;
  margin-right: 20px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom {
  bottom: var(--swiper-pagination-bottom, 8px);
  left: auto;
  right: 0;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #93635d !important;
}

.dkc-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.dkc-overlay {
  position: relative;
  z-index: 20;
  pointer-events: none; /* Overlay bleibt klickbar */
}

.dkc-overlay * {
  pointer-events: auto; /* Button etc. bleiben visuell interaktiv */
}

