/* Source: herramientas-control-horario-mejorar-productividad */
.wm-carousel-img-wrapper {
            overflow: hidden;
            width: 100%;
            position: relative;
            padding: 20px 0;
            cursor: grab;
            user-select: none;
            touch-action: pan-y; /* Permite scroll vertical nativo, bloquea horizontal para el carrusel */
        }
        .wm-carousel-img-wrapper:active {
            cursor: grabbing;
        }
        .wm-carousel-img-track {
            display: flex;
            width: max-content;
            /* Transform gestionado por JS */
        }
        .wm-carousel-img-item {
            width: 150px;
            height: 100px;
            flex-shrink: 0;
            margin: 0 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: filter 0.3s, opacity 0.3s;
            pointer-events: none; /* Evita arrastre nativo de "img ghost" */
        }
        .wm-carousel-img-item img {
            max-width: 100%;
            max-height: 80px;
            object-fit: contain;
        }
        .wm-carousel-img-wrapper:hover .wm-carousel-img-item {
            filter: grayscale(0%);
            opacity: 1;
        }

/* Source: herramientas-control-horario-mejorar-productividad */
.hoverboxes-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hoverbox-card {
        width: calc(25% - 12px);
    }

    @media (max-width: 1024px) {
        .hoverbox-card {
            width: calc(50% - 8px);
        }
    }

    @media (max-width: 600px) {
        .hoverbox-card {
            width: 100%;
        }
    }

    .hoverbox-card {
        background-color: #a0c2e0;
        border-radius: 30px;
        padding: 24px;
        min-height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        transition: background-color 0.3s ease;
    }

    .hoverbox-card:hover {
        background-color: #0b4988;
    }

    .hoverbox-card h2 {
        margin: 0;
        line-height: 1.3;
        text-align: center;
        transition: opacity 0.3s ease;
        font-weight: 1000;
        color: #0b4988;
    }

    .hoverbox-card:hover h2 {
        opacity: 0;
    }

    .hoverbox-card p {
        margin: 0;
        line-height: 1.5;
        text-align: center;
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        opacity: 0;
        transition: opacity 0.3s ease;
        color: #ffffff;
    }

    .hoverbox-card:hover p {
        opacity: 1;
        color: #ffffff;
    }

/* Source: herramientas-control-horario-mejorar-productividad */
.wm-testi-wrapper {
            position: relative;
            width: 100%;
            margin: 0 auto;
            padding: 20px 60px;
            background: transparent;
            box-sizing: border-box;
        }

        .wm-testi-viewport {
            overflow: hidden;
            width: 100%;
        }

        .wm-testi-track {
            display: flex;
            width: 100%;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .wm-testi-item {
            flex: 0 0 100%;
            box-sizing: border-box;
            padding: 0;
            opacity: 0;
            transition: opacity 0.6s;
            text-align: center;
        }

        .wm-testi-item.active {
            opacity: 1;
        }

        .wm-testi-content {
            width: 100%;
            padding: 20px 0;
            color: {{color}};
        }

        .wm-testi-text {
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }

        .wm-testi-author {
            font-weight: 700;
            display: block;
        }

        .wm-testi-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            border: none;
            background: transparent;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            transition: all 0.3s;
            z-index: 10;
        }
        .wm-testi-nav:hover {
            color: #007bff;
            transform: translateY(-50%) scale(1.2);
        }
        .wm-testi-prev { left: 0; }
        .wm-testi-next { right: 0; }

        @media (max-width: 768px) {
            .wm-testi-wrapper { padding: 20px 0 60px 0; }
            .wm-testi-nav { top: auto; bottom: 0; transform: none; }
            .wm-testi-prev { left: calc(50% - 60px); }
            .wm-testi-next { right: calc(50% - 60px); }
        }

