.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;

}

.reviews-grid-item-link .background {
    display: flex;
    justify-content: center;
    height: 400px;
    background-color: #727272;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    margin: 0 0 24px;
}

.reviews-wrapper .reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews-grid-item-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.reviews-grid-item-image {
    height: 52px;
    margin-bottom: 24px;
}

.reviews-grid-item img {
    width: auto !important;
    height: 100%;
}


.reviews-grid-item-position {
    font-family: var(--solomon);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    text-align: left;
    padding-bottom: 24px;
    color: #1E235380;
}

.reviews-grid-item-title {
    font-size: 24px;
    line-height: 1.3;
    text-align: left;
    font-family: var(--solomon);
    font-weight: 600;
    color: var(--blue);
    opacity: .6;
}

.reviews-grid-item-description {
    font-size: 18px;
    line-height: 1.3;
    text-align: left;
    font-family: var(--solomon);
    font-weight: 400;
    color: var(--lightblue);
    margin: 0 0 40px;
}

.reviews-grid-item-detail {
    margin: auto 0 0;
}

.reviews-grid-item-detail .main-button {
    padding: 20px 0;
    width: 100%;
}

.reviews-grid + .load-more-wrapper {
    margin-top: 40px;
}

@media all and (max-width: 1024px) {
    .reviews-grid-item .reviews-grid-item-detail .main-button {
        width: unset;
    }

}

@media all and (max-width: 899px) {
    .reviews-grid-item-link .background {
        height: 250px;
    }
}

@media all and (max-width: 599px) {
    .reviews-grid-item-title {
        font-size: 18px;
    }
}

@media all and (max-width: 480px) {
    .reviews-grid-item-title {
        font-size: 16px;
    }
}