/* ============================================================
   OJS 3.5 — Manuscript (Default Child Theme)
   Modern & Elegant Stylesheet
   ============================================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Primary palette */
    --primary-color: #8B1A1A;
    --primary-dark: #6B0F0F;
    --primary-light: #A82828;
    --primary-hover: #C23030;
    --primary-glow: rgba(139, 26, 26, 0.15);
    --primary-subtle: rgba(139, 26, 26, 0.06);

    /* Accent */
    --accent-gold: #C8A96E;
    --accent-gold-light: #E0C992;

    /* Neutrals */
    --bg-body: #F4F1ED;
    --bg-white: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-light: #FAF9F7;
    --bg-muted: #F0EEEA;

    /* Text */
    --text-heading: #1A1A1A;
    --text-main: #3A3A3A;
    --text-secondary: #6B6B6B;
    --text-muted: #999999;
    --text-on-primary: #FFFFFF;

    /* Borders */
    --border-light: #E8E5E0;
    --border-medium: #D5D0C8;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
    --shadow-primary: 0 8px 24px rgba(139, 26, 26, 0.18);

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s var(--ease-smooth);
    --transition-normal: 0.3s var(--ease-smooth);
    --transition-slow: 0.45s var(--ease-smooth);

    /* Font stacks */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ---------- Global Reset & Base ---------- */
html {
    scroll-behavior: smooth;
}

html,
body {
    background-color: var(--bg-body);
    background-image: url("https://jurnal.padangtekno.com/public/jurdikum.png");
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
}

/* ---------- Scrollbar (Webkit) ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-muted);
}

::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h2 {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 2px;
}

p {
    color: var(--text-main);
    line-height: 1.8;
}

/* ---------- Links ---------- */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-hover);
}

a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ---------- Content Wrapper ---------- */
.pkp_structure_content {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ---------- Layout: Main + Sidebar ---------- */
/* Force sidebar to align at the top, not drop below */
.pkp_structure_content {
    display: flex !important;
    flex-wrap: wrap;
    align-items: flex-start !important;
}

.pkp_structure_main {
    flex: 1 1 0;
    min-width: 0;
    order: 1;
}

.pkp_structure_sidebar {
    flex: 0 0 280px;
    max-width: 280px;
    order: 2;
    position: sticky;
    top: 20px;
    align-self: flex-start !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Fallback for themes that use float layout */
.pkp_structure_main,
.pkp_structure_sidebar {
    float: none !important;
}

/* Ensure full-width on mobile */
@media (max-width: 992px) {
    .pkp_structure_content {
        flex-direction: column;
    }

    .pkp_structure_sidebar {
        flex: 1 1 100%;
        max-width: 100%;
        position: static;
        order: 3;
    }
}

/* ---------- Page Structure ---------- */
.pkp_structure_page {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    padding-bottom: 20px !important;
}

/* ============================================================
   HEADER
   ============================================================ */
.pkp_site_name {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.pkp_site_name>a {
    padding-top: 0;
    padding-bottom: 0;
}

.pkp_site_name .is_img img {
    max-height: 200px !important;
    transition: transform var(--transition-normal);
}

.pkp_site_name .is_img img:hover {
    transform: scale(1.02);
}

.pkp_site_name_wrapper {
    padding-left: 0;
    padding-right: 0;
}

/* ============================================================
   PRIMARY NAVIGATION
   ============================================================ */
.pkp_navigation_primary_row {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    text-align: left;
    padding-left: 15px;
    box-shadow: 0 4px 15px rgba(139, 26, 26, 0.25);
    position: relative;
    z-index: 100;
}

/* Subtle shimmer line on top */
.pkp_navigation_primary_row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.5;
}

#navigationPrimary {
    top: 0;
}

#navigationPrimary a {
    color: rgba(255, 255, 255, 0.92);
    transition: all var(--transition-fast);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    padding: 12px 16px;
    position: relative;
}

#navigationPrimary a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition-normal);
    border-radius: 1px;
}

#navigationPrimary a:hover {
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.12);
}

#navigationPrimary a:hover::after {
    width: 70%;
}

#navigationPrimary ul {
    background: var(--primary-dark);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- User Navigation ---------- */
.pkp_navigation_user_wrapper {
    top: 0;
    right: 0;
    padding-right: 30px;
}

#navigationUser a {
    color: rgba(255, 255, 255, 0.9);
    transition: all var(--transition-fast);
    font-size: 0.88rem;
}

#navigationUser a:hover {
    color: var(--accent-gold-light);
}

/* ============================================================
   BUTTONS & GALLEY LINKS
   ============================================================ */
.cmp_button_wire,
.obj_galley_link {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    color: #fff;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.cmp_button_wire::before,
.obj_galley_link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s var(--ease-smooth);
}

.cmp_button_wire:hover,
.obj_galley_link:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-hover));
    box-shadow: var(--shadow-primary);
    transform: translateY(-2px);
    color: #fff;
}

.cmp_button_wire:hover::before,
.obj_galley_link:hover::before {
    left: 100%;
}

