﻿.page-game .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 18px 60px;
}


.back-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.back-btn,
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    min-width: 130px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--muted);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.back-btn:hover,
.share-btn:hover {
    color: #111;
    background: var(--brand);
    border-color: transparent;
}

.game-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 26px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-2);
}

.game-hero > * {
    position: relative;
    z-index: 1;
}

.game-hero::after {
    content: "";
    position: absolute;
    inset: -24px;
    z-index: 0;
    background-image: var(--hero-bg-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(26px) saturate(1.08);
    opacity: 0.2;
    transform: scale(1.06);
    pointer-events: none;
}

.game-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.78), rgba(8, 12, 20, 0.72));
    pointer-events: none;
}


.poster-wrapper {
    position: relative;
}

.poster-img {
    width: 100%;
    border-radius: 18px;
    box-shadow: var(--shadow-2);
    display: block;
    background: #000;
}

.country-corner-flag {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 7px;
    z-index: 5;
}

.type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--brand);
    border: 1px solid rgba(252, 189, 0, 0.5);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.info-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-col h1 {
    margin: 0;
    font-family: "e-UkraineHead", "e-Ukraine", sans-serif;
    font-size: 36px;
    line-height: 1.1;
}

.hero-release-line {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
}

.hero-description-separator {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.06));
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
}

.meta-value {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
}

.meta-value a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}

.meta-value a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.75);
}

.description {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.company-links-section {
    margin-top: 22px;
}

.company-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.company-links-col {
    min-width: 0;
}

.company-links-col .section-title {
    font-size: 15px;
    margin-bottom: 10px;
}

.company-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.company-link-item {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 10px 0 0;
    min-height: 40px;
    border-radius: 8px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
}

a.company-link-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.company-link-item img {
    width: 40px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 7px 0 0 7px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--surface-3);
    flex: 0 0 auto;
}

.company-link-item span {
    padding-left: 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.company-empty {
    color: var(--muted);
    font-size: 13px;
}

.admin-controls {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 24px 0 0;
    align-items: center;
}

.btn-edit, .btn-share-gen, .btn-delete {
    padding: 10px 14px;
    border-radius: 12px;
    border: none;
    background: var(--surface-2);
    color: var(--text);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    min-width: 160px;
    white-space: nowrap;
}

.btn-delete { color: #ff8f9b; }

.btn-edit:hover,
.btn-share-gen:hover,
.btn-delete:hover {
    transform: translateY(-2px);
    background: var(--surface-3);
}
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 22px;
}

.hltb-card {
    margin-top: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-2);
}

.hltb-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
    margin-bottom: 14px;
}

.hltb-title:hover {
    color: var(--brand);
}

.hltb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.hltb-item {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
}

.hltb-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
}

.hltb-label {
    margin-top: 6px;
    font-size: 12px;
    color: var(--muted);
}

.details-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
}

.section-title {
    font-size: 16px;
    margin: 0 0 12px 0;
    font-weight: 700;
    color: var(--text);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 10px;
    border-radius: 8px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s ease;
}

a.tag:hover {
    border-color: rgba(252, 189, 0, 0.45);
    background: rgba(255, 255, 255, 0.08);
    color: var(--brand);
}

.pl-date {
    font-size: 10px;
    opacity: 0.8;
    margin-left: 4px;
}

.shops-section,
.trailer-section,
.reviews-section {
    margin-top: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
}

.video-container {
    background: var(--surface-2);
    border-radius: 16px;
    padding: 16px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.shop-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    background: var(--surface-2);
    transition: all 0.2s ease;
}

.shop-btn:hover {
    border-color: rgba(252, 189, 0, 0.5);
    transform: translateY(-2px);
}

.shop-icon-box {
    width: 22px;
    height: 22px;
}

.shop-label {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
}

.shop-arrow {
    color: var(--muted);
}

.reviews-section .section-title {
    margin-bottom: 20px;
}

.rating-summary-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
}

.rs-info {
    display: flex;
    flex-direction: column;
}

