/* ---- utrust writing ---- */

/* 首頁社群按鈕 */
.speed-dial .dials {
    margin-left: -5px;
}
.speed-dial .dials a {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    line-height: 40px;
    margin: 4px 0;
}
.speed-dial .dials a.bg-line, 
.speed-dial .dials a.bg-facebook {
    background: #007e9b;
}
/* 首頁swiper輪播 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* 快速連結：只在獲得焦點時顯示 */
.sr-only-focusable:not(:focus):not(:active) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background-color: #007e9b;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  outline: 3px solid #ffc107;
  outline-offset: 2px;
}


/* ========== 輪播暫停/播放按鈕樣式 ========== */
.carousel-pause-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 20;
  width: 26px;
  height: 26px;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-pause-btn:hover,
.carousel-pause-btn:focus {
  background-color: rgba(0, 0, 0, 0.9);
  transform: scale(1.05);
  outline: 2px solid #007e9b;
  outline-offset: 1px;
}

.carousel-pause-btn[aria-pressed="true"] {
  background-color: rgba(255, 193, 7, 0.9);
  border-color: #ffc107;
}

.carousel-pause-btn .icon-pause::before {
  content: "⏸";
  font-size: 1.25rem;
  line-height: 1;
}

.carousel-pause-btn .icon-play::before {
  content: "▶";
  font-size: 1.25rem;
  line-height: 1;
  margin-left: 2px;
}

/* 螢幕閱讀器通知區域 */
.swiper-notification {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.swiper-button-prev,  .swiper-button-next {
    border: none;
    background: transparent;
}