/**
 * @file plugins/themes/atlas/styles/atlas.css
 *
 * Copyright (c) 2014-2026 Simon Fraser University
 * Copyright (c) 2003-2026 John Willinsky
 * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
 *
 * @brief Atlas theme main stylesheet (Design Tokens, Typography, Layout, Components)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ==========================================
   1. CSS VARIABLES & DESIGN TOKENS
   ========================================== */
.atlas-theme {
    --atlas-font-heading: 'Playfair Display', Georgia, serif;
    --atlas-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --atlas-bg: #ffffff;
    --atlas-bg-secondary: #f8fafc;
    --atlas-text-main: #0f172a;
    --atlas-text-muted: #64748b;
    --atlas-border: #e2e8f0;
    
    --atlas-accent: #0f766e;
    --atlas-accent-hover: #115e59;
    --atlas-accent-light: #f0fdf4;
    --atlas-accent-border: #99f6e4;
    
    --atlas-hero-bg: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 50%, #fef3c7 100%);
    --atlas-card-bg: #ffffff;
    --atlas-author-card-bg: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
    --atlas-author-card-border: #fde68a;
    
    --atlas-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --atlas-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --atlas-shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    
    --atlas-radius-sm: 4px;
    --atlas-radius-md: 8px;
    --atlas-radius-lg: 12px;
    --atlas-radius-full: 9999px;
    
    --atlas-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    
    font-family: var(--atlas-font-body);
    background-color: var(--atlas-bg);
    color: var(--atlas-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}


/* Base resets inside scope */
.atlas-theme *, .atlas-theme *::before, .atlas-theme *::after {
    box-sizing: border-box;
}

.atlas-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================
   2. TOP ANNOUNCEMENT BAR
   ========================================== */
.atlas-top-announcement {
    background-color: var(--atlas-accent-light);
    border-bottom: 1px solid var(--atlas-accent-border);
    padding: 0.4rem 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.atlas-announcement-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.atlas-announcement-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--atlas-text-main);
}

.atlas-status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    animation: atlasPulse 2s infinite;
}

@keyframes atlasPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================
   3. TOP UTILITY BAR & HEADER NAVIGATION
   ========================================== */
.atlas-top-utility {
    background-color: var(--atlas-bg);
    border-bottom: 1px solid var(--atlas-border);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.atlas-utility-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.25rem;
}

.atlas-utility-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.atlas-utility-links a {
    color: var(--atlas-text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--atlas-transition);
}

.atlas-utility-links a:hover {
    color: var(--atlas-accent);
}

.atlas-btn-submit-top {
    background-color: var(--atlas-accent);
    color: #ffffff !important;
    padding: 0.3rem 0.85rem;
    border-radius: var(--atlas-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.atlas-btn-submit-top:hover {
    background-color: var(--atlas-accent-hover);
    transform: translateY(-1px);
}

.atlas-header {
    background-color: var(--atlas-bg);
    border-bottom: 1px solid var(--atlas-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--atlas-transition);
}

.atlas-header-scrolled {
    box-shadow: var(--atlas-shadow-md);
}

.atlas-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
}

.atlas-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--atlas-text-main);
}

.atlas-brand-title {
    font-family: var(--atlas-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.2;
}

.atlas-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.atlas-nav-list,
.atlas-home-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.atlas-nav-list li,
.atlas-home-nav li {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.atlas-nav-list a,
.atlas-home-nav a {
    color: var(--atlas-text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--atlas-transition);
    display: inline-flex;
    align-items: center;
}

.atlas-nav-list a:hover,
.atlas-home-nav a:hover {
    color: var(--atlas-accent);
    border-bottom-color: var(--atlas-accent);
}

/* Search Box */
.atlas-search-form {
    display: flex;
    align-items: center;
    position: relative;
}

.atlas-search-input {
    background-color: var(--atlas-bg-secondary);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-full);
    padding: 0.4rem 2.2rem 0.4rem 0.9rem;
    font-size: 0.875rem;
    color: var(--atlas-text-main);
    width: 180px;
    transition: var(--atlas-transition);
}

.atlas-search-input:focus {
    outline: none;
    border-color: var(--atlas-accent);
    width: 240px;
    background-color: var(--atlas-bg);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

.atlas-search-btn {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--atlas-text-muted);
    cursor: pointer;
    padding: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.atlas-dark-toggle {
    background: none;
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-full);
    padding: 0.4rem;
    color: var(--atlas-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--atlas-transition);
}

.atlas-dark-toggle:hover {
    color: var(--atlas-accent);
    border-color: var(--atlas-accent);
}

.atlas-mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--atlas-text-main);
    cursor: pointer;
}

/* ==========================================
   4. JOURNAL HERO SECTION
   ========================================== */
.atlas-hero {
    background: var(--atlas-hero-bg);
    border-bottom: 1px solid var(--atlas-border);
    padding: 4rem 0 4.5rem 0;
    position: relative;
}

.atlas-hero-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--atlas-text-muted);
    text-transform: uppercase;
}

