/* About the Journal Section */
section.homepage_about {
    font-family: 'Segoe UI', Poppins, Arial, sans-serif;
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px 45px;
    background: linear-gradient(135deg, #eef2f7, #ffffff);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(15, 60, 104, 0.15);
}

/* Section Title */
section.homepage_about h2 {
    text-align: center;
    color: #0f3c68;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 30px;
    position: relative;
}

/* Decorative underline */
section.homepage_about h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1f78c1, #3fa9f5);
    margin: 14px auto 0;
    border-radius: 3px;
}

/* Paragraph text */
section.homepage_about p {
    color: #333;
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
}

/* Subtle hover lift */
section.homepage_about:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

header.pkp_structure_head {
    background: linear-gradient(135deg, #0f3c68, #1f78c1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

/* Logo wrapper */
.pkp_site_name_wrapper {
    padding: 5px 0;
    text-align: center;
}

/* Logo image */
.pkp_site_name img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.pkp_site_name img:hover {
    transform: scale(1.03);
}

/* Primary navigation bar */
.pkp_navigation_primary_row {
    /* background: rgba(255, 255, 255, 0.08); */
    border-radius: 12px;
    margin: 10px auto;
    padding: 6px 14px;
}

/* Navigation links */
.pkp_navigation_primary a {
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

/* Hover effect */
.pkp_navigation_primary a:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.pkp_navigation_primary>li>a {
    border-bottom: 2px solid #1e71b7;
}

.pkp_navigation_primary>li>a:focus {
    background: #007ab396;
}

/* Dropdown menu */
.pkp_navigation_primary .dropdown-menu {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    border: none;
    padding: 10px 0;
}

/* Dropdown links */
.pkp_navigation_primary .dropdown-menu a {
    color: #0f3c68 !important;
    padding: 10px 18px;
    font-weight: 500;
}

.pkp_navigation_primary .dropdown-menu a:hover {
    background: #eef2f7;
    color: #1f78c1;
}

/* Search button */
.pkp_search_desktop {
    background: #ffffff;
    color: #0f3c68 !important;
    border-radius: 25px;
    padding: 6px 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pkp_site_nav_menu {
    border-radius: 12px;
    background: #00284f70;
}

.pkp_search_desktop:hover {
    background: #eef2f7;
    transform: translateY(-1px);
}

/* User navigation */
.pkp_navigation_user a {
    color: #ffffff !important;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.25s ease;
}

.pkp_navigation_user a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile menu toggle */
.pkp_site_nav_toggle {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
}

.pkp_site_nav_toggle:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Logged-in user button */
#navigationUserWrapper .pkp_navigation_user > li > a {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 22px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Hover state */
#navigationUserWrapper .pkp_navigation_user > li > a:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Task count bubble */
#navigationUserWrapper .task_count {
    background: #ff6b6b;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 12px;
    margin-left: 6px;
}

/* User dropdown menu */
#navigationUserWrapper .dropdown-menu {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
    border: none;
    padding: 10px 0;
    min-width: 220px;
}

/* Dropdown links */
#navigationUserWrapper .dropdown-menu a {
    color: #0f3c68 !important;
    font-weight: 600;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

/* Hover state */
#navigationUserWrapper .dropdown-menu a:hover {
    background: #eef2f7;
    color: #1f78c1;
}

/* Logout link emphasis */
#navigationUserWrapper .dropdown-menu a[href*="signOut"] {
    color: #c0392b !important;
}

#navigationUserWrapper .dropdown-menu a[href*="signOut"]:hover {
    background: #fdecea;
}

/* Align user menu vertically */
#navigationUserWrapper {
    display: flex;
    align-items: center;
}










