/* Publikasi — halaman single & list */

/* ── List ── */
.pub-list {
    max-width: 1240px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}
.pub-list-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}
.pub-list-sub {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0 0 1.75rem;
}

/* ── Single ── */
.pub-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
    position: relative;
}

/* Watermark untuk publikasi dummy — menempel di layar, mengikuti scroll */
.pub-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 140px;
    font-weight: 900;
    letter-spacing: 24px;
    text-transform: uppercase;
    color: rgba(180, 83, 9, 0.07);
    white-space: nowrap;
    pointer-events: none;
    z-index: 5;
    user-select: none;
}
.pub-cover {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 14px;
    margin: 0 0 1.5rem;
    display: block;
    background: #0a1628;
}
.pub-header { margin-bottom: 1.5rem; }
.pub-title {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.9rem;
}
.pub-authors { font-size: 1rem; font-weight: 600; color: #1a3a6b; margin: 0 0 0.25rem; }
.pub-editor { font-size: 0.9rem; color: #4b5563; margin: 0 0 0.5rem; }
.pub-meta { font-size: 0.85rem; color: #9ca3af; margin: 0 0 0.75rem; }
.pub-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pub-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: #1a3a6b;
    background: #e8ecf0;
    padding: 3px 10px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.15s;
}
.pub-tag:hover { background: #dbe4ef; }
.pub-abstract {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    background: #f8fafc;
    border-left: 4px solid #1a3a6b;
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.25rem;
    margin: 0 0 2rem;
}

/* ── Konten ── */
.article-content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #1f2937;
}
.article-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #e5e7eb;
}
.article-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.6rem;
}
.article-content p { margin: 0 0 1.1rem; }
.article-content ul, .article-content ol { margin: 0 0 1.1rem 1.5rem; }
.article-content li { margin-bottom: 0.35rem; }
.article-content blockquote {
    border-left: 4px solid #1a3a6b;
    background: #f8fafc;
    margin: 0 0 1.1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0 12px 12px 0;
    color: #374151;
}
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 1.1rem;
    font-size: 0.95rem;
}
.article-content th {
    text-align: left;
    background: #f1f5f9;
    font-weight: 700;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
}
.article-content td { padding: 8px 12px; border: 1px solid #e5e7eb; }
.article-content code {
    background: #f1f5f9;
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
    font-size: 0.9em;
}
.article-content pre {
    background: #0a1628;
    color: #e2e8f0;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 0 0 1.1rem;
}
.article-content pre code { background: transparent; padding: 0; color: inherit; }
.article-content img { max-width: 100%; border-radius: 12px; margin: 0.5rem 0 1.1rem; }
.article-content a { color: #1a3a6b; }
.article-content hr { border: none; border-top: 1px solid #e5e7eb; margin: 2rem 0; }

/* ── Referensi & Footnote ── */
.article-content .references {
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 2px solid #0a1628;
}
.article-content .references h2 {
    border-bottom: none;
    margin-top: 0;
}
.article-content .references ol { margin-left: 1.25rem; }
.article-content .references li { font-size: 0.92rem; margin-bottom: 0.5rem; }
.article-content .footnotes {
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.85rem;
    color: #4b5563;
}
.article-content .footnotes hr { display: none; }
.article-content .footnotes ol { margin-left: 1.25rem; }
.article-content .footnotes li { margin-bottom: 0.4rem; }
.article-content sup a { text-decoration: none; }
.article-content sup a:hover { text-decoration: underline; }
.article-content a.footnote-ref, .article-content a.footnote-backref { color: #1a3a6b; }