.atlas-badge-open-access {
    background-color: #065f46;
    color: #ffffff;
    padding: 0.25rem 0.65rem;
    border-radius: var(--atlas-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.atlas-hero-title {
    font-family: var(--atlas-font-heading);
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--atlas-text-main);
    margin: 0 0 1.25rem 0;
    max-width: 900px;
    letter-spacing: -0.02em;
}

.atlas-hero-description {
    font-size: 1.15rem;
    color: var(--atlas-text-muted);
    max-width: 780px;
    margin-bottom: 2.25rem;
    line-height: 1.6;
}

.atlas-hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.atlas-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--atlas-radius-full);
    text-decoration: none;
    transition: var(--atlas-transition);
    cursor: pointer;
}

.atlas-btn-primary {
    background-color: var(--atlas-accent);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.3);
}

.atlas-btn-primary:hover {
    background-color: var(--atlas-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 118, 110, 0.4);
}

.atlas-btn-outline {
    background-color: var(--atlas-card-bg);
    color: var(--atlas-text-main) !important;
    border: 1px solid var(--atlas-border);
    box-shadow: var(--atlas-shadow-sm);
}

.atlas-btn-outline:hover {
    border-color: var(--atlas-accent);
    color: var(--atlas-accent) !important;
    transform: translateY(-1px);
}

/* ==========================================
   5. FEATURED ARTICLE & AUTHOR CARD SECTION
   ========================================== */
.atlas-featured-section {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--atlas-border);
}

.atlas-featured-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}

.atlas-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--atlas-accent);
    margin-bottom: 0.75rem;
    display: block;
}

.atlas-featured-article-card {
    background-color: var(--atlas-card-bg);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-lg);
    padding: 2.25rem;
    box-shadow: var(--atlas-shadow-md);
    transition: var(--atlas-transition);
}

.atlas-featured-article-card:hover {
    box-shadow: var(--atlas-shadow-lg);
}

.atlas-featured-title {
    font-family: var(--atlas-font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1rem 0;
}

.atlas-featured-title a {
    color: var(--atlas-text-main);
    text-decoration: none;
    transition: var(--atlas-transition);
}

.atlas-featured-title a:hover {
    color: var(--atlas-accent);
}

.atlas-featured-authors {
    font-size: 1rem;
    font-weight: 600;
    color: var(--atlas-text-main);
    margin-bottom: 0.75rem;
}

.atlas-featured-meta {
    font-size: 0.875rem;
    color: var(--atlas-text-muted);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.atlas-featured-abstract {
    font-size: 0.975rem;
    color: var(--atlas-text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.65;
}

.atlas-featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px dashed var(--atlas-border);
}

.atlas-doi-pill {
    font-size: 0.8rem;
    color: var(--atlas-text-muted);
    background-color: var(--atlas-bg-secondary);
    padding: 0.25rem 0.65rem;
    border-radius: var(--atlas-radius-sm);
    text-decoration: none;
}

/* Author Card */
.atlas-author-card {
    background: var(--atlas-author-card-bg);
    border: 1px solid var(--atlas-author-card-border);
    border-radius: var(--atlas-radius-lg);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--atlas-shadow-sm);
}

.atlas-author-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 50%;
}

.atlas-author-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.atlas-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--atlas-accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.atlas-author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--atlas-text-main);
    margin: 0;
}

.atlas-author-role {
    font-size: 0.825rem;
    color: var(--atlas-text-muted);
    margin: 0;
}

.atlas-author-body {
    font-size: 0.9rem;
    color: var(--atlas-text-main);
    line-height: 1.5;
}

/* ==========================================
   6. CURRENT ISSUE & ARTICLE LIST
   ========================================== */
.atlas-section-heading {
    font-family: var(--atlas-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--atlas-text-main);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--atlas-accent);
    display: inline-block;
}

.atlas-issue-toc-section {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--atlas-border);
}

.atlas-issue-meta-bar {
    background-color: var(--atlas-bg-secondary);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-md);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.atlas-article-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.atlas-article-item {
    background-color: var(--atlas-card-bg);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-md);
    padding: 1.5rem;
    transition: var(--atlas-transition);
}

.atlas-article-item:hover {
    border-color: var(--atlas-accent);
    box-shadow: var(--atlas-shadow-md);
}

.atlas-article-item-title {
    font-family: var(--atlas-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.atlas-article-item-title a {
    color: var(--atlas-text-main);
    text-decoration: none;
}

.atlas-article-item-title a:hover {
    color: var(--atlas-accent);
}

/* ==========================================
   7. INDEXING & STATISTICS BLOCKS
   ========================================== */
.atlas-grid-section {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--atlas-border);
}

/* Premium Auto-Scrolling Marquee */
.atlas-indexing-marquee-section {
    padding: 3.5rem 0;
    background-color: var(--atlas-bg-secondary);
    overflow: hidden;
    border-bottom: 1px solid var(--atlas-border);
}

.atlas-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1.25rem 0;
    margin-top: 1rem;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.atlas-marquee-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    animation: atlasMarqueeScroll 28s linear infinite;
}

.atlas-marquee-wrapper:hover .atlas-marquee-track {
    animation-play-state: paused;
}

@keyframes atlasMarqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.atlas-marquee-item {
    flex-shrink: 0;
}