/* Turn footer into flex container */
.pkp_structure_footer {
    background: linear-gradient(135deg, #0f3c68, #1f78c1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Merge footer blocks */
.pkp_footer_content,
.pkp_brand_footer {
    width: 100%;
    text-align: center;
}

/* Inline layout on large screens */
@media (min-width: 900px) {
    .pkp_structure_footer {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        padding: 28px 20px;
    }

    .pkp_footer_content footer {
        padding: 0;
    }

    .pkp_brand_footer {
        padding: 0;
    }
}








/* Main content background */
.pkp_structure_main {
    background: #f6f8fb;
    padding-bottom: 10px;
}

/* Homepage container */
.page_index_journal {
    max-width: 1200px;
    margin: 20px auto;
    padding: 40px 20px 0;
}

/* Homepage hero image */
.homepage_image {
    margin-bottom: 50px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.homepage_image img {
    width: 100%;
    height: auto;
    display: block;
}

/* About section spacing */
.homepage_about {
    margin-bottom: 60px;
}

/* Additional content block */
.additional_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(15, 60, 104, 0.15);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.additional_content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f3c68;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.additional_content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #3fa9f5;
    margin: 8px auto 0;
    border-radius: 3px;
}

/* Title */
.additional_content div:first-child {
    color: #0f3c68;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

/* Institution lines */
.additional_content div:nth-child(2),
.additional_content div:nth-child(3) {
    color: #333;
    font-size: 14px;
}

/* Location line */
.additional_content div:last-child {
    margin-top: 8px;
    font-size: 12px;
    color: #777;
}

@media (max-width: 768px) {
    .homepage_image {
        border-radius: 12px;
    }

    .page_index_journal {
        padding-top: 25px;
    }

    .additional_content {
        padding: 22px 20px;
    }
}










/* Sidebar wrapper */
.pkp_structure_sidebar.left {
    width: 280px;
    padding: 0 15px 40px 0;
    font-family: 'Segoe UI', Poppins, Arial, sans-serif;
}

/* Make a Submission block */
.block_make_submission {
    background: linear-gradient(135deg, #1f78c1, #3fa9f5);
    border-radius: 14px;
    padding: 20px 15px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(15, 60, 104, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.block_make_submission:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 60, 104, 0.2);
}

/* Link inside the block */
.block_make_submission_link {
    display: inline-block;
    padding: 12px 22px;
    background: #ffffff;
    color: #0f3c68;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.block_make_submission_link:hover {
    background: #eef2f7;
    color: #1f78c1;
}

.block_make_submission a {
    display: inline-block;
    padding: 12px 28px;                     /* roomy, touch-friendly */
    background: linear-gradient(135deg, #1f78c1, #3fa9f5); /* modern academic gradient */
    color: #ffffff;                          /* white text for contrast */
    font-size: 1rem;                         /* easy to read */
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    border-radius: 25px;                      /* pill-shaped */
    box-shadow: 0 6px 15px rgba(15, 60, 104, 0.2); /* soft floating effect */
    transition: all 0.25s ease;              /* smooth hover transition */
    text-align: center;
}

/* Hover state: subtle movement and gradient shift */
.block_make_submission a:hover {
    transform: translateY(-2px);           /* slight lift */
    box-shadow: 0 10px 20px rgba(15, 60, 104, 0.3);
}

/* Active / click state */
.block_make_submission a:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(15, 60, 104, 0.25);
}

/* Focus state for accessibility (keyboard users) */
.block_make_submission a:focus {
    outline: 3px solid #3fa9f5;
    outline-offset: 4px;
}


/* Information block container */
.block_information {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 16px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(15, 60, 104, 0.12);
}

/* Title */
.block_information .title {
    font-size: 16px;
    font-weight: 700;
    color: #1f78c1;
    margin-bottom: 12px;
}

/* Links list */
.block_information ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block_information li {
    margin-bottom: 10px;
}

.block_information a {
    color: #0f3c68;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

.block_information a:hover {
    color: #3fa9f5;
}

/* Generic card for logos */
.pkp_block.block_custom {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 18px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(15, 60, 104, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Lift on hover */
.pkp_block.block_custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 60, 104, 0.18);
}

/* Logo images */
.pkp_block.block_custom img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    margin: 0 auto;
    transition: transform 0.25s ease;
}

.pkp_block.block_custom img:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .pkp_structure_sidebar.left {
        width: 100%;
        padding: 0 0 30px 0;
    }

    .block_make_submission,
    .block_information,
    .pkp_block.block_custom {
        margin-bottom: 20px;
    }
}












/* General page container */
.page_submissions {
    font-family: 'Segoe UI', Poppins, Arial, sans-serif;
    line-height: 1.65;
    color: #1f2937;
}

/* Breadcrumbs */
.page_submissions .cmp_breadcrumbs {
    font-size: 0.9rem;
    margin-bottom: 25px;
    color: #6b7280;
}
.page_submissions .cmp_breadcrumbs a {
    color: #1f78c1;
    text-decoration: none;
}
.page_submissions .cmp_breadcrumbs .separator {
    margin: 0 5px;
}

/* Main headings */
.page_submissions h1,
.page_submissions h2 {
    font-weight: 700;
    color: #0f3c68;
    margin-bottom: 18px;
}
.page_submissions h1 {
    font-size: 2rem;
}
.page_submissions h2 {
    font-size: 1.4rem;
    border-bottom: 3px solid #3fa9f5;
    padding-bottom: 6px;
    margin-top: 40px;
}

/* Notification / CTA links */
.page_submissions .cmp_notification {
    background: #eef2f7;
    border-left: 6px solid #1f78c1;
    padding: 18px 22px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
}
.page_submissions .cmp_notification a {
    color: #1f78c1;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease;
}
.page_submissions .cmp_notification a:hover {
    color: #3fa9f5;
}

/* Cards for major sections */
.submission_checklist,
.author_guidelines,
.privacy_statement,
.section_policy,
.copyright_notice {
    background: linear-gradient(135deg,#f8fafc,#eef2f7);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 35px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Checklist list items */
.submission_checklist ul li {
    list-style: none;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
    color: #374151;
}
.submission_checklist ul li .fa-check {
    position: absolute;
    left: 0;
    top: 0;
    color: #1f78c1;
    font-size: 1rem;
}

/* Ordered list in Author Guidelines and Copyright */
.author_guidelines ol,
.copyright_notice ol {
    padding-left: 25px;
}
.author_guidelines ol li,
.copyright_notice ol li {
    margin-bottom: 18px;
}

/* Horizontal rules */
.page_submissions hr {
    border: 0;
    height: 2px;
    background: linear-gradient(90deg, #1f78c1, #3fa9f5);
    margin: 30px 0;
    border-radius: 1px;
}

/* Tables / figures sections */
.author_guidelines p strong {
    color: #0f3c68;
}

/* Make New Submission Button */
.page_submissions .cmp_notification a:first-child {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #1f78c1, #3fa9f5);
    color: #ffffff;
    font-weight: 700;
    border-radius: 25px;
    box-shadow: 0 6px 15px rgba(15,60,104,0.2);
    transition: all 0.25s ease;
    margin-right: 12px;
}
.page_submissions .cmp_notification a:first-child:hover {
    background: linear-gradient(135deg, #3fa9f5, #1f78c1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15,60,104,0.3);
}

/* Links inside guidelines / policy */
.page_submissions a {
    color: #1f78c1;
    font-weight: 500;
    text-decoration: none;
}
.page_submissions a:hover {
    color: #3fa9f5;
    text-decoration: underline;
}














/* Page font and spacing */
.page_issue_archive {
    font-family: 'Segoe UI', Poppins, Arial, sans-serif;
    color: #1f2937;
    line-height: 1.6;
    padding-bottom: 50px;
}

/* Breadcrumbs */
.page_issue_archive .cmp_breadcrumbs {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #6b7280;
}
.page_issue_archive .cmp_breadcrumbs a {
    color: #1f78c1;
    text-decoration: none;
}
.page_issue_archive .cmp_breadcrumbs .separator {
    margin: 0 5px;
}

/* Main heading */
.page_issue_archive h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f3c68;
    margin-bottom: 30px;
    border-bottom: 3px solid #3fa9f5;
    padding-bottom: 6px;
}

/* Issue list: grid layout */
.issues_archive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0;
    list-style: none;
}

/* Each issue card */
.obj_issue_summary {
    background: linear-gradient(135deg, #eef2f7, #ffffff);
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 8px 20px rgba(15, 60, 104, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover effect */
.obj_issue_summary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(15, 60, 104, 0.18);
}

/* Issue title link */
.obj_issue_summary h2 a.title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f78c1;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.25s ease;
}
.obj_issue_summary h2 a.title:hover {
    color: #3fa9f5;
}

/* Issue description */
.obj_issue_summary .description {
    font-size: 0.93rem;
    color: #374151;
    line-height: 1.5;
}












/* Issue page general styling */
.page_issue {
    font-family: 'Segoe UI', Poppins, Arial, sans-serif;
    color: #1f2937;
    line-height: 1.65;
    padding-bottom: 50px;
}

/* Breadcrumbs */
.page_issue .cmp_breadcrumbs {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #6b7280;
}
.page_issue .cmp_breadcrumbs a {
    color: #1f78c1;
    text-decoration: none;
}
.page_issue .cmp_breadcrumbs .separator {
    margin: 0 5px;
}

/* Main heading */
.page_issue h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f3c68;
    margin-bottom: 30px;
    border-bottom: 3px solid #3fa9f5;
    padding-bottom: 6px;
}

/* Published date */
.obj_issue_toc .published {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: #374151;
}
.obj_issue_toc .published .label {
    font-weight: 600;
    color: #1f78c1;
}

/* Sections */
.obj_issue_toc .section h2 {
    font-size: 1.4rem;
    color: #0f3c68;
    border-bottom: 2px solid #3fa9f5;
    padding-bottom: 4px;
    margin-bottom: 18px;
}

/* Article cards */
.obj_article_summary {
    background: linear-gradient(135deg, #eef2f7, #ffffff);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(15, 60, 104, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover effect */
.obj_article_summary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 60, 104, 0.18);
}

/* Article title */
.obj_article_summary h3.title a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f78c1;
    text-decoration: none;
    transition: color 0.25s ease;
}
.obj_article_summary h3.title a:hover {
    color: #3fa9f5;
    text-decoration: underline;
}

/* Author meta */
.obj_article_summary .meta .authors {
    font-size: 0.95rem;
    color: #374151;
    margin-top: 6px;
}

/* Galley links (PDF, HTML, etc.) */
.galleys_links {
    margin-top: 10px;
}
.galleys_links a {
    display: inline-block;
    padding: 6px 14px;
    background: #1f78c1;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 18px;
    text-decoration: none;
    margin-right: 8px;
    transition: background 0.25s ease;
}
.galleys_links a:hover {
    background: #3fa9f5;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .obj_article_summary {
        padding: 15px 18px;
    }
    .galleys_links a {
        margin-bottom: 6px;
    }
}














/* General page style */
.page_article {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    color: #1f2937;
    line-height: 1.65;
    padding-bottom: 60px;
}

/* Breadcrumbs */
.page_article .cmp_breadcrumbs {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 18px;
}
.page_article .cmp_breadcrumbs a {
    color: #1f78c1;
    text-decoration: none;
}
.page_article .cmp_breadcrumbs .separator {
    margin: 0 5px;
}

/* Article title */
.page_article .page_title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f3c68;
    margin-bottom: 20px;
    border-bottom: 3px solid #3fa9f5;
    padding-bottom: 6px;
}

/* Authors as badges */
.item.authors ul.authors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 20px 0;
}
.item.authors ul.authors li span.name {
    background: #e0f0ff;
    color: #1f78c1;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.95rem;
}

/* Keywords as tags */
.item.keywords .value {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}
.item.keywords .value span.tag {
    background: #f3f4f6;
    color: #374151;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Abstract box */
.item.abstract {
    background: linear-gradient(135deg,#f8fafc,#eef2f7);
    padding: 22px 28px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}
.item.abstract h2.label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f3c68;
    margin-bottom: 12px;
}

/* Citation and issue details */
.entry_details {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 20px 24px;
    margin-top: 20px;
}
.entry_details h2.label {
    font-weight: 600;
    font-size: 1rem;
    color: #0f3c68;
    margin-bottom: 6px;
}
.entry_details .value {
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 12px;
}
.entry_details .citation_formats a {
    display: inline-block;
    margin: 6px 8px 6px 0;
    padding: 6px 12px;
    background: #1f78c1;
    color: #fff;
    border-radius: 18px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease;
}
.entry_details .citation_formats a:hover {
    background: #3fa9f5;
}

/* License & CC icon */
.item.copyright {
    margin-top: 18px;
    font-size: 0.95rem;
    color: #374151;
}
.item.copyright img {
    vertical-align: middle;
    margin-right: 6px;
}

/* Responsive layout */
@media screen and (min-width: 1024px) {
    .row {
        display: flex;
        gap: 30px;
    }
    .main_entry {
        flex: 2;
    }
    .entry_details {
        flex: 1;
    }
}














/* === Current Issue Section Styling === */
.current_issue {
    margin: 60px 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: #1f2937;
}

/* Section Heading */
.current_issue h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f3c68;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.current_issue h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #3fa9f5;
    margin: 8px auto 0;
    border-radius: 3px;
}

/* Card effect for the issue block */
.current_issue .obj_issue_toc {
    background: #f8fafc;
    padding: 28px 24px;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

/* Header with Issue title and date */
.current_issue .current_issue_title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f3c68;
    margin-bottom: 6px;
}
.current_issue .published {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

/* Section title (Articles) */
.current_issue .sections .section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f3c68;
    margin-bottom: 12px;
    border-bottom: 2px solid #3fa9f5;
    display: inline-block;
    padding-bottom: 2px;
}

/* Article list */
.current_issue .cmp_article_list li {
    margin-bottom: 14px;
}
.current_issue .obj_article_summary h4.title a {
    color: #1f3c68;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.25s ease;
}
.current_issue .obj_article_summary h4.title a:hover {
    color: #3fa9f5;
}
.current_issue .obj_article_summary .authors {
    font-size: 0.88rem;
    color: #555;
    margin-top: 2px;
}

.current_issue .read_more {
    position: relative !important;      /* make ::after absolute relative to this */
    display: inline-block !important;
    font-weight: 600 !important;
    color: #006798 !important;
    text-decoration: none !important;
    padding: 0.5em 1.5em 0.5em 1em !important; /* extra space for arrow */
    margin-top: 10px !important;
    border: 1px solid #006798 !important;
    border-radius: 20px !important;
    transition: background 0.3s, color 0.3s !important;
    text-align: center !important;
}

.current_issue .read_more::after {
    content: '>' !important;           /* the arrow */
    position: absolute !important;      /* position it absolutely */
    right: 1em !important;              /* distance from right edge */
    width: 0.1rem !important;              /* distance from right edge */
    top: 50% !important;                /* vertical middle */
    margin-left: 8px !important;
    transform: translateY(-50%) !important; /* perfect centering */
    font-weight: bold !important;
    transition: transform 0.3s ease !important;
}

/* optional hover effect */
.current_issue .read_more:hover {
    background: #006798 !important;
    color: #fff !important;
}

.current_issue .read_more:hover::after {
    transform: translateY(-50%) translateX(4px) !important; /* subtle slide */
}

a.read_more {
    display: flex;
    justify-content: center;
}

