.guestzone-event-reviews {
    width: 100%;
    margin-bottom: 70px;
}

.guestzone-event-reviews .editors-pst {
    margin-bottom: 0;
}

.guestzone-event-reviews__body {
    padding: 18px 18px 28px;
    background: #eef1f5;
    border-radius: 0 0 8px 8px;
}

.guestzone-event-reviews__heading-icon {
    margin-left: 3px;
    color: #0083ff;
}

.guestzone-event-reviews .guestzone-event-reviews__grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: start !important;
    gap: 16px !important;
    width: 100% !important;
}

.guestzone-event-review-card {
    min-width: 0;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border: 1px solid #e1e5ea;
    border-radius: 7px;
    background: #ffffff;
    box-shadow: 0 2px 9px rgba(0, 0, 0, .035);
}

.guestzone-event-review-card__link {
    display: block;
    color: #202020 !important;
    text-decoration: none !important;
}

.guestzone-event-review-card__image-wrap {
    overflow: hidden;
    background: #eceff3;
}

.guestzone-event-review-card__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 628;
    object-fit: cover;
    transition: transform .2s ease;
}

.guestzone-event-review-card:hover .guestzone-event-review-card__image {
    transform: scale(1.01);
}

.guestzone-event-review-card__content {
    padding: 11px 13px 13px;
    background: #ffffff;
}

.guestzone-event-review-card__title {
    margin: 0 0 2px;
    overflow: hidden;
    color: #202020;
    font: 600 16px/21px "Poppins", sans-serif;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.guestzone-event-review-card__date {
    margin-bottom: 7px;
    color: #68788b;
    font: 13px/19px "Poppins", sans-serif;
}

.guestzone-event-review-card__score {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #202020;
    font: 13px/19px "Poppins", sans-serif;
    white-space: nowrap;
}

.guestzone-event-review-card__number {
    color: #202020;
    font-size: 14px;
    line-height: 19px;
    font-weight: 600;
}

.guestzone-event-review-stars {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 18px;
    line-height: 1;
    color: #0083ff;
}

.guestzone-event-review-stars__outline {
    display: inline-block;
    white-space: nowrap;
    letter-spacing: 1px;
    color: #0083ff;
}

.guestzone-event-review-stars__filled {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--review-fill);
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 1px;
    color: #0083ff;
}

.guestzone-event-reviews__pagination {
    width: 100%;
    margin-top: 20px;
    overflow: visible;
}

.guestzone-event-reviews__pagination nav {
    width: 100%;
}

.guestzone-event-reviews__pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.guestzone-event-reviews__pagination .page-item {
    display: block;
    margin: 0;
    padding: 0;
}

.guestzone-event-reviews__pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid #d9dfe6;
    border-radius: 5px;
    background: #ffffff;
    color: #0083ff !important;
    font: 500 14px/1 "Poppins", sans-serif;
    text-decoration: none !important;
    box-sizing: border-box;
}

.guestzone-event-reviews__pagination .page-link:hover {
    border-color: #0083ff;
    background: #f5f9ff;
    color: #0083ff !important;
}

.guestzone-event-reviews__pagination .page-item.active .page-link {
    border-color: #0083ff;
    background: #0083ff;
    color: #ffffff !important;
}

.guestzone-event-reviews__pagination .page-item.disabled .page-link {
    border-color: #e2e6eb;
    background: #f5f6f8;
    color: #a0a8b2 !important;
    cursor: default;
}

.guestzone-event-reviews__empty {
    padding: 18px;
    border: 1px solid #e1e5ea;
    border-radius: 6px;
    background: #ffffff;
    color: #5a5a5a;
    font: 15px/23px "Poppins", sans-serif;
}

@media screen and (max-width: 1050px) {
    .guestzone-event-reviews .guestzone-event-reviews__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }
}

@media screen and (max-width: 767px) {
    .guestzone-event-reviews {
        margin-bottom: 55px;
    }

    .guestzone-event-reviews__body {
        padding: 14px 12px 20px;
    }

    .guestzone-event-reviews .guestzone-event-reviews__grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .guestzone-event-review-card {
        width: 100%;
        border-radius: 6px;
    }

    .guestzone-event-review-card__content {
        padding: 10px 12px 11px;
    }

    .guestzone-event-review-card__title {
        margin-bottom: 2px;
        font-size: 16px;
        line-height: 21px;
    }

    .guestzone-event-review-card__date {
        margin-bottom: 6px;
        font-size: 13px;
        line-height: 19px;
    }

    .guestzone-event-review-card__score {
        gap: 6px;
        font-size: 13px;
        line-height: 19px;
    }

    .guestzone-event-reviews__pagination {
        margin-top: 16px;
    }

    .guestzone-event-reviews__pagination .pagination {
        gap: 5px;
    }

    .guestzone-event-reviews__pagination .page-link {
        min-width: 34px;
        height: 34px;
        padding: 0 8px;
        font-size: 13px;
    }
}