.rs-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
}

.rs-count {
    font-size: 14px;
    color: var(--text);
    margin-top: 4px;
}

.rating-circle {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}

.review-form {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 24px;
}

.rating-select,
.review-textarea {
    width: 100%;
    background: var(--bg-1);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
}

.btn-submit-review {
    margin-top: 12px;
    background: var(--brand);
    border: none;
    color: #111;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.reviews-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}


.review-item {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    display: block;
}

.review-user-link {
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
    display: inline-flex;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.review-item .user-avatar {
    width: 96px;
    height: 96px;
    min-width: 96px;
    min-height: 96px;
    max-width: 96px;
    max-height: 96px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.review-avatar-score {
    position: absolute;
    bottom: 6px;
    left: 6px;
    min-width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.review-author {
    font-weight: 700;
    color: var(--text);
}

.review-date {
    font-size: 11px;
    color: var(--muted);
}

.review-platform-chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 6px;
    padding: 6px 10px;
    border-radius: 8px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}

.review-top-block,
.review-ratings-block {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.review-top-block {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.review-author-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.review-left-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 96px;
    min-width: 96px;
}

.review-comment-under-avatar {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.35;
    width: 100%;
}

.review-comment-full {
    margin-top: 10px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    width: 100%;
}

.review-ratings-block {
    margin-top: 10px;
}

.review-rating-badge {
    background: var(--brand);
    color: #111;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
}

.rating-bad { background: #c0392b; color: #fff; }
.rating-mid { background: #7f8c8d; color: #fff; }
.rating-good { background: #2ed573; color: #fff; }

.review-text {
    color: var(--muted);
    font-size: 14px;
}

.review-media-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.review-aspects-row {
    display: grid;
    grid-template-columns: 120px;
    gap: 6px;
}

.review-aspect-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 44px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 12px;
    text-align: center;
    padding: 4px 6px;
}

.review-aspect-chip b {
    font-size: 14px;
}

.review-aspect-avg {
    border: 0;
    color: #101010;
}

.review-aspect-avg b {
    font-size: 22px;
    line-height: 1;
}

.review-media-thumb {
    display: block;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.03);
}

.review-media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-content {
    min-width: 0;
}

.delete-review-btn {
    background: transparent;
    border: 1px solid rgba(255, 71, 87, 0.5);
    color: #ff8f9b;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
}

.dlc-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0 6px;
    align-items: stretch;
    scrollbar-width: thin;
}

.dlc-grid::-webkit-scrollbar {
    height: 8px;
}
.dlc-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
}
.dlc-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}
.dlc-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(252, 189, 0, 0.5);
}

.dlc-card {
    display: block;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease;
    flex: 0 0 140px;
    aspect-ratio: 2 / 3;
}

.dlc-card:hover {
    transform: scale(1.03);
    border-color: rgba(252, 189, 0, 0.5);
}

.dlc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reviews-topbar {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.reviews-topbar .section-title {
    margin: 0;
}

.btn-review-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(252, 189, 0, 0.5);
    color: var(--text);
    background: rgba(252, 189, 0, 0.08);
    text-decoration: none;
    font-weight: 700;
    transition: background-color .2s ease, border-color .2s ease;
}

.btn-review-cta:hover {
    background: rgba(252, 189, 0, 0.18);
    border-color: rgba(252, 189, 0, 0.8);
}

.review-actions {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.reviews-view-all-wrap {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

.reviews-scroll-loader {
    margin-top: 12px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    padding: 8px 0;
}

.review-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #e6ebf5;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    text-decoration: none;
}

.review-details-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.edit-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #e6ebf5;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    text-decoration: none;
}

.edit-review-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.game-audit-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
}

.game-audit-meta-under {
    margin-top: 16px;
}

.audit-line {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    font-size: 12px;
    color: var(--muted);
}

.audit-author {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

.audit-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
}

.audit-link {
    color: var(--text);
    text-decoration: underline;
}

