.top-review-wrapper {
    display: flex;
    justify-content: center;
    gap: 100px;
    width: 1200px;
    margin: 0 auto;
    align-items: center;
    border: 1px solid var(--sub-color-1);
    padding: 50px 50px 50px 0;
}

@media(max-width:992px) {
    .top-review-wrapper {
        width: 100%;
        border: none;
        box-shadow: none;
        padding: 0;
        flex-direction: column;
        margin-top: 150px;
        gap: 50px;
    }
}

.top-review-titles {
    width: 40%;
}

@media(max-width:992px) {
    .top-review-titles {
        width: 100%;
    }
}

.top-review-contents {
    width: 60%;
}

@media(max-width:992px) {
    .top-review-contents {
        width: 100%;
        padding: 0 20px;
    }
}

.top-review-content {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    border-bottom: 2px solid var(--sub-color-1);
    padding: 25px 0;
}

.top-review-content:last-child {
    border-bottom: none;
}

.top-review-content-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 100%;
}

@media(max-width:992px) {
    .top-review-content-img {
        float: left;
    }
}

.top-review-content-name {
    color: var(--txt-color-2);
}

@media(max-width:992px) {
    .top-review-content-name {
        font-size: 18px;
        height: 50px;
        vertical-align: middle;
        display: table-cell;
        padding-left: 15px;
    }
}

.top-review-content-txt {
    font-weight: 700;
    margin-top: 10px;
}

@media(max-width:992px) {
    .top-review-content-txt {
        font-size: 16px;
        line-height: 24px;
        clear: both;
    }
}