.justice-wrapper {
    padding: 60px 10% 120px;
}

.justice-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.justice-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-box {
    padding: 30px;
}

.sidebar-box h3 {
    font-size: 0.9rem;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 800;
}

.sidebar-box ul { list-style: none; }
.sidebar-box ul li { margin-bottom: 15px; }

.sidebar-box ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.sidebar-box ul li a:hover { color: white; transform: translateX(5px); }
.sidebar-box ul li a i { color: var(--red-base); font-size: 1rem; }

/* Article Content */
.justice-content-section { margin-bottom: 100px; }
.section-title { margin-bottom: 40px; }
.section-title h2 { font-size: 2.5rem; text-align: left; }
.title-line { width: 60px; height: 4px; background: var(--gradient-primary); border-radius: 10px; }

.article-list { display: flex; flex-direction: column; gap: 25px; }

.article-card {
    padding: 35px;
    border-left: 4px solid var(--red-light);
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.article-card::after {
    content: ''; position: absolute; top: 0; right: 0; width: 30%; height: 1px;
    background: linear-gradient(to left, var(--red-base), transparent);
}

.article-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.article-tag {
    font-size: 0.7rem; font-weight: 800; color: var(--red-light);
    background: rgba(230, 57, 70, 0.1); padding: 4px 12px; border-radius: 4px;
}
.article-header h3 { font-size: 1.4rem; }
.article-body p { color: var(--text-muted); line-height: 1.8; }

/* Rules Accordion */
.rules-accordion { display: flex; flex-direction: column; gap: 15px; }
.rule-item { cursor: pointer; border-left: 4px solid transparent; transition: 0.3s; }
.rule-item.active { border-left-color: var(--red-base); }
.rule-header { padding: 25px 35px; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.rule-header span { font-weight: 600; font-size: 1.1rem; }
.rule-header i { transition: 0.4s; color: var(--red-light); }

.rule-content {
    max-height: 0; padding: 0 35px; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; overflow: hidden;
}

.rule-item.active .rule-header { background: rgba(255, 255, 255, 0.03); }
.rule-item.active .rule-header i { transform: rotate(180deg); }
.rule-item.active .rule-content { max-height: 1000px; padding: 10px 35px 30px; opacity: 1; }

@media (max-width: 992px) {
    .justice-container { grid-template-columns: 1fr; }
    .justice-sidebar { position: relative; top: 0; margin-bottom: 40px; }
}
