
  .qt-carousel-wrap {
    --accent: #374151;
    --bg: #f5f5f5;
    --card-bg: #ffffff;
    --text: #1a1a1a;
    --text-secondary: #999;
    --border: #e8e8e8;
    --shadow: 0 2px 24px rgba(0,0,0,0.05);
    --logo-shadow: 0 4px 24px rgba(0,0,0,0.06);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 56px 32px 60px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  }
  .qt-carousel-wrap * { margin: 0; padding: 0; box-sizing: border-box; }
  .qt-carousel-cont { position: relative; max-width: 100%; margin: 0 auto; overflow: hidden; }
  .qt-carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.25,0.1,0.25,1); }
  .qt-slide { flex: 0 0 100%; display: flex; }
  .qt-card { flex: 0 0 16.666%; min-width: 0; padding: 0 10px; text-align: center; }
  .qt-card-inner {
    background: #fff; border: 1px solid var(--border); border-radius: 12px;
    padding: 26px 16px 16px; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .qt-card-inner:hover { transform: translateY(-4px); box-shadow: var(--logo-shadow); }
  .qt-img-wrap { width: 160px; height: 110px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
  .qt-img-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
  .qt-name { font-size: 0.82rem; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 2px; }
  .qt-country { font-size: 0.72rem; color: var(--text-secondary); }
  .qt-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
    background: #fff; color: #555; font-size: 1.1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all 0.2s ease;
  }
  .qt-nav:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
  .qt-nav.prev { left: 0; }
  .qt-nav.next { right: 0; }
  .qt-nav:disabled { opacity: 0.3; cursor: not-allowed; }
  .qt-nav:disabled:hover { background: #fff; color: #555; border-color: var(--border); }
  .qt-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
  .qt-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #d0d0d0;
    border: none; cursor: pointer; transition: all 0.25s ease;
  }
  .qt-dot.active { background: var(--accent); width: 24px; border-radius: 6px; }

  @media (max-width: 1399px) { .qt-card { flex: 0 0 25%; } .qt-img-wrap { width: 150px; height: 105px; } }
  @media (max-width: 999px)  { .qt-card { flex: 0 0 33.333%; } .qt-img-wrap { width: 140px; height: 100px; } }
  @media (max-width: 639px)  {
    .qt-card { flex: 0 0 50%; padding: 0 6px; }
    .qt-img-wrap { width: 130px; height: 90px; }
    .qt-nav { width: 36px; height: 36px; }
    .qt-carousel-wrap { padding: 32px 12px 36px; border-radius: 8px; }
    .qt-name { font-size: 0.75rem; }
  }
