.bhw-product-review {
    --review-gold: #d4ad62;
    --review-ink: #f5eddd;
    --review-muted: #c9beaa;
    max-width: 1500px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 4rem) 6rem;
    color: var(--review-ink);
}

.bhw-product-review__hero {
    max-width: 900px;
    margin-bottom: 2rem;
}

.bhw-product-review__hero h1,
.bhw-product-review__card h2 {
    color: #f7e1ad;
}

.bhw-product-review__eyebrow {
    margin: 0 0 .6rem;
    color: var(--review-gold);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bhw-product-review__lock,
.bhw-product-review__decision {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(212, 173, 98, .45);
    border-radius: 14px;
    background: rgba(14, 18, 22, .9);
}

.bhw-product-review__jump {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: 2.25rem;
}

.bhw-product-review__jump a {
    padding: .45rem .7rem;
    border: 1px solid rgba(212, 173, 98, .35);
    border-radius: 999px;
    color: var(--review-ink);
    text-decoration: none;
}

.bhw-product-review__list {
    display: grid;
    min-width: 0;
    gap: 2.5rem;
}

.bhw-product-review__card {
    scroll-margin-top: 7rem;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: clamp(1rem, 3vw, 2rem);
    border: 1px solid rgba(212, 173, 98, .28);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(24, 29, 34, .98), rgba(8, 11, 14, .98));
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.bhw-product-review__card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.bhw-product-review__card-head h2 {
    max-width: 900px;
    margin: 0;
}

.bhw-product-review__status {
    flex: 0 0 auto;
    padding: .55rem .75rem;
    border-radius: 999px;
    background: #302516;
    color: #f4cb7d;
    font-size: .75rem;
    font-weight: 800;
}

.bhw-product-review__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: .85rem;
    margin: 1.5rem 0;
}

.bhw-product-review__gallery figure {
    margin: 0;
}

.bhw-product-review__gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    object-fit: cover;
}

.bhw-product-review__gallery figcaption {
    margin-top: .35rem;
    color: var(--review-muted);
    font-size: .75rem;
}

.bhw-product-review__facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1px;
    overflow: hidden;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
}

.bhw-product-review__facts > div {
    padding: .9rem;
    background: #10151a;
}

.bhw-product-review dt {
    color: var(--review-gold);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.bhw-product-review dd {
    margin: .35rem 0 0;
    color: var(--review-ink);
}

.bhw-product-review details {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .025);
}

.bhw-product-review summary {
    padding: 1rem;
    color: #f7e1ad;
    font-weight: 800;
    cursor: pointer;
}

.bhw-product-review details > div,
.bhw-product-review details > dl {
    padding: 0 1rem 1rem;
}

.bhw-product-review__copy-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.bhw-product-review__copy-grid dl > div + div {
    margin-top: 1rem;
}

.bhw-product-review__table-wrap {
    overflow-x: auto;
}

.bhw-product-review table {
    width: 100%;
    border-collapse: collapse;
}

.bhw-product-review th,
.bhw-product-review td {
    padding: .75rem;
    border-top: 1px solid rgba(255, 255, 255, .09);
    text-align: left;
    vertical-align: top;
}

.bhw-product-review__decision--blocked {
    border-color: #c7755d;
    background: rgba(73, 31, 25, .32);
}

.bhw-product-review__decision > span {
    display: block;
    margin-top: .35rem;
    color: #f7e1ad;
    font-weight: 800;
}

@media (max-width: 780px) {
    .bhw-product-review {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    .bhw-product-review__card > *,
    .bhw-product-review__copy-grid > * {
        min-width: 0;
        max-width: 100%;
    }

    .bhw-product-review__card-head,
    .bhw-product-review__copy-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bhw-product-review__status {
        width: fit-content;
    }

    .bhw-product-review__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
