/* Image carousel */
.fl-image-carousel {
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

.fl-image-carousel:after,
.fl-image-carousel:before {
    content: "";
    background: linear-gradient(270deg, rgba(240, 248, 251, 0) 0%, #F0F8FB 100%);
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    width: 250px;
    z-index: 1;
    display: block;
}

.fl-image-carousel:before {
    background: linear-gradient(90deg, rgba(240, 248, 251, 0) 0%, #F0F8FB 100%);
    left: auto;
    right: 0;
}

.fl-carousel-track .fl-carousel-slide {
    padding: 0 7.5px; /* 15px gap total between slides */
}
.fl-carousel-track .fl-carousel-slide img {
    width: 210px;
    height: 210px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

@media (max-width: 768px) {
    /* Peek on both sides: container clips, inner list overflows */
    .fl-image-carousel {
        padding: 0 10%;
        box-sizing: border-box;
        margin-inline: -1.25rem;
    }
    .fl-image-carousel .slick-list {
        overflow: visible !important;
    }
    .fl-carousel-track .fl-carousel-slide img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .fl-image-carousel:after, .fl-image-carousel:before {
        width: 80px;
    }
}

/* Logos grid */
.fl-logos-section {
    margin-block: 60px;
    padding: 1.5rem 0;
    background: #f9f9f9;
    border-radius: 16px;
}
.fl-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: center;
    margin-bottom: 60px;
}
.fl-logo-item img {
    width: 100%;
    max-height: 60px;
    object-fit: contain;
    /* filter: grayscale(1); */
    opacity: 1;
    transition: opacity 0.2s;
}
.fl-logo-item img:hover {
    opacity: 1;
    filter: grayscale(0);
}

.fl-logo-item:not(:last-child) img {
    border-left: 1px solid #CACACA;
}

@media (max-width: 768px) {
    .fl-logo-item img {
        max-height: 35px;
    }
    .fl-logos-section {
        padding: 0;
        margin-block: 50px;
    }
}

/* Rating */
.rating-wrapper {
    padding: 4px;
    border-radius: 20px;
    background: conic-gradient(from 90deg at 50% 50%, #0085B6 0deg, #EF0004 90deg, #F4A700 214.2deg, #1C9900 360deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  .rating-box {
    background: #f2f2f2;
    border-radius: 16px;
    padding: 30px 60px;
    text-align: center;
    font-size: 24px;
  }

  .stars {
    color: #f5a623;
    font-size: 40px;
    margin-bottom: 20px;
  }

  .stars span {
    margin: 0 2px;
  }

  .rating-text {
    color: #555;
  }

  .rating-text strong {
    font-weight: 700;
  }

  @media(max-width: 768px) {
        .rating-box {
        padding-inline: 20px;
        }
}