/**
 * Performance Result Slider - "REAL TIME PERFORMANCE RESULTS"
 * Pixel-perfect design matching provided image
 */

/* .perf-result-section {
  padding: 80px 0;
  background: #fbf9f4;
} */

.perf-result-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 32px;
}

.perf-result-title {
  max-width: 987px;
  color: #6a5111;
  font-size: 80px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: -1.6px;
  margin: 0;
  text-transform: uppercase;
}

.perf-result-description {
  max-width: 700px;
  font-size: 24px;
  line-height: 1.4;
  color: #6a5111;
  margin-top: 15px;
  /* opacity: 0.9; */
}

.perf-result-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.perf-result-prev,
.perf-result-next {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.perf-result-prev {
  background: #350f6b;
}

.perf-result-prev:hover {
  background: #2a0c56;
  transform: translateX(-3px);
}

.perf-result-next {
  background: #ff6b35;
}

.perf-result-next:hover {
  background: #e55a28;
  transform: translateX(3px);
}

.perf-result-swiper {
  overflow: hidden;
  /* margin: 0 -12px; */
}

.perf-result-card {
  background: transparent;
  height: 100%;
}

.perf-result-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); */
}

.perf-result-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Badge */
.perf-result-badge {
  position: absolute;
  top: 0px;
  left: 0px;
}

.badge-logo {
  overflow: hidden;
  flex-shrink: 0;
}

.badge-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-text {
  font-size: 12px;
  font-weight: 700;
  color: #350f6b;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Swiper overrides for single slide */
.perf-result-swiper .swiper-slide {
  width: 100% !important;
  /* padding: 0 12px; */
}

/* Responsive */
@media (max-width: 1200px) {
  .perf-result-title {
    max-width: 621px;
    font-size: 64px;
  }
}
@media (max-width: 1024px) {
  .perf-result-title {
    font-size: 55px;
    max-width: 540px;
  }

  .perf-result-content {
    max-width: 540px;
  }
  .perf-result-prev,
  .perf-result-next {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .perf-result-section {
    padding: 0px;
  }

  .perf-result-header {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 35px;
  }

  .perf-result-title {
    font-size: 48px;
    max-width: 483px;
  }

  .perf-result-description {
    font-size: 15px;
  }

  .perf-result-nav {
    align-self: flex-end;
  }

  .perf-result-prev,
  .perf-result-next {
    width: 48px;
    height: 48px;
  }

  .perf-result-badge {
    top: 16px;
    left: 16px;
    padding: 10px 16px;
    gap: 10px;
  }

  .badge-logo {
    width: 32px;
    height: 32px;
  }

  .badge-text {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .perf-result-title {
    font-size: 28px;
    max-width: 249px;
    letter-spacing: 0.8px;
  }

  .perf-result-swiper {
    margin: 0;
  }

  .perf-result-swiper .swiper-slide {
    padding: 0;
  }
  .perf-result-prev,
  .perf-result-next {
    width: 33px;
    height: 33px;
  }
  .perf-result-prev svg,
  .perf-result-next svg {
    width: 10px;
    height: 15px;
  }
  .perf-result-header {
    margin-bottom: 28px;
  }
}