/* Source: herramientas-control-horario-mejorar-productividad */
.wrap{
            margin: 0 auto;
        }

        .tabs__header{
            padding: 14px;
        }

        .tabs__buttons{
            display: flex;
            flex-wrap: wrap;          /* <-- clave: se envuelve a varias filas */
            gap: 10px;
            align-items: center;
        }

        .tab-btn{
            appearance: none;
            border: 1px solid transparent;
            background: #0B4988;
            color: #fff;
            padding: 18px 30px;
            border-radius: 12px;
            cursor: pointer;
            line-height: 1;
            transition: transform .08s ease, background .15s ease, border-color .15s ease;
            user-select: none;
            white-space: nowrap;
        }

        .tab-btn:hover{
            background: #7A7A7A;
        }

        .tab-btn.primary   { background: var(--workmeter-primary-blue-button); }
        .tab-btn.secondary { background: var(--workmeter-secondary-orange-button); }
        .tab-btn.tertiary  { background: var(--workmeter-primary-green-button); }

        .tab-btn.primary:hover   { background: var(--workmeter-primary-blue-button); filter: brightness(0.85); }
        .tab-btn.secondary:hover { background: var(--workmeter-secondary-orange-button); filter: brightness(0.85); }
        .tab-btn.tertiary:hover  { background: var(--workmeter-primary-green-button); filter: brightness(0.85); }

        .tab-btn:active{
            transform: translateY(1px);
        }

        .tabs__panel{
            padding: 18px;
        }

            /* 2 columnas 50/50, en móvil 1 columna */
        .panel-grid{
            display: grid;
            grid-template-columns: 1fr 1fr; /* 50/50 */
            gap: 18px;
            align-items: start;
        }

        @media (max-width: 720px){
            .panel-grid{
                grid-template-columns: 1fr; /* móvil: una debajo de la otra */
            }
        }

        .panel-left{
            padding: 16px;
        }

        .panel-left p{
            margin: 0 0 10px 0;
            line-height: 1.55;
        }

        .panel-right{
            border: 1px solid transparent;
            border-radius: 14px;
            overflow: hidden;
            background: rgba(255,255,255,.03);
            min-height: 220px;
        }

        .panel-right img{
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover; /* siempre imagen */
            aspect-ratio: 16 / 10;
        }

        .fade-in{
            animation: fadeIn .18s ease-out;
        }
        @keyframes fadeIn{
            from { opacity: 0; transform: translateY(6px); }
            to   { opacity: 1; transform: translateY(0); }
        }

