/* Journal page specific styles */
.journal-nav-active {
    background: rgba(13, 110, 253, 0.10) !important;
    color: var(--landing-primary) !important;
}

.journal-page-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 1.25rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid rgba(13, 110, 253, 0.18);
}

/* Section card */
.journal-section-card {
    border: 1px solid #e7edf5;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
    padding: 1.25rem;
}

.journal-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: .85rem;
}

/* Issue meta */
.journal-issue-meta {
    display: inline-block;
    font-size: .82rem;
    font-weight: 700;
    color: var(--landing-primary);
    background: rgba(13, 110, 253, 0.08);
    border-radius: 999px;
    padding: .2rem .75rem;
    margin-bottom: .85rem;
}

/* Issue block */
.journal-issue-block {
    padding-top: .25rem;
}

/* Article list */
.journal-article-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.journal-article-list li {
    padding: .55rem 0;
    border-bottom: 1px dashed #e2e8f0;
}

.journal-article-list li:last-child {
    border-bottom: 0;
}

.journal-article-link {
    display: block;
    color: #1d4ed8;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    margin-bottom: .15rem;
}

.journal-article-link:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

.journal-article-author {
    display: block;
    font-size: .82rem;
    color: #64748b;
}

/* Article item (Current issue page) */
.journal-article-item {
    padding: .9rem 0;
    border-bottom: 1px dashed #e2e8f0;
}

.journal-article-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.journal-article-title {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.journal-article-pages {
    color: #64748b;
    margin-bottom: .4rem;
}

.journal-article-actions {
    margin-top: .35rem;
}

/* Sidebar */
.journal-sidebar-card {
    border: 1px solid #e7edf5;
    border-radius: 14px;
    background: #f8fafc;
    padding: 1rem;
}

.journal-sidebar-title {
    font-size: .88rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: .65rem;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.journal-sidebar-text {
    font-size: .86rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.journal-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: .86rem;
    color: #475569;
}

.journal-info-list li {
    padding: .3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    line-height: 1.5;
}

.journal-info-list li:last-child {
    border-bottom: 0;
}

/* Archives */
.journal-archive-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.journal-archive-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1rem;
    background: #eff6ff;
    cursor: pointer;
    user-select: none;
    font-weight: 700;
    color: #1d4ed8;
    font-size: .92rem;
}

.journal-archive-header:hover {
    background: #dbeafe;
}

.journal-archive-label {
    flex: 1;
}

.journal-archive-icon {
    font-size: .8rem;
    transition: transform .25s ease;
}

.journal-archive-header[aria-expanded="false"] .journal-archive-icon {
    transform: rotate(-90deg);
}

.journal-archive-body {
    padding: .5rem 1rem .75rem;
    background: #fff;
}

/* Announcements */
.journal-announce-date {
    font-size: .8rem;
    color: #64748b;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 767.98px) {
    .journal-page-title {
        font-size: 1.2rem;
    }
}
