        .article-detail-wrap {
            background: #FFF;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        .article-header {
            margin-bottom: 24px;
        }
        .article-meta-top {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }
        .article-category {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 4px 10px;
            border-radius: 6px;
        }
        .article-title {
            font-size: 28px;
            font-weight: 700;
            color: #1e293b;
            line-height: 1.3;
            margin-bottom: 16px;
        }
        .article-meta-info {
            display: flex;
            align-items: center;
            gap: 16px;
            color: #64748b;
            font-size: 13.5px;
            border-bottom: 1px solid #f1f5f9;
            padding-bottom: 16px;
        }
        .article-meta-info span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .article-cover {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 24px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .article-body {
            font-size: 15.5px;
            color: #334155;
            line-height: 1.8;
        }
        .article-body p {
            margin-bottom: 16px;
        }
        .btn-back-news {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f1f5f9;
            color: #475569;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 13.5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            margin-bottom: 20px;
        }
        .btn-back-news:hover {
            background: #e2e8f0;
            color: #1e293b;
        }

        @media (max-width: 768px) {
            .article-detail-wrap {
                padding: 20px !important;
                border-radius: 14px !important;
                margin-bottom: 24px !important;
                box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
            }
            .article-title {
                font-size: 22px !important;
                line-height: 1.35 !important;
                margin-bottom: 12px !important;
            }
            .article-meta-info {
                gap: 12px !important;
                padding-bottom: 12px !important;
                margin-bottom: 20px !important;
                font-size: 12.5px !important;
                flex-wrap: wrap !important;
            }
            .article-cover {
                aspect-ratio: 16/9 !important;
                height: auto !important;
                max-height: none !important;
                margin-bottom: 18px !important;
                border-radius: 10px !important;
            }
            .article-body {
                font-size: 14.5px !important;
                line-height: 1.75 !important;
                color: #334155 !important;
            }
            .btn-back-news {
                font-size: 12.5px !important;
                padding: 6px 14px !important;
                margin-bottom: 16px !important;
                border-radius: 6px !important;
            }
        }

        @media (max-width: 480px) {
            .article-detail-wrap {
                padding: 16px !important;
                border-radius: 12px !important;
            }
            .article-title {
                font-size: 19px !important;
            }
            .article-body {
                font-size: 14px !important;
                line-height: 1.7 !important;
            }
        }

        /* ── COMMENTS / REVIEWS STYLING ── */
        .review-list-item {
            border-bottom: 1px solid #ECEFF1;
            padding: 16px 0;
            display: flex;
            gap: 16px;
        }
        .review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
        .review-bubble { flex: 1; min-width: 0; }
        .review-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 6px;
        }
        .review-user-name { font-weight: 600; font-size: 14.5px; color: #1e293b; }
        .review-date { font-size: 12px; color: #78909C; }
        .review-body { font-size: 14px; color: #455A64; line-height: 1.6; margin: 0; }
        .login-notice {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
        }
        .login-notice-text {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #64748b;
            font-size: 14px;
            margin-bottom: 14px;
        }

        /* ── RATING STYLES ── */
        .rating-summary-box {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            padding: 20px 24px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 28px;
        }
        .rating-big-score {
            text-align: center;
            min-width: 80px;
        }
        .rating-big-num {
            font-size: 48px;
            font-weight: 800;
            color: #1e293b;
            line-height: 1;
        }
        .rating-big-stars {
            display: flex;
            justify-content: center;
            gap: 2px;
            margin: 6px 0 4px;
        }
        .rating-big-stars i { font-size: 14px; color: #f59e0b; }
        .rating-big-stars i.empty { color: #e2e8f0; }
        .rating-count-label {
            font-size: 11.5px;
            color: #94a3b8;
        }
        .rating-bars {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .rating-bar-row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12.5px;
            color: #64748b;
        }
        .rating-bar-label { min-width: 24px; text-align: right; font-weight: 600; }
        .rating-bar-track {
            flex: 1;
            background: #e2e8f0;
            border-radius: 99px;
            height: 8px;
            overflow: hidden;
        }
        .rating-bar-fill {
            background: linear-gradient(90deg, #f59e0b, #fbbf24);
            height: 100%;
            border-radius: 99px;
            transition: width 0.6s ease;
        }
        .rating-bar-count { min-width: 24px; color: #94a3b8; font-size: 11.5px; }

        /* ── STAR PICKER ── */
        .star-picker {
            display: flex;
            gap: 6px;
            margin-bottom: 14px;
            align-items: center;
        }
        .star-picker-label {
            font-size: 13.5px;
            font-weight: 600;
            color: #475569;
            margin-right: 4px;
        }
        .star-picker .sp-star {
            font-size: 26px;
            color: #e2e8f0;
            cursor: pointer;
            transition: color 0.15s, transform 0.15s;
            line-height: 1;
        }
        .star-picker .sp-star.active,
        .star-picker .sp-star.hovered {
            color: #f59e0b;
            transform: scale(1.15);
        }
        .star-picker-value {
            font-size: 13px;
            color: #94a3b8;
            margin-left: 8px;
        }
        .review-star-badge {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            background: #fef3c7;
            color: #92400e;
            border-radius: 6px;
            padding: 2px 8px;
            font-size: 12px;
            font-weight: 700;
            margin-left: 6px;
        }