/* Source: herramientas-control-horario-mejorar-productividad */
.faq {
      margin: 0 40px;
      overflow: hidden;
    }

    .faq__header {
      padding: 20px 20px 12px;
    }

    .faq__header h2 {
      margin: 0;
      line-height: 1.2;
    }

    .faq__list {
      padding: 8px 0;
    }

    .faq__question {
      width: 100%;
      display: grid;
      grid-template-columns: 24px 1fr;
      gap: 12px;
      align-items: center;

      padding: 16px 20px;
      background: transparent;
      border: 0;
      text-align: left;
      cursor: pointer;

      font-weight: 700; /* negrita */
      color: #1a1a1a;
    }

    .faq__question:focus-visible {
      outline: 3px solid rgba(0,0,0,0.15);
      outline-offset: 2px;
      border-radius: 10px;
    }

    .faq__chev {
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      transition: transform 0.5s ease;
    }

    .faq__chev::before {
      content: "";
      display: block;
      width: 0; height: 0;
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      border-left: 8px solid #5a5a5a;
      transform: translateX(1px);
    }

    .faq__answer-wrap {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.5s ease;
    }

    .faq__answer {
      overflow: hidden;
      padding: 0 20px;
      color: #5a5a5a;
      line-height: 1.5;
    }

    .faq__answer > div {
      padding: 0 0 16px;
      transform: translateY(-6px);
      opacity: 0;
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    /* ESTADOS: abierto */
    .faq__item[data-open="true"] .faq__answer-wrap {
      grid-template-rows: 1fr;
    }
    .faq__item[data-open="true"] .faq__chev {
      transform: rotate(90deg);
    }
    .faq__item[data-open="true"] .faq__answer > div {
      opacity: 1;
      transform: translateY(0);
    }

    /* Opcional: hover */
    .faq__question:hover {
      background: rgba(0,0,0,0.03);
    }

    h2 .normal {
      font-weight: normal;
    }

/* Source: ads-app-control-horario */
.comparison-cards {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.comparison-cards .cc-card {
  flex: 1 1 380px;
  max-width: 520px;
  border-radius: 20px;
  padding: 32px 36px;
  color: #444;
}

.comparison-cards .cc-card-left {
  background-color: #e6e6e6;
  transform: rotate(-4deg);
  z-index: 1;
}

.comparison-cards .cc-card-right {
  background-color: #eef4f8;
  border: 1.5px solid #bdd4e7;
  margin-left: -20px;
  z-index: 2;
}

.comparison-cards .cc-card h3 {
  margin: 0 0 18px 0;
}

.comparison-cards .cc-card ul {
  list-style: none;
  padding-left: 1.8em;
  margin: 0;
}

.comparison-cards .cc-card ul li {
  position: relative;
  margin-bottom: 14px;
  line-height: 1.5;
}

.comparison-cards .cc-card-left ul li::before {
  content: "\2717";
  position: absolute;
  left: -1.8em;
  top: 0.1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  border: 2px solid #E74C3C;
  color: #E74C3C;
  font-weight: bold;
}

.comparison-cards .cc-card-right ul li::before {
  content: "\2713";
  position: absolute;
  left: -1.8em;
  top: 0.1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  border: 2px solid #27AE60;
  color: #27AE60;
  font-weight: bold;
}

@media (max-width: 820px) {
  .comparison-cards {
    flex-direction: column;
    align-items: center;
  }
  .comparison-cards .cc-card-left {
    transform: none;
  }
  .comparison-cards .cc-card-right {
    margin-left: 0;
  }
  .comparison-cards .cc-card {
    max-width: 100%;
    width: 100%;
  }
}

/* Source: ads-control-horario */
.faqc {
      margin: 0 40px;
      overflow: hidden;
    }

    .faqc__header {
      padding: 20px 20px 12px;
    }

    .faqc__header h2 {
      margin: 0;
      line-height: 1.2;
    }

    .faqc__list {
      padding: 8px 0;
    }

    .faqc__list--multi {
      display: flex;
      gap: 24px;
    }

    .faqc__column {
      flex: 1;
      min-width: 0;
    }

    .faqc__question {
      width: 100%;
      display: grid;
      grid-template-columns: 24px 1fr;
      gap: 12px;
      align-items: center;

      padding: 16px 20px;
      background: transparent;
      border: 0;
      text-align: left;
      cursor: pointer;

      font-weight: 700;
      color: #1a1a1a;
    }

    .faqc__question:focus-visible {
      outline: 3px solid rgba(0,0,0,0.15);
      outline-offset: 2px;
      border-radius: 10px;
    }

    .faqc__chev {
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      transition: transform 0.5s ease;
    }

    .faqc__chev::before {
      content: "";
      display: block;
      width: 0; height: 0;
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      border-left: 8px solid #5a5a5a;
      transform: translateX(1px);
    }

    .faqc__answer-wrap {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.5s ease;
    }

    .faqc__answer {
      overflow: hidden;
      padding: 0 20px;
      color: #5a5a5a;
      line-height: 1.5;
    }

    .faqc__answer > div {
      padding: 0 0 16px;
      transform: translateY(-6px);
      opacity: 0;
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    /* ESTADOS: abierto */
    .faqc__item[data-open="true"] .faqc__answer-wrap {
      grid-template-rows: 1fr;
    }
    .faqc__item[data-open="true"] .faqc__chev {
      transform: rotate(90deg);
    }
    .faqc__item[data-open="true"] .faqc__answer > div {
      opacity: 1;
      transform: translateY(0);
    }

    .faqc__question:hover {
      background: rgba(0,0,0,0.03);
    }

    /* Responsive: stack columns on small screens */
    @media (max-width: 768px) {
      .faqc__list--multi {
        flex-direction: column;
        gap: 0;
      }
    }

/* Source: ads-control-horario */
.wma-accordion{
            width: min(720px, 100%);
            max-width: 1080px;
            overflow: hidden;
        }

        .wma-accordion .wma-item{
            border-bottom: 1px solid #d9d9d9;
            background: #fafafa;
        }

        /* Quita el marcador por defecto del summary */
        .wma-accordion .wma-item > summary{
            list-style: none;
            cursor: pointer;
            padding: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            user-select: none;
            outline: none;
            background: #fafafa;
            background: {{bg_color}};
        }
        .wma-accordion .wma-item > summary::-webkit-details-marker{ display:none; }

        /* Flecha a la izquierda */
        .wma-accordion .wma-chev{
            width: 20px;
            height: 20px;
            display: inline-grid;
            place-items: center;
            transition: transform 180ms ease;
            flex: 0 0 20px;
        }
        .wma-accordion .wma-chev::before{
            content: "▸";
            line-height: 1;
            color: #555;
        }
        .wma-accordion .wma-item[open] .wma-chev{ transform: rotate(90deg); }

        .wma-accordion .wma-title{
            font-weight: 600;
            color: #0B4988;
            color: {{text_color}};
        }

        /* Área desplegable con animación */
        .wma-accordion .wma-panel{
            background: #fafafa;
            border-top: 1px solid #d9d9d9;
            display: grid;
            grid-template-rows: 0fr;
            opacity: 0;
        }

        .wma-accordion .wma-item[open] .wma-panel{
            grid-template-rows: 1fr;
            opacity: 1;
        }

        .wma-accordion .wma-panel > .wma-panel-inner{
            overflow: hidden;
            padding: 0 14px;
        }

        /* padding vertical animado “suave” */
        .wma-accordion .wma-panel-content{
            padding: 12px 0 14px 0;
            color: #555;
            line-height: 1.4;
        }

        /* hover sutil */
        .wma-accordion .wma-item > summary:hover{
            filter: brightness(0.98);
        }

        /* accesibilidad: foco visible */
        .wma-accordion .wma-item > summary:focus-visible{
            outline: 2px solid #7aa7ff;
            outline-offset: -2px;
            border-radius: 6px;
        }

/* Source: ads-control-tiempo-empleados */
.fc-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: inherit;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.fc-table .fc-header {
  display: flex;
  align-items: stretch;
  min-height: 80px;
}

.fc-table .fc-row {
  display: flex;
  align-items: stretch;
  min-height: 52px;
  border-top: 1px solid #e8e8e8;
}

.fc-table .fc-row:nth-child(even) {
  background-color: #f8f9fa;
}

.fc-table .fc-row:nth-child(odd) {
  background-color: #ffffff;
}

.fc-table .fc-cell {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  text-align: center;
  line-height: 1.4;
  color: #444;
}

.fc-table .fc-cell:first-child {
  flex: 1.4;
  justify-content: flex-start;
  text-align: left;
  font-weight: 700;
  color: #222;
}

/* Column 2 - blue theme */
.fc-table .fc-cell:nth-child(2) {
  background-color: #0B4988;
  color: #ffffff;
}

.fc-table .fc-header .fc-cell:nth-child(2) {
  background-color: #0a3d73;
}

/* Header styling */
.fc-table .fc-header .fc-cell {
  padding: 20px 18px;
  font-weight: 700;
  color: #333;
  background-color: #f0f0f0;
}

.fc-table .fc-header .fc-cell:first-child {
  background-color: #f0f0f0;
}

.fc-table .fc-header .fc-cell:nth-child(2) {
  color: #ffffff;
}

.fc-table .fc-header .fc-cell img.fc-cell-img {
  max-width: 160px;
  max-height: 40px;
  object-fit: contain;
}

/* Check icon */
.fc-cell .fc-icon-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #27AE60;
  color: #fff;
}

.fc-cell .fc-icon-check svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Cross icon */
.fc-cell .fc-icon-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #E74C3C;
  color: #fff;
}

.fc-cell .fc-icon-cross svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Cell images */
.fc-cell img.fc-cell-img {
  max-width: 120px;
  max-height: 48px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .fc-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .fc-table {
    min-width: 600px;
  }
}

/* Source: casos-exito-medicion-productividad */
/* las cards han de mostrarse 3 por fila, en caso que la pantalla sea mas pequeña(tablet) 2 por fila, y en mobile 1 por fila. El contenedor de las cards debe centrar las cards horizontalmente, y cada card debe tener un fondo claro, un poco de padding, y el texto centrado. El titulo de cada card debe tener un color destacado (por ejemplo, el azul primario de Workmeter). */
    .wm-card-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .wm-card {
        background: #FAFAFA;
        margin: 10px;
        padding: 24px;
        text-align: center;
        width: calc(33.333% - 20px); /* 3 cards per row with margin */
    }
    .wm-card > h2 {
        font-weight: 1000;
    }
    .wm-card > h3 {
        color: var(--workmeter-primary-blue);
    }
    @media (max-width: 1024px) {
        .wm-card {
            width: calc(50% - 20px); /* 2 cards per row with margin */
        }
    }
    @media (max-width: 600px) {
        .wm-card {
            width: 100%; /* 1 card per row */
        }
    }

    /* .wm-card-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .wm-card {
        background: #FAFAFA;
        margin: 10px;
        padding: 24px;
        text-align: center;
    }
    .wm-card > h3 {
        color: var(--workmeter-primary-blue);
    } */

/* Source: control-del-teletrabajo-app */
.accordion {
            border: 1px solid #ddd;
            border-radius: 6px;
        }

        .accordion details {
            border-bottom: 1px solid #ddd;
        }

        .accordion details:last-child {
            border-bottom: none;
        }

        .accordion summary {
            background-color: #ffae3a;
            color: #fff;
            list-style: none;
            cursor: pointer;
            padding: 12px 16px;
            font-weight: 600;

            display: flex;
            align-items: center;
            gap: 12px;
        }

        .accordion summary::-webkit-details-marker {
            display: none;
        }

        .accordion summary::before {
            content: "+";
            color: #000;
            line-height: 1;
            width: 20px;
            text-align: center;
        }

        .accordion details[open] summary::before {
            content: "−";
        }

        .accordion .content {
            padding: 10px 20px 10px 20px;
            color: #444;
        }

/* Source: noticias-prensa */
/* Estilos para la tarjeta de prensa/noticias */
    div:has(> .wm-press-card) {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 400px));
        justify-content: center;
        gap: 60px;
        max-width: 1650px;
        margin-inline: auto;
    }
    div:has(> .wm-press-card) > br { display: none; }
    .wm-press-card {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        width: 100%;
        border: 1px solid #e5e7eb;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .wm-press-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

    .wm-press-card-image-wrapper {
        width: 100%;
        height: 180px;
        padding: 1.5rem;
        background-color: #f9fafb;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        border-bottom: 1px solid #f3f4f6;
    }

    .wm-press-card-image-wrapper img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }

    .wm-press-card-content {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        text-align: center;
    }

    .wm-press-card-text {
        color: #6b7280;
        margin: 0 0 1.5rem 0;
        line-height: 1.5;
        flex-grow: 1;
    }

    .wm-press-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.625rem 1.25rem;
        background-color: var(--workmeter-primary-green-button); /* Workmeter Red/Orange approx or generic CTA */
        color: #ffffff;
        font-weight: 600;
        text-decoration: none;
        border-radius: 4px;
        transition: background-color 0.2s ease;
        align-self: flex-start;
        text-transform: uppercase;
        letter-spacing: 0.025em;
        margin: 0 auto;
    }

    .wm-press-button:hover {
        background-color: #DC2626;
        color: #ffffff;
    }

    /* Responsividad */
    @media (max-width: 640px) {
        .wm-press-card {
            max-width: 100%;
            margin: 1rem 0;
        }

        .wm-press-card-content {
            padding: 1.25rem;
        }
    }