.cmp_button_wire:active,
.obj_galley_link:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   ARTICLE SUMMARY (Issue TOC)
   ============================================================ */
.obj_article_summary {
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--primary-color);
    background: var(--bg-card);
    padding: 20px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    transition: all var(--transition-normal);
    position: relative;
}

.obj_article_summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-gold));
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.obj_article_summary:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-left-color: transparent;
}

.obj_article_summary:hover::before {
    opacity: 1;
}

.obj_article_summary .title a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-heading);
    line-height: 1.5;
    transition: color var(--transition-fast);
}

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

.obj_article_summary .meta .authors {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================================
   ARTICLE DETAIL PAGE
   ============================================================ */

/* Page title with gradient banner */
.obj_article_details .page_title {
    color: var(--text-on-primary);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 40%, var(--primary-light) 100%);
    padding: 28px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-primary);
    margin-bottom: 24px;
    font-family: var(--font-heading);
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

/* Decorative accent on the title banner */
.obj_article_details .page_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light), var(--accent-gold));
}

/* Author name */
.name {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Abstract section */
.obj_article_details .abstract {
    text-align: justify;
    line-height: 1.9;
    color: var(--text-main);
    font-size: 0.95rem;
    padding: 20px 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-gold);
    margin: 20px 0;
}

/* ============================================================
   SIDEBAR
   ============================================================ */

/* Block titles */
.pkp_block .title {
    display: block;
    padding: 14px 16px;
    text-align: left;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-on-primary);
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border-left: none;
    box-shadow: 0 2px 8px rgba(139, 26, 26, 0.15);
    position: relative;
}

.pkp_block .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* ---------- Custom sidebar (head-menu / menu-sidebar) ---------- */
.head-menu {
    border-bottom: 3px solid var(--primary-color);
    height: 50px;
}

.head-menu a {
    display: block;
    padding: 12px 16px;
    text-align: left;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-on-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.menu-sidebar {
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--bg-white);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.menu-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-sidebar li a {
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-main);
    display: block;
    background-color: transparent;
    padding: 13px 16px;
    margin-top: 0;
    transition: all var(--transition-fast);
    position: relative;
    font-weight: 400;
}

.menu-sidebar li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform var(--transition-fast);
    border-radius: 0 2px 2px 0;
}

.menu-sidebar li:last-child a {
    border-bottom: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.menu-sidebar li a:hover {
    background-color: var(--primary-subtle);
    color: var(--primary-color);
    padding-left: 22px;
    font-weight: 500;
}

.menu-sidebar li a:hover::before {
    transform: scaleY(1);
}

.menu-sidebar ul ul {
    position: absolute;
    top: 75px;
    left: 135px;
    visibility: hidden;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    z-index: 100;
    border: 1px solid var(--border-light);
}

.menu-sidebar ul li:hover ul {
    visibility: visible;
}

/* ---------- Badan links ---------- */
.badan {
    margin-top: -15px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-white);
}

.badan a {
    display: block;
    padding: 13px 16px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-white);
    text-align: center;
    transition: all var(--transition-fast);
    color: var(--text-main);
    font-size: 0.9rem;
}

.badan a:last-child {
    border-bottom: none;
}

.badan a:hover {
    color: var(--primary-color) !important;
    font-weight: 600;
    background: var(--primary-subtle);
    padding-left: 22px;
}

/* ============================================================
   EDITORIAL TEAM
   ============================================================ */
.editorial-list {
    position: relative;
}

.editorial-list li {
    margin-bottom: 1.5rem;
    background: var(--bg-card);
    padding: 18px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.editorial-list li:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--primary-glow);
}

.editorial-list .img-profile {
    position: absolute;
    width: 95px;
    height: 105px;
    border: 2px solid var(--border-light);
    padding: 4px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.editorial-list .img-profile .imgthumb {
    width: 80px;
    height: 90px;
    overflow: hidden;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 4px;
}

.editorial-list .img-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.editorial-list li:hover .img-profile img {
    transform: scale(1.05);
}

.team-content {
    margin-left: 115px;
    min-height: 115px;
}

.team-content .ico-label {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    opacity: 0.7;
}

.team-aff ul li {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
}

.team-aff ul li:hover {
    transform: none;
    box-shadow: none;
}

.team-aff ul li .tm_label {
    display: inline-block;
    width: 80px;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.team-aff ul li .ico-label {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
}

/* ============================================================
   MOST READ ARTICLES
   ============================================================ */
.most_read_article {
    padding: 16px 18px;
    margin-bottom: 12px;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--primary-color);
    background: var(--bg-card);
    transition: all var(--transition-normal);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    position: relative;
}

.most_read_article::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-gold));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.most_read_article:hover {
    background: var(--bg-light);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-left-color: transparent;
}

.most_read_article:hover::before {
    opacity: 1;
}

.most_read_article_title a {
    color: var(--text-heading);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.5;
    transition: color var(--transition-fast);
}

.most_read_article_title a:hover {
    color: var(--primary-color);
}