.atlas-logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    background-color: var(--atlas-card-bg);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-md);
    font-family: var(--atlas-font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: var(--atlas-text-main);
    box-shadow: var(--atlas-shadow-sm);
    transition: var(--atlas-transition);
}

.atlas-logo-badge:hover {
    border-color: var(--atlas-accent);
    color: var(--atlas-accent);
    transform: translateY(-2px);
    box-shadow: var(--atlas-shadow-md);
}

.atlas-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.atlas-stat-card {
    background-color: var(--atlas-card-bg);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-lg);
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--atlas-shadow-sm);
}

.atlas-stat-number {
    font-family: var(--atlas-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--atlas-accent);
    margin-bottom: 0.3rem;
}

.atlas-stat-label {
    font-size: 0.875rem;
    color: var(--atlas-text-muted);
    font-weight: 500;
}

/* ==========================================
   8. FOOTER
   ========================================== */
.atlas-footer {
    background: var(--atlas-hero-bg);
    border-top: 1px solid var(--atlas-border);
    padding: 4rem 0 2rem 0;
    font-size: 0.9rem;
    color: var(--atlas-text-muted);
}

.atlas-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.atlas-footer-col h4 {
    font-family: var(--atlas-font-heading);
    font-size: 1.15rem;
    color: var(--atlas-text-main);
    margin: 0 0 1.25rem 0;
}

.atlas-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.atlas-footer-links a {
    color: var(--atlas-text-muted);
    text-decoration: none;
    transition: var(--atlas-transition);
}

.atlas-footer-links a:hover {
    color: var(--atlas-accent);
}

.atlas-footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--atlas-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

/* ==========================================
   9. PKP CORE PAGE STRUCTURE & BREADCRUMBS
   ========================================== */
.pkp_structure_page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.pkp_structure_content {
    flex: 1 0 auto;
    width: 100%;
    padding: 2.5rem 0;
}

.pkp_structure_main {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Standalone OJS Page Container */
.page {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3.5rem 1.5rem;
}

/* Breadcrumb Navigation */
.cmp_breadcrumbs,
nav.cmp_breadcrumbs {
    margin-bottom: 2rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--atlas-border);
}

.cmp_breadcrumbs ol.breadcrumb,
.cmp_breadcrumbs ol,
.cmp_breadcrumbs ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--atlas-text-muted);
}

.cmp_breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cmp_breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: var(--atlas-border);
    font-weight: 400;
}

.cmp_breadcrumbs a {
    color: var(--atlas-text-muted);
    text-decoration: none;
    transition: var(--atlas-transition);
}

.cmp_breadcrumbs a:hover {
    color: var(--atlas-accent);
}

.cmp_breadcrumbs .current,
.cmp_breadcrumbs li:last-child span {
    color: var(--atlas-text-main);
    font-weight: 600;
}

/* Page Titles & Headings */
h1.page_title,
.page_title {
    font-family: var(--atlas-font-heading);
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--atlas-text-main);
    margin: 0 0 1.75rem 0;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.pkp_structure_main h2,
.page h2 {
    font-family: var(--atlas-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--atlas-text-main);
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--atlas-accent);
    display: inline-block;
}

.pkp_structure_main h3,
.page h3 {
    font-family: var(--atlas-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--atlas-text-main);
    margin: 1.5rem 0 0.75rem 0;
}

/* Notifications & Alert Banners */
.cmp_notification,
.pkp_notification,
.submissions_login {
    background-color: var(--atlas-accent-light);
    border: 1px solid var(--atlas-accent-border);
    border-left: 4px solid var(--atlas-accent);
    border-radius: var(--atlas-radius-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.25rem;
    color: var(--atlas-text-main);
    font-size: 0.975rem;
    line-height: 1.6;
}

.cmp_notification a,
.pkp_notification a,
.submissions_login a {
    color: var(--atlas-accent);
    font-weight: 700;
    text-decoration: underline;
}

/* ==========================================
   10. CURRENT ISSUE PAGE & TOC STYLING
   ========================================== */
.page_issue .issue_details {
    background-color: var(--atlas-bg-secondary);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
    box-shadow: var(--atlas-shadow-sm);
}

.page_issue .issue_details:has(.cover:empty),
.page_issue .issue_details:not(:has(.cover)) {
    grid-template-columns: 1fr;
}

.page_issue .cover img,
.page_issue .issue_cover img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: var(--atlas-radius-md);
    box-shadow: var(--atlas-shadow-md);
    border: 1px solid var(--atlas-border);
}

.page_issue .published {
    font-size: 0.9rem;
    color: var(--atlas-text-muted);
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--atlas-accent-light);
    color: var(--atlas-accent);
    padding: 0.3rem 0.85rem;
    border-radius: var(--atlas-radius-full);
    font-weight: 600;
}

.page_issue .description {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--atlas-text-main);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--atlas-border);
}

/* Section Headings in TOC */
.obj_issue_toc .sections,
.obj_issue_toc .section {
    margin-bottom: 2.5rem;
}

.obj_issue_toc .section_title,
.obj_issue_toc h2,
.obj_issue_toc h3 {
    font-family: var(--atlas-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--atlas-text-main);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--atlas-accent);
    display: inline-block;
}

