.block-rating-column .container.full {
    padding: 0;
}

/* Rating Column Block Styles */
.rating-column-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
}

/* Left Column - Testimonial */
.testimonial-column {
    background-color: #85C9E5;
    padding: 30px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--color-p);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star {
    color: #6B46C1;
    font-size: 24px;
    font-weight: bold;
}

.testimonial-text {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: 0%;
    color: var(--color-p);
    
}

.reviewer-name {
    font-family: Inter;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 2%;
    text-transform: uppercase;
    color: var(--color-p);
    margin-top: 15px;
}

.review-verification {
    margin-top: 40px;
}

.review-verification ul {
    list-style: none;
    padding: 0;
}

.review-verification ul li {
    position: relative;
    padding-left: 40px;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0%;
}

.review-verification ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: -4px;
    width: 25px;
    height: 25px;
    background-image: url('/wp-content/uploads/2025/09/Tick-2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.checkmark {
    background-color: #6B46C1;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Right Column - Statistics */
.stats-column {
    background-color: var(--color-p);
    padding: 30px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.stat-item {
    padding: 30px 0;
}

.stat-number {
    font-family: Nexa Bold;
    font-weight: 700;
    font-size: 54px;
    line-height: 78px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--color-n-white);
}

.stat-label {
    font-family: Nexa Bold;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -2%;
    text-align: center;
    vertical-align: bottom;
    color: var(--color-n-white);
}

.stat-divider {
    height: 1px;
    background-color: #fff;
    margin: 0;
}

.block-rating-column .img-container {
    position: relative;
    max-width: 470px;
    margin-left: auto;
    margin-right: 0;
  }
  
  .block-rating-column .img-container .player {
    height: 100% !important;
  }
  
  
  .block-rating-column .img-container svg {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translateY(-50%);
    z-index: 8;
    cursor: pointer;
  }
  
  .block-rating-column .img-container iframe {
    position: absolute;
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 100% 0 0 100%;
    z-index: 9;
    display: none;
    right: 0;
    max-width: 720px;
  }

  .block-rating-column .img-container img {
    max-height: 500px;
    max-width: 720px;
    object-position: right;
    margin-right: 0;
    margin-left: auto;
  }

/* Responsive Design */
@media (max-width: 768px) {
    .rating-column-wrapper {
        grid-template-columns: 1fr;
    }
    
    .testimonial-column,
    .stats-column {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 56px;
    }

    .stat-label {
        font-size: 22px;
     }
    
    .testimonial-text {
        font-size: 16px;
    }
}
