/* Testimonials manual carousel (extracted) */
.t-carousel { position: relative; max-width: 900px; margin: 0 auto; }
.t-carousel-viewport { overflow: hidden; border-radius: 12px; touch-action: pan-y; overscroll-behavior: contain; }
.t-carousel-track { display: flex; transition: transform .35s ease; will-change: transform; }
.t-carousel-slide { min-width: 100%; flex: 0 0 100%; display: flex; align-items: center; justify-content: center; background: #f7f9fc; }
.t-carousel-slide img { width: auto; max-width: 85%; height: auto; max-height: 55vh; object-fit: contain; margin: 0 auto; display: block; }
.t-carousel-controls { position: absolute; top: 50%; left: 0; right: 0; display: flex; justify-content: space-between; transform: translateY(-50%); pointer-events: none; }
.t-carousel-controls .t-prev, .t-carousel-controls .t-next { pointer-events: auto; background: rgba(255,255,255,.95); border: 1px solid rgba(0,0,0,.08); width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; line-height: 1; padding: 0; color: #0288d1; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.t-carousel-controls .t-prev:hover, .t-carousel-controls .t-next:hover { background: #0288d1; color: #fff; }
.t-carousel-controls .t-prev { margin-left: 8px; }
.t-carousel-controls .t-next { margin-right: 8px; }
.t-carousel-dots { display: flex; gap: 6px; justify-content: center; align-items: center; margin-top: 12px; position: relative; }
.t-carousel-dots.has-left::before,
.t-carousel-dots.has-right::after { content: ""; position: absolute; top: 0; bottom: 0; width: 22px; pointer-events: none; }
.t-carousel-dots.has-left::before { left: -2px; background: linear-gradient(90deg, rgba(255,255,255,0.85), rgba(255,255,255,0)); }
.t-carousel-dots.has-right::after { right: -2px; background: linear-gradient(270deg, rgba(255,255,255,0.85), rgba(255,255,255,0)); }
.t-carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: #90caf9; border: 1px solid #64b5f6; transition: transform .2s, background .2s; }
.t-carousel-dot[aria-selected="true"] { background: #0288d1; transform: scale(1.12); }
.t-carousel-dot:focus { outline: 2px solid #0288d1; outline-offset: 2px; }
/* Visual hint for first/last dots to show boundaries */
.t-carousel-dot.is-first::after { content: '•'; position: absolute; left: -14px; color: #90caf9; font-size: 10px; opacity: .8; }
.t-carousel-dot.is-last::after { content: '•'; position: absolute; right: -14px; color: #90caf9; font-size: 10px; opacity: .8; }
/* Disabled arrows styling */
.t-carousel-controls .t-prev[aria-disabled="true"], .t-carousel-controls .t-next[aria-disabled="true"],
.t-carousel-controls .t-prev:disabled, .t-carousel-controls .t-next:disabled {
  opacity: .45; filter: grayscale(40%); cursor: not-allowed;
}
@media (max-width: 768px) {
  .t-carousel-slide img { max-width: 90%; max-height: 40vh; }
}

/* Comment slide card styling to match carousel visuals */
.comment-card { max-width: 780px; margin: 0 auto; text-align: left; background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 10px; padding: 18px; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.comment-header { display: flex; gap: 10px; align-items: baseline; margin-bottom: 6px; }
.comment-name { font-weight: 600; color: #0d47a1; }
.comment-city { color: #607d8b; font-size: .95rem; }
.comment-meta { font-size: .85rem; color: #78909c; margin-bottom: 10px; }
.comment-message { line-height: 1.55; color: #37474f; }

/* Mobile adjustments: shrink controls so they don't cover the image */
@media (max-width: 576px) {
  .t-carousel-controls .t-prev, .t-carousel-controls .t-next {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
  .t-carousel-controls .t-prev { margin-left: 4px; }
  .t-carousel-controls .t-next { margin-right: 4px; }
}
