/**
 * Fiverr Reviews Slider Styles
 * 
 * @package Kadence Child
 * @version 1.0.0
 */

/* ===== SECTION CONTAINER ===== */
.fr-slider-section {
  padding: 20px 0;
  background: transparent;
  overflow: hidden;
  width: 100%;
}

/* ===== ROW CONTAINER ===== */
.fr-slider-section .fr-row {
  margin-bottom: 30px;
  position: relative;
}

/* ===== SWIPER CONTAINER ===== */
.fr-slider-section .fr-swiper {
  width: 70%;
  overflow: visible !important;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  .fr-slider-section .fr-swiper {
    width: 85%;
  }
}

/* ===== SPECIFIC ROW TARGETING ===== */
.fr-slider-section .fr-row .fr-swiper-row-1 {
  /* Row 1 specific styles if needed */
}

.fr-slider-section .fr-row .fr-swiper-row-2 {
  /* Row 2 specific styles if needed */
}

/* ===== SLIDE STYLING ===== */
.fr-slider-section .fr-swiper .swiper-slide {
  height: auto;
  opacity: 1;
  transform: scale(1);
}

/* ===== SWIPER WRAPPER ===== */
.fr-slider-section .fr-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ===== CARD DESIGN ===== */
.fr-slider-section .fr-card {
  background: linear-gradient(180deg, #303030 0%, #1a1a1a 100%);
  border: 1px solid #444;
  border-radius: 16px;
  padding: 24px;
  color: #fff;
  font-family: "Inter", sans-serif;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  user-select: none;
}

/* ===== CARD HEADER ===== */
.fr-slider-section .fr-card-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  position: relative;
}

.fr-slider-section .fr-card .fr-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 14px;
  border: 2px solid #555;
}

.fr-slider-section .fr-card .fr-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fr-slider-section .fr-card .fr-author-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  color: #fff;
}

.fr-slider-section .fr-card .fr-source {
  font-size: 12px;
  color: #888;
  margin: 4px 0;
}

.fr-slider-section .fr-card .fr-source span {
  color: #1dbf73;
}

.fr-slider-section .fr-card .fr-rating {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}

.fr-slider-section .fr-card .fr-star-icon {
  width: 14px;
  height: 14px;
}

/* ===== FIVERR LOGO ===== */
.fr-slider-section .fr-card .fr-fiverr-logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}

.fr-slider-section .fr-card .fr-fiverr-logo img,
.fr-slider-section .fr-card .fr-fiverr-logo svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== REVIEW TEXT ===== */
.fr-slider-section .fr-card .fr-review-text {
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