.obj_issue_toc ul.articles {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Article Cards (Core & Homepage) */
.obj_article_summary {
    background-color: var(--atlas-card-bg);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--atlas-shadow-sm);
    transition: var(--atlas-transition);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.obj_article_summary:hover {
    border-color: var(--atlas-accent);
    box-shadow: var(--atlas-shadow-md);
    transform: translateY(-2px);
}

.obj_article_summary .title,
.obj_article_summary h3.title {
    font-family: var(--atlas-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.obj_article_summary .title a {
    color: var(--atlas-text-main);
    text-decoration: none;
    transition: var(--atlas-transition);
}

.obj_article_summary .title a:hover {
    color: var(--atlas-accent);
}

.obj_article_summary .authors {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--atlas-text-muted);
    margin: 0;
}

.obj_article_summary .pages {
    font-size: 0.85rem;
    color: var(--atlas-text-muted);
    font-weight: 500;
}

.obj_article_summary .pub_id.doi {
    font-size: 0.8rem;
    color: var(--atlas-text-muted);
    background-color: var(--atlas-bg-secondary);
    padding: 0.25rem 0.65rem;
    border-radius: var(--atlas-radius-sm);
    display: inline-block;
    width: fit-content;
}

.obj_article_summary .pub_id.doi a {
    color: var(--atlas-text-muted);
    text-decoration: none;
}

.obj_article_summary .pub_id.doi a:hover {
    color: var(--atlas-accent);
}

/* Galley / PDF Download Buttons */
.obj_article_summary .galleys_links,
.galleys_links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    list-style: none;
    padding: 0;
}

.obj_galley_link,
.galley_link,
a.galley_link,
a.pdf,
.galleys_links a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--atlas-accent);
    color: #ffffff !important;
    padding: 0.45rem 1.1rem;
    border-radius: var(--atlas-radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--atlas-transition);
    box-shadow: 0 2px 6px rgba(15, 118, 110, 0.2);
}

.obj_galley_link:hover,
.galley_link:hover,
a.galley_link:hover,
a.pdf:hover,
.galleys_links a:hover {
    background-color: var(--atlas-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.35);
}

.obj_galley_link::before,
.galley_link::before,
a.pdf::before {
    content: '📄';
    font-size: 0.85rem;
}

/* ==========================================
   11. ISSUE ARCHIVES PAGE STYLING
   ========================================== */
.page_issue_archive .issues_list,
.pkg_issue_archive {
    margin-top: 2rem;
}

.page_issue_archive ul.issues_archive,
.issues_list ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.obj_issue_summary {
    background-color: var(--atlas-card-bg);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--atlas-shadow-sm);
    transition: var(--atlas-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.obj_issue_summary:hover {
    border-color: var(--atlas-accent);
    box-shadow: var(--atlas-shadow-lg);
    transform: translateY(-4px);
}

.obj_issue_summary .cover,
.obj_issue_summary .issue_cover {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--atlas-radius-md);
    margin-bottom: 1.25rem;
    background-color: var(--atlas-bg-secondary);
}

.obj_issue_summary .cover img,
.obj_issue_summary .issue_cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--atlas-transition);
}

.obj_issue_summary:hover .cover img,
.obj_issue_summary:hover .issue_cover img {
    transform: scale(1.03);
}

.obj_issue_summary .title,
.obj_issue_summary h2.title,
.obj_issue_summary .issue_summary_title {
    font-family: var(--atlas-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.obj_issue_summary .title a,
.obj_issue_summary .issue_summary_title a {
    color: var(--atlas-text-main);
    text-decoration: none;
    transition: var(--atlas-transition);
}

.obj_issue_summary .title a:hover,
.obj_issue_summary .issue_summary_title a:hover {
    color: var(--atlas-accent);
}

.obj_issue_summary .series {
    font-size: 0.9rem;
    color: var(--atlas-text-muted);
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--atlas-border);
}

/* ==========================================
   12. SUBMISSIONS & AUTHOR GUIDELINES PAGE STYLING
   ========================================== */
.page_submissions .author_guidelines,
.page_submissions .submission_checklist,
.page_submissions .copyright_notice,
.page_submissions .privacy_statement {
    background-color: var(--atlas-card-bg);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-lg);
    padding: 2.25rem;
    margin-bottom: 2rem;
    box-shadow: var(--atlas-shadow-sm);
}

.page_submissions h2 {
    font-family: var(--atlas-font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--atlas-text-main);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--atlas-accent);
    display: inline-block;
}

.page_submissions .submission_checklist ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.page_submissions .submission_checklist li {
    position: relative;
    padding-left: 2.5rem;
    font-size: 0.975rem;
    line-height: 1.65;
    color: var(--atlas-text-main);
}

.page_submissions .submission_checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-color: var(--atlas-accent);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

/* ==========================================
   13. ARTICLE VIEW PAGE & OTHER OJS PAGES
   ========================================== */
/* ==========================================
   13. ARTICLE VIEW PAGE & OTHER OJS PAGES
   ========================================== */
