    .slider-wrapper {
      /*max-width: 645px;*/
      margin: 0 auto;
      position: relative;
    }

    .mkb-slider .slide-item {
      position: relative;
    }

    .slide-link {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 3;
    text-indent: -9999px;
    }

    .mkb-slider img {
      width: 100%;
      height: 455px;
      object-fit: cover;
      display: block;
      /*border-radius: 8px;*/
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /*background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55));*/
      background: linear-gradient(180deg, transparent, transparent 70%, rgba(0,0,0,0.55));
      /*border-radius: 8px;*/
      z-index: 1;
    }

    .slide-title {
      position: absolute;
      bottom: 15px;
      left: 15px;
      right: 15px;
      color: white;
      font-size: 2rem;
      line-height: 35px;
      /*font-weight: bold;*/
      z-index: 2;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    }

    /* Navigation thumbnails */
    .tns-nav {
      display: flex;
      justify-content: center;
      gap: 8px;
      flex-wrap: nowrap;
      overflow: hidden;
      margin-top: 5px;
    }

    .tns-nav button {
      border: none;
      background: none;
      padding: 0;
      cursor: pointer;
      /*opacity: 0.6;*/
      transition: opacity 0.3s, border 0.3s;
      flex: 1 0 calc(100% / 7 - 8px); /* Fit 7 thumbnails in row with spacing */
    }

    .tns-nav button img {
      width: 100%;
      height: 60px;
      object-fit: cover;
      /*border-radius: 4px;*/
      /*border: 2px solid transparent;*/
    }

    .tns-nav button.tns-nav-active img {
      opacity: 1;
      border-color: #ffffff;
    }

    .tns-nav button:hover img {
      opacity: 0.9;
    }

.tns-nav button {
  position: relative; /* Needed for absolute positioning of pseudo-element */
}

.tns-nav button.tns-nav-active::before {
  content: "";
  position: absolute;
  top: -0.2px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ffffff; /* Arrow color */
  z-index: 2;
}



    /* Navigation arrows */
    .tns-controls {
      position: absolute;
      top: 45%;
      width: 100%;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      z-index: 10;
    }

    .tns-controls button {
      background: rgba(0, 0, 0, 0.6);
      border: none;
      color: white;
      font-size: 24px;
      width: 40px;
      height: 65px;
      /*/border-radius: 50%;*/
      cursor: pointer;
      pointer-events: all;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }

    .tns-controls button:hover {
      background: rgba(0, 0, 0, 0.85);
    }

    .tns-nav button,
.tns-controls button,
.slide-link {
  outline: none;
  box-shadow: none;
}

.tns-nav button:focus,
.tns-controls button:focus,
.slide-link:focus {
  outline: none;
  box-shadow: none;
}


@media (max-width: 768px) {
  .mkb-slider img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  .tns-controls {
    top: 50%;
  }

  .slide-title {
    font-size: 2rem;
    bottom: 10px;
    left: 15px;
    line-height: 35px;
  }

  .tns-controls button {
    width: 35px;
    height: 60px;
    font-size: 18px;
  }

  #thumb-container,
  .tns-nav {
    display: none !important;
  }
}
