#aep-partners-section {
  background: #f9f9f9;
  padding: 28px 15px 32px;
  border-top: 1px solid #e5e5e5;
  margin-top: 10px;
  overflow: hidden;
}

.aep-partners-title {
  margin: 0 0 22px;
  color: #101b3a;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

#aep-partners-section .aep-carousel {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  column-gap: 18px;
}

#aep-partners-section .aep-carousel.is-static {
  grid-template-columns: minmax(0, 1fr) !important;
}

#aep-partners-section .aep-track-wrapper {
  min-width: 0;
  overflow: hidden;
}

#aep-partners-section .aep-track {
  display: flex;
  align-items: center;
  transition: transform 0.45s ease;
  will-change: transform;
}

.aep-partner-item {
  min-height: 94px;
  padding: 8px 18px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aep-partner-item a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aep-partner-item img {
  width: 100%;
  max-width: 190px;
  height: 76px;
  display: block;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.aep-partner-item a:hover img {
  transform: scale(1.04);
}

.aep-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #101b3a;
  border-radius: 50%;
  background: #fff;
  color: #101b3a;
  cursor: pointer;
  font-size: 15px;
  line-height: 40px;
  text-align: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.aep-btn:hover,
.aep-btn:focus-visible {
  border-color: #ff5200;
  background: #ff5200;
  color: #fff;
  outline: none;
}

.aep-carousel.is-static .aep-btn,
.aep-btn:disabled {
  display: none !important;
}

@media (max-width: 767px) {
  #aep-partners-section .aep-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    column-gap: 8px;
  }

  .aep-partner-item {
    min-height: 82px;
    padding: 7px 6px;
  }

  .aep-partner-item img {
    max-width: 150px;
    height: 58px;
  }

  .aep-btn {
    width: 38px;
    height: 38px;
    line-height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #aep-partners-section .aep-track,
  .aep-partner-item img {
    transition: none;
  }
}