.page_article {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem 1.5rem;
}

.page_article .obj_article_details {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.75rem 2.5rem;
    align-items: start;
    margin-top: 1rem;
    width: 100%;
}

.page_article .article_details,
.page_article .row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.75rem 2.5rem;
    align-items: start;
    width: 100%;
}

/* Article Title & Authors span full width across both columns */
.page_article .obj_article_details h1.page_title,
.page_article h1.page_title,
.page_article .article_title {
    grid-column: 1 / -1;
    font-family: var(--atlas-font-heading);
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--atlas-text-main);
    margin: 0;
    letter-spacing: -0.015em;
}

.page_article .obj_article_details .authors,
.page_article .obj_article_details .item.authors,
.page_article .authors,
.page_article .item.authors {
    grid-column: 1 / -1;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--atlas-text-main);
    margin: 0 0 0.5rem 0;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--atlas-border);
}

/* Left Main Content Column (~68%) */
.page_article .main_entry {
    grid-column: 1;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

/* Right Sidebar Column (~32%) */
.page_article .entry_details {
    grid-column: 2;
    width: 100%;
    background-color: var(--atlas-card-bg);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: var(--atlas-shadow-sm);
    margin: 0;
}

.page_article .authors .author_name,
.page_article .authors .name {
    font-weight: 700;
    color: var(--atlas-text-main);
}

.page_article .authors .author_affiliation,
.page_article .authors .affiliation {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--atlas-text-muted);
    display: block;
    margin-top: 0.25rem;
}

.page_article .item.abstract {
    background-color: var(--atlas-card-bg);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-lg);
    padding: 2rem;
    box-shadow: var(--atlas-shadow-sm);
}

.page_article .item.abstract .label {
    font-family: var(--atlas-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--atlas-text-main);
    display: block;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--atlas-accent);
}

.page_article .item.doi {
    font-size: 0.9rem;
    color: var(--atlas-text-muted);
    background-color: var(--atlas-bg-secondary);
    padding: 0.65rem 1rem;
    border-radius: var(--atlas-radius-md);
    border: 1px solid var(--atlas-border);
}

.page_article .item.doi a {
    color: var(--atlas-accent);
    font-weight: 600;
    text-decoration: none;
}

.page_article .entry_details .item .label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--atlas-text-muted);
    margin-bottom: 0.4rem;
    display: block;
}

/* PKP Generic Forms (Search, Login, Register, Contact) */
.pkp_form input[type="text"],
.pkp_form input[type="email"],
.pkp_form input[type="password"],
.pkp_form select,
.pkp_form textarea {
    width: 100%;
    background-color: var(--atlas-bg);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-md);
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    color: var(--atlas-text-main);
    transition: var(--atlas-transition);
}

.pkp_form input:focus,
.pkp_form select:focus,
.pkp_form textarea:focus {
    outline: none;
    border-color: var(--atlas-accent);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

.pkp_form button.submit,
.pkp_form input[type="submit"] {
    background-color: var(--atlas-accent);
    color: #ffffff;
    border: none;
    border-radius: var(--atlas-radius-full);
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--atlas-transition);
}

.pkp_form button.submit:hover,
.pkp_form input[type="submit"]:hover {
    background-color: var(--atlas-accent-hover);
    transform: translateY(-1px);
}

/* ==========================================
   EDITORIAL TEAM PAGE (ATLAS THEME DESIGN)
   ========================================== */
.atlas-editorial-page {
    padding: 2.5rem 0 4rem 0;
    background-color: var(--atlas-bg);
}

.atlas-editorial-header {
    margin-bottom: 2.5rem;
    position: relative;
}

.atlas-editorial-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    background-color: var(--atlas-accent-light);
    color: var(--atlas-accent);
    border: 1px solid var(--atlas-accent-border);
    border-radius: var(--atlas-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.atlas-badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--atlas-accent);
    border-radius: 50%;
    display: inline-block;
}

.atlas-editorial-title {
    font-family: var(--atlas-font-heading);
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--atlas-text-main);
    margin: 0 0 0.75rem 0;
    line-height: 1.25;
}

.atlas-title-accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--atlas-accent) 0%, var(--atlas-accent-border) 100%);
    border-radius: 2px;
}

.page_editorial_team,
.atlas-editorial-content {
    line-height: 1.7;
    color: var(--atlas-text-main);
}

/* Category & Role Section Titles */
.page_editorial_team h2,
.atlas-editorial-content h2,
.page_editorial_team h3,
.atlas-editorial-content h3 {
    font-family: var(--atlas-font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--atlas-text-main);
    margin: 2.5rem 0 1.25rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--atlas-accent-border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page_editorial_team h2::before,
.atlas-editorial-content h2::before,
.page_editorial_team h3::before,
.atlas-editorial-content h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 22px;
    background-color: var(--atlas-accent);
    border-radius: 2px;
}

/* Editor Cards Container / Grid */
.atlas-editor-grid,
.page_editorial_team .editorial-group,
.page_editorial_team ul.editorial_team_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 2.5rem 0;
}

