.av_persona_kachel_slider_container {
      max-width: 1300px;
      margin: 20px auto 0px;
      position: relative;
      padding: 20px;
    }
    .av_persona_kachel_slider_row {
      display: flex;
      flex-direction: column;
      gap: 40px;
      min-height: 300px;
      transition: opacity 0.4s;
    }

    .av_persona_kachel_slider_row.av_persona_kachel_slider_fade {
      opacity: 0;
      transition: opacity 0.4s;
    }
    .av_persona_kachel_slider_row {
      opacity: 1;
      transition: opacity 0.4s;
    }

    .av_persona_kachel_slider_testimonial {
      text-align: center;
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      flex: 1;
      box-sizing: border-box;
      box-shadow: 0 2px 8px rgba(5,22,77,0.04);
                min-height: 342px;
               transition: transform 0.3s;
    }

    .av_persona_kachel_slider_testimonial:hover {
     transform: translateY(-5px);
    }

    .av_persona_kachel_slider_avatar {
      width: 115px;
      height: 115px;
      margin:  auto;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #05164d;
      margin-bottom: 15px;
      margin-top: 15px;
    }

    .av_persona_kachel_slider_name {
      font-weight: bold;
      font-size: 1.3em;
      margin-bottom: 0px;
      color: #05164d;
    }
    .av_persona_kachel_slider_role {
      font-size: 1.0em;
      color: #6b7a99;
      margin-bottom: 16px;
    }
    .av_persona_kachel_slider_text {
      font-size: 1.1em;
      color: #05164d;
      margin-bottom: 10px;
    }
    .av_persona_kachel_slider_controls {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-top: 40px;
    }
    .av_persona_kachel_slider_btn {
      background: #05164d;
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 38px;
      height: 38px;
      font-size: 1.3em;
      cursor: pointer;
      transition: background 0.2s;
      border: 2px solid #fff;
    }
    .av_persona_kachel_slider_btn:disabled {
      background: #05164d;
      color: #fff;
      cursor: not-allowed;
    }
    .av_persona_kachel_slider_btn:disabled:hover {
      background: #05164d;
      color: #fff;
      cursor: not-allowed;
    }
    .av_persona_kachel_slider_btn:hover {
      background: #fff;
      color: #05164d;
      cursor: pointer; /* Change to pointer for active buttons */
    }
    .av_persona_kachel_slider_dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }
    .av_persona_kachel_slider_dot {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #F6F9FC;
      border: 2px solid #05164d;
      cursor: pointer;
      transition: background 0.2s;
    }
    .av_persona_kachel_slider_dot.av_persona_kachel_slider_active {
      background: #ffad00;
    }
  @media (min-width: 600px) {
    .av_persona_kachel_slider_row {
      flex-direction: row;
      flex-wrap: nowrap;
    }
    .av_persona_kachel_slider_testimonial {
      min-width: 0;
    }
  }
  @media (min-width: 900px) {
    .av_persona_kachel_slider_row {
      flex-direction: row;
    }
  }

