/* Titan First Slider Widget Styles */
.titan-first-slider {
  width: 100%;
  position: relative;
}

.titan-first-slider .swiper {
  width: 100%;
  overflow: hidden;
}

.titan-first-slider .swiper-slide {
  width: 100%;
}

/* Slide Content Layout */
.titan-first-slider .slide-content {
  display: flex;
  gap: 20px;
  width: 100%;
}

.titan-first-slider .slide-text-content {
  flex: 1;
  max-width: 44%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.titan-first-slider .slide-image-content {
  flex: 1;
  max-width: 56%;
}

.titan-first-slider .slide-image-content img {
  width: auto;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Text Styles */
.titan-first-slider .slide-title {
  color: #fff;
  font-family: "FeatureMono", Sans-serif;
  font-size: 80px;
  font-weight: 500;
  margin: 0;
}

.titan-first-slider .slide-description {
  color: #fff;
  font-family: "Manrope", Sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  margin: 10px 0 0 0;
}

/* Advantages List */
.titan-first-slider .slide-advantages {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0 0;
}

.titan-first-slider .slide-advantages li {
  color: #fff;
  font-family: "Manrope", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
  padding: 10px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  background: rgba(55, 55, 55, 0.8);
}

/* Button */
.titan-first-slider .slide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "FeatureMono", Sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  padding: 5px 30px;
  background: #ec5e2a;
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s ease;
  margin-top: 30px;
  /* margin-block: 60px;*/
  width: 100%;
  text-align: center;
}

.titan-first-slider .slide-button:hover {
  background: #373737;
}

.titan-first-slider .slide-button .button-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: currentColor;
}

/* Thumbnails Navigation */
.titan-first-slider .slide-thumbnails {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 30px;
}

.titan-first-slider .thumbnail-item {
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  background: rgba(55, 55, 55, 0.8);
  gap: 15px;
  cursor: pointer;

  transition: all 0.3s ease;
}

.titan-first-slider .thumbnail-item:hover {
  background: #ec5e2a;
}

.titan-first-slider .thumbnail-image {
  width: auto;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 2px;
}

.titan-first-slider .thumbnail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.titan-first-slider .thumbnail-title {
  padding: 10px 0 10px 15px;
  color: #fff;
  font-family: "FeatureMono", Sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .titan-first-slider .slide-content {
    flex-direction: column;
  }

  .titan-first-slider .slide-text-content,
  .titan-first-slider .slide-image-content {
    max-width: 100%;
  }

  .titan-first-slider .slide-title {
    font-size: 24px;
  }

  .titan-first-slider .slide-thumbnails {
    flex-direction: column;
  }

  .titan-first-slider .thumbnail-item {
    width: 100%;
  }
}