/* Member Card Base */
.atlas-editor-card,
.page_editorial_team .member,
.page_editorial_team .editor-item {
    background: var(--atlas-hero-bg);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-md);
    padding: 1.5rem;
    box-shadow: var(--atlas-shadow-sm);
    transition: var(--atlas-transition);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}

.atlas-editor-card:hover,
.page_editorial_team .member:hover,
.page_editorial_team .editor-item:hover {
    box-shadow: var(--atlas-shadow-md);
    border-color: var(--atlas-accent-border);
    transform: translateY(-2px);
}

/* Featured / Editor-in-Chief Card */
.atlas-editor-card-featured,
.page_editorial_team .editor-in-chief {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--atlas-card-bg) 0%, var(--atlas-accent-light) 100%);
    border: 1px solid var(--atlas-accent-border);
    box-shadow: var(--atlas-shadow-md);
    padding: 2rem;
}

/* Editor Avatar / Photo */
.atlas-editor-avatar,
.page_editorial_team img.editor-photo,
.page_editorial_team .profile_image img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--atlas-accent-border);
    box-shadow: var(--atlas-shadow-sm);
    flex-shrink: 0;
    background-color: var(--atlas-accent-light);
}

/* Dynamic Initials Avatar */
.atlas-avatar-initials {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--atlas-accent) 0%, #0d9488 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    border: 2px solid var(--atlas-accent-border);
    box-shadow: var(--atlas-shadow-sm);
}

.atlas-editor-info {
    flex: 1;
    min-width: 0;
}

.atlas-editor-name {
    font-family: var(--atlas-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--atlas-text-main);
    margin: 0 0 0.35rem 0;
    line-height: 1.3;
}

.atlas-editor-role-badge {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    background-color: var(--atlas-accent-light);
    color: var(--atlas-accent);
    border-radius: var(--atlas-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.atlas-editor-affiliation {
    color: var(--atlas-text-muted);
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.atlas-editor-bio {
    font-size: 0.875rem;
    color: var(--atlas-text-main);
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* ==========================================
   HOMEPAGE SECTIONS REDESIGN (ATLAS PALETTE)
   ========================================== */

.atlas-section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--atlas-accent);
    margin-bottom: 0.5rem;
}

.atlas-eyebrow-light {
    color: #99f6e4;
}

.atlas-section-header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* 1. EDITORIAL BOARD HOMEPAGE SECTION */
.atlas-editorial-board-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* 2. CURRENT ISSUE HOMEPAGE SECTION */
.atlas-current-issue-header {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
    align-items: center;
    background-color: var(--atlas-bg-secondary);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-lg);
    padding: 2.25rem;
    box-shadow: var(--atlas-shadow-sm);
}

.atlas-issue-cover-img {
    width: 100%;
    max-width: 240px;
    height: auto;
    border-radius: var(--atlas-radius-md);
    box-shadow: var(--atlas-shadow-md);
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center center;
    will-change: transform, box-shadow;
}

.atlas-issue-cover-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--atlas-accent) 0%, #0f172a 100%);
    border-radius: var(--atlas-radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    box-shadow: var(--atlas-shadow-md);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center center;
    will-change: transform, box-shadow;
}

@media (hover: hover) and (pointer: fine) {
    .atlas-current-issue-cover-col:hover .atlas-issue-cover-img,
    .atlas-current-issue-cover-col:hover .atlas-issue-cover-placeholder,
    .atlas-issue-cover-img:hover,
    .atlas-issue-cover-placeholder:hover {
        transform: scale(1.04) rotate(-2deg);
        box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.22), 0 8px 15px -6px rgba(15, 118, 110, 0.18);
    }
}

.atlas-issue-placeholder-title {
    font-family: var(--atlas-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.atlas-issue-placeholder-vol {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.atlas-issue-main-title {
    font-family: var(--atlas-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--atlas-text-main);
    margin: 0.25rem 0 0.5rem 0;
    line-height: 1.25;
}

.atlas-issue-sub-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--atlas-accent);
    margin: 0 0 0.85rem 0;
}

.atlas-issue-description {
    font-size: 0.95rem;
    color: var(--atlas-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.atlas-issue-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    padding: 1rem 0;
    border-top: 1px solid var(--atlas-border);
    border-bottom: 1px solid var(--atlas-border);
    margin-bottom: 1.25rem;
}

.atlas-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.atlas-meta-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--atlas-text-muted);
    text-transform: uppercase;
}

.atlas-meta-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--atlas-text-main);
}

/* ALL ISSUES ARCHIVE DISCOVERY SECTION */
.atlas-all-issues-section {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--atlas-border);
}

.atlas-all-issues-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.atlas-all-issues-title {
    font-family: var(--atlas-font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--atlas-text-main);
    margin: 0.25rem 0 0 0;
    line-height: 1.2;
}

.atlas-all-issues-card {
    background-color: var(--atlas-bg-secondary);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-lg);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: var(--atlas-shadow-sm);
    transition: var(--atlas-transition);
}

.atlas-all-issues-card:hover {
    border-color: var(--atlas-accent);
    box-shadow: var(--atlas-shadow-md);
}

.atlas-all-issues-card-title {
    font-family: var(--atlas-font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--atlas-text-main);
    margin: 0 0 0.5rem 0;
}

