.adch-section {
  position: relative;
  padding: 0;
  font-family: Montserrat, sans-serif;
  background-color: transparent;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: visible;
}
.adch-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(10, 14, 34, 0.75);
  z-index: 0;
  pointer-events: none;
}
.adch-section.adch-no-overlay::before {
  display: none;
}
.adch-section .adch-header,
.adch-section .adch-carousel {
  position: relative;
  z-index: 1;
}

.adch-header {
  text-align: center;
  margin-bottom: 40px;
}
.adch-label {
  color: #d4a843;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.adch-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 46px;
  margin: 0 0 14px;
  line-height: 1.2;
}
.adch-divider {
  position: relative;
  width: 70px;
  height: 1px;
  background: #d4a843;
  margin: 0 auto;
  overflow: visible;
}
.adch-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: inherit;
  transform: translate(-50%, -50%) rotate(45deg);
}

.adch-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  --adch-gap: 24px;
}
.adch-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}
.adch-track {
  display: flex;
  gap: var(--adch-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.adch-card {
  flex: 0 0 auto;
  min-width: 0;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0;
  text-decoration: none;
  aspect-ratio: 3 / 4;
  box-sizing: border-box;
}
.adch-media {
  position: absolute;
  inset: 0;
}
.adch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.adch-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 55%);
  z-index: 1;
  pointer-events: none;
}
.adch-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 18px;
  text-align: left;
  z-index: 2;
}
.adch-name {
  color: #ffffff;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 4px;
}
.adch-role {
  color: #d4a843;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.adch-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding: 0;
}
.adch-arrow {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #d4a843;
  color: #d4a843;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}
.adch-arrow:hover {
  background: #d4a843;
  color: #0d1128;
  border-color: #d4a843;
}
.adch-arrow[disabled] {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 767px) {
  .adch-title {
    font-size: 30px;
  }
  .adch-nav {
    margin-top: 22px;
    gap: 16px;
  }
  .adch-arrow {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  .adch-name {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .adch-nav {
    margin-top: 18px;
  }
  .adch-arrow {
    width: 36px;
    height: 36px;
  }
}
