/* 編輯團隊輪播區塊 */
.author-carousel-section {
  background-color: #f0fafa;
  padding: 40px 20px;
  margin: 0;
  width: 100%;
}

.author-carousel-section .carousel-title {
  text-align: center;
  color: #33B6B0;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.author-carousel-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.author-carousel-wrapper .owl-carousel {
  width: 95%;
  margin: auto;
}

/* 輪播導航箭頭 */
.author-carousel-section .author-carousel-wrapper .owl-nav {
  margin: 0 !important;
  position: absolute;
  top: 35%;
  width: 100%;
  text-align: unset;
  display: none;
}

.author-carousel-section .author-carousel-wrapper:hover .owl-nav {
  display: inline-block;
}

.author-carousel-section .author-carousel-wrapper .owl-nav button {
  position: absolute;
  background: transparent !important;
  color: #707070 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.author-carousel-section .author-carousel-wrapper .owl-nav:hover button {
  background: transparent !important;
}

.author-carousel-section .author-carousel-wrapper .owl-nav button.owl-prev {
  left: -24px;
}

.author-carousel-section .author-carousel-wrapper .owl-nav button.owl-next {
  right: -24px;
}

.author-carousel-section .author-carousel-wrapper .owl-prev:hover,
.author-carousel-section .author-carousel-wrapper .owl-next:hover {
  color: #0EC8BF !important;
  background: transparent !important;
}

/* 作者卡片樣式 */
.author-carousel-wrapper .item {
  padding: 20px 10px;
  overflow: hidden;
}

.author-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.author-card:hover {
  transform: translateY(-5px);
}

.author-avatar-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  background-color: white;
}

.author-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-avatar-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e0e0e0;
}

.author-card .author-name {
  font-size: 18px;
  font-weight: 700;
  color: #00918C;
  margin-bottom: 5px;
  text-align: center;
}

.author-card .author-title {
  font-size: 14px;
  color: #6A6A6A;
  text-align: center;
}

/* 響應式設計 */
@media (max-width: 768px) {
  .author-carousel-section {
    padding: 30px 15px;
  }

  .author-carousel-section .carousel-title {
    font-size: 20px;
  }

  .author-avatar-wrapper {
    width: 100px;
    height: 100px;
  }

  .author-card .author-name {
    font-size: 16px;
  }

  .author-card .author-title {
    font-size: 14px;
  }
}