.atlas-all-issues-card-desc {
    font-size: 0.975rem;
    color: var(--atlas-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* 3. FOR AUTHORS / SUBMISSION CTA SECTION */
.atlas-author-cta-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f766e 100%);
    border-radius: var(--atlas-radius-lg);
    padding: 3rem 3.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    box-shadow: var(--atlas-shadow-lg);
}

.atlas-author-cta-content {
    max-width: 680px;
}

.atlas-author-cta-title {
    font-family: var(--atlas-font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0.35rem 0 0.85rem 0;
    line-height: 1.25;
}

.atlas-author-cta-desc {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.atlas-author-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
    min-width: 220px;
}

.atlas-cta-btn-primary {
    background-color: var(--atlas-accent);
    color: #ffffff !important;
    text-align: center;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    border-radius: var(--atlas-radius-full);
}

.atlas-cta-btn-primary:hover {
    background-color: var(--atlas-accent-hover);
    transform: translateY(-2px);
}

.atlas-cta-btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    text-align: center;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    border-radius: var(--atlas-radius-full);
}

.atlas-cta-btn-outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* 4. EDITORIAL BOARD SAFE HOMEPAGE CARD */
.atlas-editorial-board-card {
    background-color: var(--atlas-bg-secondary);
    border: 1px solid var(--atlas-border);
    border-left: 4px solid var(--atlas-accent);
    border-radius: var(--atlas-radius-lg);
    padding: 2.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: var(--atlas-shadow-sm);
}

.atlas-editorial-board-info {
    max-width: 780px;
}

.atlas-editorial-board-desc {
    font-size: 1rem;
    color: var(--atlas-text-muted);
    line-height: 1.6;
    margin: 0;
}

.atlas-editorial-board-action {
    flex-shrink: 0;
}

/* 5. JOURNAL ARCHIVE & TIMELINE BANNER */
.atlas-archive-timeline-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
    border: 1px solid var(--atlas-accent-border);
    border-radius: var(--atlas-radius-lg);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: var(--atlas-shadow-sm);
}

.atlas-archive-timeline-content {
    max-width: 720px;
}

.atlas-archive-timeline-title {
    font-family: var(--atlas-font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--atlas-text-main);
    margin: 0.25rem 0 0.5rem 0;
    line-height: 1.3;
}

.atlas-archive-timeline-desc {
    font-size: 1rem;
    color: var(--atlas-text-muted);
    line-height: 1.6;
    margin: 0;
}

.atlas-archive-timeline-action {
    flex-shrink: 0;
}

/* 6. PUBLISHING STANDARDS GRID */
.atlas-standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.atlas-standard-card {
    background-color: var(--atlas-card-bg);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--atlas-shadow-sm);
    transition: var(--atlas-transition);
}

.atlas-standard-card:hover {
    border-color: var(--atlas-accent);
    transform: translateY(-2px);
    box-shadow: var(--atlas-shadow-md);
}

.atlas-standard-icon {
    width: 36px;
    height: 36px;
    background-color: var(--atlas-accent-light);
    color: var(--atlas-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.atlas-standard-title {
    font-family: var(--atlas-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--atlas-text-main);
    margin-bottom: 0.4rem;
}

.atlas-standard-desc {
    font-size: 0.9rem;
    color: var(--atlas-text-muted);
    line-spacing: 1.5;
}

/* 7. DYNAMIC INDEXING CONTENT */
.atlas-indexing-section {
    background-color: var(--atlas-bg-secondary);
}

.atlas-indexing-content {
    font-size: 0.95rem;
    color: var(--atlas-text-main);
    line-height: 1.6;
}

/* ==========================================
   14. ARCHIVES PAGE (ATLAS EDITORIAL STYLING)
   ========================================== */
.atlas-archive-page {
    padding-bottom: 4rem;
}

/* Archive Hero */
.atlas-archive-hero {
    background: var(--atlas-hero-bg);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-lg);
    padding: 3.5rem 3rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.atlas-archive-hero-title {
    font-family: var(--atlas-font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--atlas-text-main);
    margin: 0.5rem 0 1rem 0;
    letter-spacing: -0.02em;
}

.atlas-archive-hero-desc {
    font-size: 1.15rem;
    color: var(--atlas-text-muted);
    max-width: 720px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.atlas-archive-meta-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* View Switcher Controls */
.atlas-archive-controls-wrapper {
    margin-top: 1rem;
}

.atlas-view-radio {
    display: none !important;
}

.atlas-view-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--atlas-border);
    flex-wrap: wrap;
}

.atlas-view-heading {
    font-family: var(--atlas-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--atlas-text-main);
    margin: 0 0 0.4rem 0;
}

.atlas-view-subheading {
    font-size: 0.95rem;
    color: var(--atlas-text-muted);
    margin: 0;
}

.atlas-view-toggle-pills {
    display: inline-flex;
    background-color: var(--atlas-bg-secondary);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-full);
    padding: 0.25rem;
    gap: 0.25rem;
}

.atlas-view-pill {
    padding: 0.45rem 1.1rem;
    border-radius: var(--atlas-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--atlas-text-muted);
    cursor: pointer;
    transition: var(--atlas-transition);
    user-select: none;
}