.most_read_article_journal {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.most_read_article_journal .fa-eye {
    margin-right: 4px;
    color: var(--primary-color);
    font-size: 0.78rem;
}

/* ============================================================
   AUTHOR LIST (Flag & University)
   ============================================================ */
.author-list {
    font-family: var(--font-body);
}

.author-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background: var(--bg-card);
    padding: 18px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.author-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--primary-glow);
}

.author-item img {
    width: 100px;
    height: auto;
    margin-right: 18px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.author-item ul {
    margin: 0;
    padding-left: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.pkp_structure_footer_wrapper {
    background: #FFFFFF !important;
    color: var(--text-main);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.pkp_structure_footer_wrapper p,
.pkp_structure_footer_wrapper span,
.pkp_structure_footer_wrapper li,
.pkp_structure_footer_wrapper div {
    color: var(--text-main) !important;
}

.pkp_structure_footer_wrapper a {
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

.pkp_structure_footer_wrapper a:hover {
    color: var(--primary-hover);
}

/* ============================================================
   ISSUE / ARCHIVE
   ============================================================ */
.obj_issue_summary {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    background: var(--bg-card);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.obj_issue_summary:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* ============================================================
   ANNOUNCEMENTS
   ============================================================ */
.obj_announcement_summary {
    border-left: 4px solid var(--accent-gold);
    padding: 16px 20px;
    background: var(--bg-card);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    transition: all var(--transition-normal);
}

.obj_announcement_summary:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(3px);
}

.obj_announcement_summary h2::after {
    display: none;
}

/* ============================================================
   SEARCH
   ============================================================ */
.pkp_search input[type="text"],
.pkp_search .search_input {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background: var(--bg-white);
}

.pkp_search input[type="text"]:focus,
.pkp_search .search_input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-glow);
    outline: none;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.cmp_pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 30px 0;
}

.cmp_pagination a,
.cmp_pagination .current {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.cmp_pagination a {
    color: var(--text-main);
    border: 1px solid var(--border-light);
    background: var(--bg-white);
}

.cmp_pagination a:hover {
    background: var(--primary-color);
    color: var(--text-on-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-primary);
}

.cmp_pagination .current {
    background: var(--primary-color);
    color: var(--text-on-primary);
    border: 1px solid var(--primary-color);
}

/* ============================================================
   TABLES (article details, metadata)
   ============================================================ */
.obj_article_details table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin: 16px 0;
}

.obj_article_details table th {
    background: var(--bg-muted);
    color: var(--text-heading);
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--border-medium);
}

.obj_article_details table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
}

.obj_article_details table tr:last-child td {
    border-bottom: none;
}

.obj_article_details table tr:hover td {
    background-color: var(--primary-subtle);
}

/* ============================================================
   BADGES & LABELS
   ============================================================ */
.pkp_screen_reader,
.badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE POLISH
   ============================================================ */
@media (max-width: 992px) {
    .pkp_structure_content {
        border-radius: var(--radius-sm);
        margin: 10px;
    }

    .obj_article_details .page_title {
        padding: 20px;
        font-size: 1.2rem;
    }

    .team-content {
        margin-left: 0;
        margin-top: 10px;
    }

    .editorial-list .img-profile {
        position: relative;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .pkp_navigation_primary_row {
        padding-left: 10px;
    }

    .obj_article_summary {
        padding: 14px 16px;
    }

    .author-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-item img {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .obj_article_details .abstract {
        padding: 16px;
    }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.obj_article_summary,
.editorial-list li,
.most_read_article,
.author-item {
    animation: fadeInUp 0.5s var(--ease-smooth) both;
}

/* Stagger animation for lists */
.obj_article_summary:nth-child(2) {
    animation-delay: 0.08s;
}

.obj_article_summary:nth-child(3) {
    animation-delay: 0.16s;
}

.obj_article_summary:nth-child(4) {
    animation-delay: 0.24s;
}

.obj_article_summary:nth-child(5) {
    animation-delay: 0.32s;
}

.obj_article_summary:nth-child(6) {
    animation-delay: 0.40s;
}

.editorial-list li:nth-child(2) {
    animation-delay: 0.1s;
}

.editorial-list li:nth-child(3) {
    animation-delay: 0.2s;
}

.editorial-list li:nth-child(4) {
    animation-delay: 0.3s;
}

.most_read_article:nth-child(2) {
    animation-delay: 0.06s;
}

.most_read_article:nth-child(3) {
    animation-delay: 0.12s;
}

.most_read_article:nth-child(4) {
    animation-delay: 0.18s;
}

.most_read_article:nth-child(5) {
    animation-delay: 0.24s;
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {

    .pkp_navigation_primary_row,
    .pkp_navigation_user_wrapper,
    .pkp_structure_footer_wrapper,
    .pkp_block {
        display: none !important;
    }

    .pkp_structure_content {
        box-shadow: none;
        background: #fff;
    }

    .obj_article_details .page_title {
        background: none;
        color: #000;
        box-shadow: none;
        padding: 0;
        border-bottom: 2px solid #000;
    }

    a {
        color: #000;
    }
}