/* Source: software-control-de-horarios */
.wm-tslider-wrapper {
            position: relative;
            width: 100%;
            margin: 0 auto;
            padding: 20px 60px;
            background: transparent;
            box-sizing: border-box;
        }

        .wm-tslider-viewport {
            overflow: hidden;
            width: 100%;
        }

        .wm-tslider-track {
            display: flex;
            width: 100%;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .wm-tslider-item {
            flex: 0 0 100%;
            box-sizing: border-box;
            padding: 0;
            opacity: 0;
            transition: opacity 0.6s;
            text-align: center;
        }

        .wm-tslider-item.active {
            opacity: 1;
        }

        .wm-tslider-content {
            width: 100%;
            padding: 20px 0;
            color: rgb(255, 255, 255);
        }

        .wm-tslider-text {
            line-height: 1.6;
            margin-bottom: 24px;
            font-style: italic;
        }

        .wm-tslider-author {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            text-align: left;
        }

        .wm-tslider-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #fff;
            padding: 3px;
            flex-shrink: 0;
            box-sizing: border-box;
        }

        .wm-tslider-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            display: block;
        }

        .wm-tslider-info {
            display: flex;
            flex-direction: column;
        }

        .wm-tslider-name {
            font-weight: 700;
            line-height: 1.3;
        }

        .wm-tslider-role {
            font-weight: 400;
            line-height: 1.3;
            opacity: 0.85;
        }

        .wm-tslider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            border: none;
            background: transparent;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            transition: all 0.3s;
            z-index: 10;
        }
        .wm-tslider-nav:hover {
            color: #007bff;
            transform: translateY(-50%) scale(1.2);
        }
        .wm-tslider-prev { left: 0; }
        .wm-tslider-next { right: 0; }

        @media (max-width: 768px) {
            .wm-tslider-wrapper { padding: 20px 0 60px 0; }
            .wm-tslider-nav { top: auto; bottom: 0; transform: none; }
            .wm-tslider-prev { left: calc(50% - 60px); }
            .wm-tslider-next { right: calc(50% - 60px); }
        }