.atlas-view-pill:hover {
    color: var(--atlas-text-main);
}

/* Pure CSS Radio View Switching */
.atlas-view-panel {
    display: none;
}

#view_covers:checked ~ .atlas-archive-views .atlas-panel-covers {
    display: block;
}

#view_list:checked ~ .atlas-archive-views .atlas-panel-list {
    display: block;
}

#view_by_year:checked ~ .atlas-archive-views .atlas-panel-by-year {
    display: block;
}

#view_covers:checked ~ .atlas-view-header label[for="view_covers"],
#view_list:checked ~ .atlas-view-header label[for="view_list"],
#view_by_year:checked ~ .atlas-view-header label[for="view_by_year"] {
    background-color: var(--atlas-accent);
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.25);
}

/* View 1: Covers Grid */
.atlas-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.atlas-archive-card {
    background-color: var(--atlas-card-bg);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-lg);
    overflow: hidden;
    box-shadow: var(--atlas-shadow-sm);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

@media (hover: hover) and (pointer: fine) {
    .atlas-archive-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--atlas-shadow-lg);
        border-color: var(--atlas-accent);
    }
    
    .atlas-archive-card:hover .atlas-archive-cover-img {
        transform: scale(1.03);
    }
}

.atlas-archive-cover-link {
    display: block;
    overflow: hidden;
    position: relative;
}

.atlas-archive-cover-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.atlas-archive-cover-placeholder {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--atlas-accent) 0%, #0f172a 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
}

.atlas-archive-placeholder-title {
    font-family: var(--atlas-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.atlas-archive-placeholder-vol {
    font-size: 0.8rem;
    opacity: 0.85;
}

.atlas-archive-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.atlas-archive-card-date {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--atlas-accent);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.atlas-archive-card-title {
    font-family: var(--atlas-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.atlas-archive-card-title a {
    color: var(--atlas-text-main);
    text-decoration: none;
    transition: var(--atlas-transition);
}

.atlas-archive-card-title a:hover {
    color: var(--atlas-accent);
}

.atlas-archive-card-subtitle {
    font-size: 0.9rem;
    color: var(--atlas-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.atlas-archive-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dashed var(--atlas-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.atlas-archive-vol-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--atlas-text-muted);
}

.atlas-archive-card-action {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--atlas-accent);
    text-decoration: none;
}

/* View 2: List View */
.atlas-archive-list-container {
    background-color: var(--atlas-card-bg);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-lg);
    overflow: hidden;
    box-shadow: var(--atlas-shadow-sm);
}

.atlas-archive-list-header {
    display: grid;
    grid-template-columns: 140px 200px 1fr 140px;
    gap: 1.5rem;
    padding: 1rem 1.75rem;
    background-color: var(--atlas-bg-secondary);
    border-bottom: 1px solid var(--atlas-border);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--atlas-text-muted);
}

.atlas-archive-list-row {
    display: grid;
    grid-template-columns: 140px 200px 1fr 140px;
    gap: 1.5rem;
    padding: 1.25rem 1.75rem;
    align-items: center;
    border-bottom: 1px solid var(--atlas-border);
    transition: var(--atlas-transition);
}

.atlas-archive-list-row:last-child {
    border-bottom: none;
}

.atlas-archive-list-row:hover {
    background-color: var(--atlas-accent-light);
}

.atlas-list-col-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--atlas-accent);
}

.atlas-list-col-vol {
    font-weight: 700;
    color: var(--atlas-text-main);
}

.atlas-list-col-title a {
    color: var(--atlas-text-main);
    text-decoration: none;
    font-weight: 600;
}

.atlas-list-col-title a:hover {
    color: var(--atlas-accent);
}

/* View 3: By Year View */
.atlas-archive-year-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.atlas-archive-year-row {
    background-color: var(--atlas-card-bg);
    border: 1px solid var(--atlas-border);
    border-radius: var(--atlas-radius-lg);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--atlas-shadow-sm);
    transition: var(--atlas-transition);
}

.atlas-archive-year-row:hover {
    border-color: var(--atlas-accent);
    box-shadow: var(--atlas-shadow-md);
}

.atlas-year-badge {
    font-family: var(--atlas-font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--atlas-accent);
    background-color: var(--atlas-accent-light);
    padding: 0.5rem 1.25rem;
    border-radius: var(--atlas-radius-md);
    flex-shrink: 0;
}

.atlas-year-info {
    flex: 1;
}

.atlas-year-issue-title {
    font-family: var(--atlas-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.atlas-year-issue-title a {
    color: var(--atlas-text-main);
    text-decoration: none;
}

.atlas-year-issue-title a:hover {
    color: var(--atlas-accent);
}

.atlas-year-issue-sub {
    font-size: 0.9rem;
    color: var(--atlas-text-muted);
    margin: 0;
}

.atlas-btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

/* Hide OJS-generated breadcrumb only on Editorial Board custom page */
body.pkp_page_editorial-board nav.cmp_breadcrumbs:not(.atlas-editorial-breadcrumb) {
    display: none !important;
}
