

.apd-wrap {

  display: flex;

  flex-wrap: nowrap;

  gap: 30px;

}

.apd-master {

  width: 50%;

}

.apd-detail {

  width: 50%;

}

.apd-master .swiper-slide {

  height: 320px;

  overflow: hidden;

  border-radius: 8px;

}

.apd-master img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}

.apd-detail .swiper-slide {

  background: #003654;

  color: #fff;

  padding: 30px;

  border-radius: 8px;

  min-height: 320px;

  display: flex;

  align-items: center;

}

.apd-content {

  max-width: 100%;

}

.apd-cat {

  display: block;

  font-size: 14px;

  margin-bottom: 10px;

  text-transform: uppercase;

  opacity: 0.7;

}

.apd-btn {

  background: #00aaff;

  color: white;

  padding: 10px 20px;

  text-decoration: none;

  display: inline-block;

  margin-top: 15px;

  border-radius: 4px;

}


.apd-arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
}
.apd-button-prev,
.apd-button-next {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    cursor: pointer;
    z-index: 99;
}
.apd-button-prev { left: 10px; }
.apd-button-next { right: 10px; }
