/* === Jurnal Adat Sidebar === */
.pkp_structure_sidebar {
    background: #fafafa !important;
    border-left: 1px solid #e5e5e5 !important;
    padding: 0 !important;
}

.pkp_structure_sidebar .pkp_block {
    padding: 18px 20px !important;
    border-bottom: 1px solid #e5e5e5 !important;
}

.pkp_structure_sidebar .pkp_block h2,
.pkp_structure_sidebar .pkp_block .sidebar-title {
    color: #333 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-bottom: 2px solid #8cc63f !important;
    padding-bottom: 8px !important;
    margin-bottom: 12px !important;
    font-family: 'Noto Serif', serif !important;
}

.pkp_structure_sidebar .pkp_block .content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.pkp_structure_sidebar .pkp_block .content ul li {
    padding: 4px 0 !important;
    border-bottom: 1px dotted #e5e5e5 !important;
}

.pkp_structure_sidebar .pkp_block .content ul li:last-child {
    border-bottom: none !important;
}

.pkp_structure_sidebar .pkp_block .content ul li a {
    color: #555 !important;
    font-size: 13px !important;
    text-decoration: none !important;
    display: block !important;
    padding: 4px 0 !important;
}

.pkp_structure_sidebar .pkp_block .content ul li a:hover {
    color: #8cc63f !important;
    padding-left: 5px !important;
}

.pkp_structure_sidebar .pkp_block .content img {
    max-width: 100% !important;
    height: auto !important;
    margin: 5px 0 !important;
}

.pkp_structure_sidebar .submit-btn {
    display: block !important;
    background: #8cc63f !important;
    color: #fff !important;
    text-align: center !important;
    padding: 12px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    margin-bottom: 15px !important;
    transition: background 0.2s !important;
}

.pkp_structure_sidebar .submit-btn:hover {
    background: #7ab32e !important;
    color: #fff !important;
    text-decoration: none !important;
    padding-left: 12px !important;
}

.pkp_structure_sidebar .sidebar-menu li.has-sub > a {
    font-weight: 700 !important;
    color: #333 !important;
}

.pkp_structure_sidebar .sidebar-menu .submenu {
    padding-left: 15px !important;
    display: block !important;
}

.pkp_structure_sidebar .sidebar-menu .submenu li a {
    font-size: 12px !important;
}

/* === Archive Page === */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.archive-year-group {
    margin-bottom: 30px;
}

.archive-year-heading {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    border-bottom: 3px solid #8cc63f;
    padding-bottom: 6px;
    margin-bottom: 15px;
    font-family: 'Noto Serif', serif;
}

.archive-year-issues {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.archive-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    transition: box-shadow 0.2s, transform 0.2s;
}

.archive-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    transform: translateY(-2px);
    text-decoration: none;
    color: #333;
}

.archive-cover-wrap {
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.archive-cover-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-cover-placeholder {
    font-size: 48px;
    color: #ccc;
    text-align: center;
}

.archive-info {
    padding: 15px;
    flex: 1;
}

.archive-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px;
    color: #333;
    font-family: 'Noto Serif', serif;
}

.archive-desc {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px;
}

.archive-count {
    font-size: 12px;
    color: #8cc63f;
    font-weight: 600;
}

.archive-loading {
    color: #888;
    font-style: italic;
    margin-top: 20px;
}

/* === About Page === */
.about-section {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #444;
}

.about-section h2 {
    font-size: 18px;
    color: #333;
    border-bottom: 2px solid #8cc63f;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

/* === Editorial Team === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.team-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
}

.team-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e8f5d6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 24px;
    color: #8cc63f;
}

.team-card h3 {
    font-size: 16px;
    margin: 0 0 5px;
    font-family: 'Noto Serif', serif;
    color: #333;
}

.team-affil {
    font-size: 13px;
    color: #666;
    margin: 0 0 3px;
}

.team-country {
    font-size: 12px;
    color: #999;
    margin: 0 0 5px;
}

.team-email a {
    font-size: 12px;
    color: #8cc63f;
    text-decoration: none;
}

.team-email a:hover {
    text-decoration: underline;
}

/* === Contact Page === */
.contact-info {
    margin-top: 20px;
}

.contact-section {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 15px;
}

.contact-section h2 {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    font-family: 'Noto Serif', serif;
}

.contact-section p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
    line-height: 1.6;
}

/* === Submissions === */
.submission-section {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 15px;
}

.submission-section h2 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Noto Serif', serif;
}

.submission-section p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 5px 0;
}

.submission-section ul {
    list-style: disc;
    padding-left: 20px;
}

.submission-section ul li {
    font-size: 14px;
    color: #555;
    padding: 3px 0;
}

.guidelines-content {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.guidelines-content p {
    margin: 8px 0;
}

/* === Author Browser === */
.author-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 15px 0 20px;
    padding: 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
}

.author-filters .alpha-link {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.15s;
}

.author-filters .alpha-link:hover {
    background: #e8f5d6;
    color: #8cc63f;
}

.author-filters .alpha-link.active {
    background: #8cc63f;
    color: #fff;
}

.author-entry {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 12px;
}

.author-header {
    margin-bottom: 8px;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 3px;
    font-family: 'Noto Serif', serif;
}

.author-name i {
    color: #8cc63f;
    margin-right: 6px;
}

.author-affil {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.author-count {
    font-size: 13px;
    color: #888;
    margin: 8px 0 4px;
    font-style: italic;
}

.author-articles ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.author-articles ul li {
    padding: 3px 0;
    font-size: 14px;
}

.author-articles ul li a {
    color: #2c6b9e;
    text-decoration: none;
}

.author-articles ul li a:hover {
    text-decoration: underline;
    color: #8cc63f;
}

.article-issue {
    font-size: 12px;
    color: #999;
}

/* === Masthead / Editorial Team === */
.masthead-section {
    margin-bottom: 24px;
}

.masthead-heading {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    border-bottom: 2px solid #8cc63f;
    padding-bottom: 6px;
    margin-bottom: 10px;
    font-family: 'Noto Serif', serif;
}

.masthead-members {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.masthead-member {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    padding: 2px 0;
}

.masthead-name {
    font-weight: 500;
}

.masthead-affil {
    color: #777;
}
