.reviews-all-page {
    padding-top: 0;
    padding-bottom: 64px;
}

.reviews-all-page .reviews-page-title {
    margin: 0 auto 50px auto;
    width: auto;
    font-family: Buyan;
    font-weight: 700;
    font-size: 92px;
    line-height: 105%;
    text-transform: uppercase;
    text-align: center;
    background: radial-gradient(
        164.72% 3204.14% at 46.81% 50%,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.reviews-all-controls {
    display: flex;
    flex-direction: column;
    gap: 27px;
    margin-bottom: 50px;
}

.reviews-all-search {
    width: 100%;
}

.reviews-all-search-wrapper {
    position: relative;
}

.reviews-all-search-wrapper input[type="text"] {
    width: 100%;
    background-color: #868686;
    color: #D2D2D2;
    border-radius: 9px;
    padding: 11px 23px !important;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
}

.reviews-all-search-wrapper input[type="text"]::placeholder {
    color: #B0B0B0;
    opacity: 1;
}

.reviews-all-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #3a3a3a;
    border-radius: 0 0 9px 9px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.reviews-all-suggestions.active {
    display: block;
}

.reviews-all-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.reviews-all-suggestion-item:hover {
    background: #4a4a4a;
}

.reviews-all-suggestion-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

.reviews-all-suggestion-item span {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
}

.reviews-all-filters {
    display: flex;
    gap: 23px;
}

.reviews-all-subtitle-row {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 33px;
}

.reviews-all-subtitle {
    font-family: "Buyan", sans-serif;
    font-weight: 700;
    font-size: 70px;
    line-height: 105%;
    text-transform: uppercase;
    margin: 0;
    background: radial-gradient(
        164.72% 3204.14% at 46.81% 50%,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.reviews-all-sort {
    min-width: 348px;
}

.reviews-all-content .pagination-wrapper {
    margin-top: 30px;
}

.reviews-all-search-wrapper .search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #B0B0B0;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    display: none;
}

.reviews-all-search-wrapper .search-clear.active {
    display: block;
}

.reviews-all-search-wrapper .search-clear:hover {
    color: #FFFFFF;
}

@media screen and (max-width: 1024px) {
    .reviews-all-page {
        padding-top: 0;
    }
}

@media screen and (max-width: 900px) {
    .reviews-all-page .reviews-page-title {
        margin: 0 auto 35px auto;
        font-size: 60px;
    }

    .reviews-all-controls {
        gap: 18px;
        margin-bottom: 45px;
    }

    .reviews-all-filters {
        flex-direction: column;
        gap: 18px;
    }

    .reviews-all-subtitle-row {
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 24px;
        justify-content: start;
    }

    .reviews-all-subtitle {
        font-size: 60px;
    }

    .reviews-all-sort {
        min-width: 286px;
    }

    .reviews-all-page {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 670px) {
    .reviews-all-page .reviews-page-title {
        margin: 0 auto 25px auto;
        font-size: 50px;
    }

    .reviews-all-subtitle {
        font-size: 50px;
    }

    .reviews-all-subtitle-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .reviews-all-controls {
        gap: 15px;
        margin-bottom: 36px;
    }

    .reviews-all-filters {
        gap: 15px;
    }

    .reviews-all-sort {
        min-width: 100%;
    }
}

@media screen and (max-width: 515px) {
    .reviews-all-page {
        padding-bottom: 37px;
    }
}

