.main_content{background-color: #040404;}
.single-review-top {
    display: grid;
    grid-template-columns: minmax(230px, 292px) 1fr;
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px;
    background: #050505;
    color: #e8e8e8;
    font-family: Arial, Helvetica, sans-serif;
}

.review-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 388px;
    padding: 18px;
    background: #fff;
    border: 1px solid #0e0e0e;
}

.review-product-image img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 340px;
    object-fit: contain;
}

.review-card {
    position: relative;
    min-height: 388px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 4px;
    background:
        radial-gradient(circle at top left, rgba(157,17,22,.13), transparent 30%),
        linear-gradient(135deg, #181818 0%, #0b0b0b 62%, #050505 100%);
    box-shadow:
        inset 0 0 0 1px rgba(0,0,0,.85),
        0 12px 28px rgba(0,0,0,.55);
}

.review-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255,255,255,.07);
    pointer-events: none;
}

.review-card-inner {
    position: relative;
    z-index: 1;
    padding: 24px 34px 28px;
}

.review-card h1 {
    margin: 0 0 4px;
    color: #f2f2f2;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4.2vw, 43px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.review-headline {
    margin: 0 0 15px;
    color: #fff;
    font-family: "Courier New", Courier, monospace;
    font-size: clamp(18px, 2.4vw, 25px);
    font-weight: 700;
    line-height: 1.15;
}

.review-rating-line {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 12px;
}

.css-stars {
    --star-size: 25px;
    --star-color: #333;
    --star-fill: #d01822;
    --rating: 100%;
    position: relative;
    display: inline-block;
    width: calc(var(--star-size) * 5);
    height: var(--star-size);
    font-size: var(--star-size);
    line-height: 1;
}

.css-stars::before,
.css-stars::after {
    content: "★★★★★";
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
}

.css-stars::before {
    color: var(--star-color);
}

.css-stars::after {
    width: var(--rating);
    overflow: hidden;
    color: var(--star-fill);
}

.review-rating-line span,
.review-byline,
.review-date {
    font-size: 13px;
}

.review-byline,
.review-date {
    color: #c9c9c9;
    line-height: 1.4;
}

.review-byline a {
    color: #d01822;
    font-weight: 700;
    text-decoration: none;
}

.verified-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 13px;
    height: 13px;
    margin-left: 4px;
    border-radius: 50%;
    background: #7a7a7a;
    color: #111;
    font-size: 9px;
    font-weight: 700;
    vertical-align: 1px;
}

.review-date {
    margin-bottom: 20px;
}

.review-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 148px;
    gap: 22px;
    align-items: start;
    max-width: 790px;
}

.review-card:not(.has-review-photo) .review-content-layout {
    display: block;
}

.review-card:not(.has-review-photo) .review-product-photo {
    display: none;
}

.review-body {
    color: #dedede;
    font-size: 14px;
    line-height: 1.55;
}

.review-body p {
    margin: 0 0 11px;
}

.review-product-photo {
    margin: 0;
    padding: 8px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 4px;
}

.review-product-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.12;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,.7);
}

.review-product-photo figcaption {
    margin-top: 7px;
    color: #aaa;
    font-size: 11px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.review-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 700px;
    margin-top: 19px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: #cfcfcf;
    font-size: 13px;
}

.review-vote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 5px 11px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 3px;
    background: linear-gradient(#1a1a1a, #0c0c0c);
    color: #dcdcdc;
    font: inherit;
    cursor: pointer;
}

.review-vote-btn:hover {
    border-color: rgba(157,17,22,.8);
    color: #fff;
}

.vote-icon {
    color: #aaa;
    font-size: 11px;
    line-height: 1;
}

.report-review {
    margin-left: 7px;
    color: #c3222a;
    text-decoration: none;
}

.report-review:hover,
.review-byline a:hover {
    color: #fff;
}

.back-to-reviews {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 188px;
    margin-top: 21px;
    padding: 11px 18px;
    border: 1px solid rgba(210,35,45,.75);
    background: rgba(0,0,0,.2);
    color: #f0f0f0;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
}

.back-to-reviews:hover {
    background: #9d1116;
    color: #fff;
}

@media (max-width: 900px) {
    .single-review-top {
        grid-template-columns: 220px 1fr;
        gap: 12px;
    }

    .review-card-inner {
        padding: 22px;
    }

    .review-content-layout {
        grid-template-columns: minmax(0, 1fr) 118px;
        gap: 16px;
    }

    .review-product-image {
        min-height: 350px;
    }
}

@media (max-width: 650px) {
    .single-review-top {
        display: block;
        padding: 12px;
    }

    .review-product-image {
        min-height: 250px;
        margin-bottom: 12px;
        padding: 14px;
    }

    .review-product-image img {
        max-height: 225px;
    }

    .review-card {
        min-height: 0;
    }

    .review-card::before {
        inset: 7px;
    }

    .review-card-inner {
        padding: 18px;
    }

    .review-card h1 {
        font-size: 30px;
        line-height: .98;
    }

    .review-headline {
        font-size: 18px;
    }

    .review-rating-line {
        gap: 10px;
    }

    .css-stars {
        --star-size: 22px;
    }

    .review-content-layout {
        display: block;
    }

    .review-product-photo {
        max-width: 220px;
        margin: 16px auto 0;
    }

    .review-actions > span {
        flex-basis: 100%;
    }

    .report-review {
        margin-left: 0;
        padding-top: 7px;
    }

    .back-to-reviews {
        width: 100%;
        box-sizing: border-box;
    }
}