/**
 * @file maspram_toc_two_columns.css
 * 
 * Table of Contents - Two Column Layout
 * Compatible with OJS Default Theme 3.3
 * 
 * Styling untuk menampilkan table of contents dalam dua kolom
 * dengan desain yang sesuai dengan theme default OJS 3.3
 */

/* ====================================
   TABLE OF CONTENTS - TWO COLUMN LAYOUT
   ==================================== */

/* Container untuk issue TOC */
.obj_issue_toc {
    max-width: 100%;
}

/* Section styling */
.obj_issue_toc .section {
    margin-bottom: 3rem;
}

.obj_issue_toc .section > h2,
.obj_issue_toc .section > h3 {
    font-size: 1.143rem;
    font-weight: 400;
    color: rgba(0,0,0,0.54);
    margin-bottom: 1.43rem;
    padding-bottom: 0.714rem;
    border-bottom: 1px solid #ddd;
}

/* Articles list - Two Column Layout */
.obj_issue_toc .articles {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Tablet and above - Two columns */
@media (min-width: 768px) {
    .obj_issue_toc .articles {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 2.5rem;
    }
}

/* Desktop - maintain two columns with better spacing */
@media (min-width: 992px) {
    .obj_issue_toc .articles {
        gap: 2.5rem 3rem;
    }
}

/* Individual article item */
.obj_issue_toc .articles > li {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 0;
}

/* Article summary styling */
.obj_article_summary {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.43rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.obj_article_summary:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-color: #1E6292;
}

/* Article title */
.obj_article_summary > .title {
    font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.43rem;
    font-weight: 700;
    margin: 0 0 0.714rem 0;
    border-bottom: none;
}

.obj_article_summary > .title a {
    color: #006798;
    text-decoration: none;
    transition: color 0.2s ease;
}

.obj_article_summary > .title a:hover {
    color: #1E6292;
    text-decoration: underline;
}

/* Subtitle */
.obj_article_summary .subtitle {
    display: block;
    margin-top: 0.25em;
    margin-bottom: 0.714rem;
    font-weight: 400;
    font-size: 0.93rem;
    color: rgba(0,0,0,0.54);
}

/* Authors */
.obj_article_summary .meta {
    position: relative;
    padding-top: 0.357rem;
    font-size: 0.93rem;
    line-height: 1.43rem;
    margin-bottom: 0.714rem;
}

.obj_article_summary .authors {
    color: rgba(0,0,0,0.87);
    margin-bottom: 0.357rem;
}

/* Pages and published date */
.obj_article_summary .pages,
.obj_article_summary .published {
    color: rgba(0,0,0,0.54);
    font-size: 0.93