.game-actions {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.list-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 12, 16, 0.7);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.list-btn:hover {
    border-color: rgba(252, 189, 0, 0.6);
}

.list-btn.active {
    border-color: rgba(252, 189, 0, 0.6);
    background: rgba(252, 189, 0, 0.12);
}

.media-gallery-section {
    margin-top: 22px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--panel);
    position: relative;
}

.media-gallery-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 0;
    align-items: stretch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.media-gallery-grid::-webkit-scrollbar {
    display: none;
}

.media-thumb {
    flex: 0 0 clamp(140px, 18vw, 170px);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #0e131d;
    padding: 0;
    cursor: pointer;
    position: relative;
    aspect-ratio: 16 / 9;
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 12, 20, 0.75);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.media-nav-left { left: 8px; }
.media-nav-right { right: 8px; }

.media-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

@media (max-width: 700px) {
    .media-nav {
        width: 28px;
        height: 28px;
        font-size: 19px;
    }
}

.media-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
}

.media-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.86);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.media-modal.is-open {
    display: flex;
}

.media-modal-content {
    width: min(1200px, 95vw);
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
}

.media-modal-content iframe,
.media-modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.media-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(15, 20, 31, 0.85);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .game-hero {
        grid-template-columns: 1fr;
    }

    .company-links-grid {
        grid-template-columns: 1fr;
    }

    .reviews-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .page-game .container {
        padding: 14px 10px 40px;
    }

    .details-card,
    .shops-section,
    .media-gallery-section,
    .trailer-section,
    .reviews-section {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
        padding: 0;
    }

    .info-col {
        text-align: center;
        align-items: center;
    }

    .poster-wrapper {
        margin-top: 20px;
    }

    .video-container {
        background: transparent;
        border: 1px solid var(--border);
        padding: 10px;
    }

    .details-grid {
        gap: 20px;
        margin-top: 22px;
    }

    .section-title {
        margin-bottom: 8px;
    }

    .dlc-grid { gap: 10px; }
    .dlc-card { flex-basis: 120px; }
    .reviews-topbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .game-audit-meta,
    .audit-line {
        text-align: left;
        justify-content: flex-start;
    }

    .page-game .container > .game-hero,
    .page-game .container > .details-grid,
    .page-game .container > .details-card,
    .page-game .container > .shops-section,
    .page-game .container > .media-gallery-section,
    .page-game .container > .trailer-section,
    .page-game .container > .reviews-section {
        border-top: 1px solid var(--border);
        padding-top: 16px;
        margin-top: 16px;
    }

    .page-game .container > .game-hero {
        border-top: 0;
        padding-top: 0;
        margin-top: 0;
    }

    .back-nav {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    .back-nav .back-btn,
    .back-nav .share-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 14px;
        font-size: 13px;
    }
    .back-nav .share-btn .icon {
        font-size: 13px;
    }
    .admin-controls {
        flex-wrap: wrap;
        gap: 8px;
    }

    .btn-edit, .btn-share-gen, .btn-delete {
        flex: 1 1 48%;
        min-width: 0;
    }

    .review-user-link {
        flex-basis: 74px;
        width: 74px;
        height: 74px;
    }

    .review-item .user-avatar {
        width: 74px;
        height: 74px;
        min-width: 74px;
        min-height: 74px;
        max-width: 74px;
        max-height: 74px;
    }

    .review-avatar-score {
        min-width: 24px;
        height: 24px;
        font-size: 12px;
        border-radius: 8px;
    }

    .review-left-col {
        width: 74px;
        min-width: 74px;
        gap: 6px;
    }

    .review-comment-under-avatar {
        font-size: 12px;
    }

    .review-comment-full {
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.45;
    }

    .review-aspects-row { grid-template-columns: 110px; gap: 4px; }

    .review-aspect-chip {
        font-size: 10px;
        min-height: 40px;
        border-radius: 7px;
    }

    .review-aspect-chip b {
        font-size: 12px;
    }

    .review-aspect-avg b {
        font-size: 18px;
    }
}







