/* =========================================================
   LANDING PAGE — Modern Academic Journal Theme
   landing.css
   ========================================================= */

/* --- Variables --- */
:root {
    --lp-primary: #059669;
    --lp-primary-dark: #047857;
    --lp-primary-light: #ecfdf5;
    --lp-secondary: #065F46;
    --lp-accent: #10B981;
    --lp-success: #198754;
    --lp-dark: #0f172a;
    --lp-dark-soft: #1e293b;
    --lp-gray-900: #212529;
    --lp-gray-800: #343a40;
    --lp-gray-700: #495057;
    --lp-gray-600: #6c757d;
    --lp-gray-500: #adb5bd;
    --lp-gray-400: #ced4da;
    --lp-gray-300: #dee2e6;
    --lp-gray-200: #e9ecef;
    --lp-gray-100: #f8f9fa;
    --lp-white: #ffffff;
    --lp-body-bg: #f8fafc;
    --lp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --lp-font-display: 'Playfair Display', Georgia, serif;
    --lp-radius-sm: 8px;
    --lp-radius: 12px;
    --lp-radius-lg: 16px;
    --lp-radius-xl: 24px;
    --lp-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --lp-shadow: 0 4px 16px rgba(0,0,0,0.08);
    --lp-shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --lp-shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --lp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --lp-gradient: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    --lp-gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.landing-page {
    font-family: var(--lp-font);
    background: var(--lp-body-bg);
    color: var(--lp-gray-800);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.landing-page img { max-width: 100%; height: auto; }
.landing-page a { color: var(--lp-primary); text-decoration: none; transition: var(--lp-transition); }
.landing-page a:hover { color: var(--lp-primary-dark); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-center { text-align: center; }

/* --- Scroll Reveal --- */
.lp-section, .lp-editorial, .lp-stats-section, .lp-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-section.revealed, .lp-editorial.revealed, .lp-stats-section.revealed, .lp-cta.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =======================================================
   NAVBAR
   ======================================================= */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: var(--lp-transition);
}
.lp-navbar.scrolled {
    padding: 8px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.lp-navbar .container {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Brand */
.lp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    flex-shrink: 0;
}
.lp-brand-logo {
    width: 42px;
    height: 42px;
    border-radius: var(--lp-radius-sm);
    object-fit: contain;
}
.lp-brand-icon {
    width: 42px;
    height: 42px;
    background: var(--lp-gradient);
    border-radius: var(--lp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}
.lp-brand-name {
    display: block;
    font-weight: 800;
    font-size: 16px;
    color: var(--lp-white);
    line-height: 1.2;
    transition: var(--lp-transition);
}
.lp-brand-sub {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    line-height: 1.2;
    transition: var(--lp-transition);
}
.lp-navbar.scrolled .lp-brand-name { color: var(--lp-gray-900); }
.lp-navbar.scrolled .lp-brand-sub { color: var(--lp-gray-600); }

/* Nav Menu */
.lp-nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.lp-nav-menu a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: var(--lp-radius-sm);
    transition: var(--lp-transition);
    text-decoration: none !important;
}
.lp-nav-menu a:hover,
.lp-nav-menu a.active {
    color: var(--lp-white);
    background: rgba(255,255,255,0.15);
}
.lp-navbar.scrolled .lp-nav-menu a { color: var(--lp-gray-700); }
.lp-navbar.scrolled .lp-nav-menu a:hover,
.lp-navbar.scrolled .lp-nav-menu a.active {
    color: var(--lp-primary);
    background: var(--lp-primary-light);
}

/* Nav Dropdown */
.lp-nav-dropdown {
    position: relative;
}
.lp-nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}
.lp-nav-dropdown > a .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.2s;
}
.lp-nav-dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}
.lp-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid var(--lp-gray-200);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: all 0.2s ease;
    z-index: 1000;
    white-space: nowrap;
}
.lp-nav-dropdown:hover .lp-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.lp-nav-dropdown-menu a {
    display: block;
    padding: 9px 14px !important;
    color: var(--lp-gray-700) !important;
    border-radius: var(--lp-radius-sm);
    font-size: 13px !important;
    font-weight: 500;
    white-space: nowrap;
    background: none !important;
    transition: all 0.15s ease;
    line-height: 1.4;
}
.lp-nav-dropdown-menu a:hover {
    background: var(--lp-primary-light) !important;
    color: var(--lp-primary) !important;
}
.lp-nav-dropdown-menu a i {
    font-size: 13px;
    color: var(--lp-primary);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Nav Actions */
.lp-nav-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* Mobile Toggle */
.lp-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.lp-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--lp-white);
    border-radius: 2px;
    transition: var(--lp-transition);
}
.lp-navbar.scrolled .lp-menu-toggle span { background: var(--lp-gray-800); }
.lp-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.lp-menu-toggle.active span:nth-child(2) { opacity: 0; }
.lp-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =======================================================
   BUTTONS
   ======================================================= */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--lp-font);
    border-radius: var(--lp-radius-sm);
    cursor: pointer;
    transition: var(--lp-transition);
    text-decoration: none !important;
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1.4;
}
.lp-btn i { font-size: 14px; }

.lp-btn-primary {
    background: var(--lp-primary);
    color: var(--lp-white) !important;
    border-color: var(--lp-primary);
}
.lp-btn-primary:hover {
    background: var(--lp-primary-dark);
    border-color: var(--lp-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(13,110,253,0.35);
}

.lp-btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.9) !important;
    border-color: rgba(255,255,255,0.3);
}
.lp-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: var(--lp-white) !important;
}
.lp-navbar.scrolled .lp-btn-ghost {
    color: var(--lp-gray-700) !important;
    border-color: var(--lp-gray-300);
}
.lp-navbar.scrolled .lp-btn-ghost:hover {
    background: var(--lp-gray-100);
    border-color: var(--lp-gray-400);
    color: var(--lp-gray-900) !important;
}

.lp-btn-white {
    background: var(--lp-white);
    color: var(--lp-primary) !important;
    border-color: var(--lp-white);
    font-weight: 700;
}
.lp-btn-white:hover {
    background: var(--lp-gray-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.lp-btn-outline-white {
    background: transparent;
    color: var(--lp-white) !important;
    border-color: rgba(255,255,255,0.5);
}
.lp-btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--lp-white);
    transform: translateY(-2px);
}

.lp-btn-outline {
    background: transparent;
    color: var(--lp-primary) !important;
    border-color: var(--lp-primary);
}
.lp-btn-outline:hover {
    background: var(--lp-primary);
    color: var(--lp-white) !important;
}

.lp-btn-lg { padding: 14px 28px; font-size: 15px; }
.lp-btn-sm { padding: 6px 14px; font-size: 13px; }

/* =======================================================
   HERO
   ======================================================= */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--lp-gradient);
    overflow: hidden;
    padding: 120px 0 80px;
}
.lp-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.lp-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: white;
}
.lp-hero-shape-1 {
    width: 600px; height: 600px;
    top: -200px; right: -100px;
    animation: float1 20s ease-in-out infinite;
}
.lp-hero-shape-2 {
    width: 400px; height: 400px;
    bottom: -150px; left: -100px;
    animation: float2 15s ease-in-out infinite;
}
.lp-hero-shape-3 {
    width: 200px; height: 200px;
    top: 40%; left: 30%;
    animation: float3 10s ease-in-out infinite;
}
@keyframes float1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, 30px); } }
@keyframes float2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -20px); } }
@keyframes float3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-20px, 20px); } }

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--lp-white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}
.lp-hero-badge i { color: #ffd600; }

.lp-hero-title {
    font-family: var(--lp-font-display);
    font-size: 52px;
    font-weight: 900;
    color: var(--lp-white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.lp-hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 560px;
}

.lp-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.lp-tag {
    padding: 6px 14px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 500;
}

.lp-hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.lp-hero-stats {
    display: flex;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.lp-hero-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    padding: 16px 20px;
    flex: 1;
    transition: all 0.3s ease;
}
.lp-hero-stat:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.lp-hero-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--lp-white);
    flex-shrink: 0;
}
.lp-hero-stat-info {
    display: flex;
    flex-direction: column;
}
.lp-hero-stat strong {
    font-size: 24px;
    color: var(--lp-white);
    font-weight: 800;
    line-height: 1;
}
.lp-hero-stat span {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero Visual */
.lp-hero-visual {
    position: relative;
}
.lp-journal-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-shadow-xl);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--lp-transition);
}
.lp-journal-card:hover { transform: translateY(-4px); }
.lp-journal-card-img {
    height: 280px;
    overflow: hidden;
    background: var(--lp-gray-200);
}
.lp-journal-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lp-journal-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--lp-primary-light), #d1fae5);
    color: var(--lp-primary);
}
.lp-journal-placeholder i { font-size: 48px; opacity: 0.5; }
.lp-journal-placeholder span { font-size: 14px; font-weight: 600; text-align: center; padding: 0 20px; }

.lp-journal-card-body {
    padding: 20px 24px;
}
.lp-journal-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--lp-gray-900);
    margin-bottom: 12px;
}
.lp-issn-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.lp-issn-badges span {
    font-size: 13px;
    color: var(--lp-gray-600);
}
.lp-issn-badges span strong { color: var(--lp-gray-800); }

/* Floating elements */
.lp-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow-lg);
    animation: floatBadge 3s ease-in-out infinite;
}
.lp-float-1 { top: -20px; left: -40px; animation-delay: 0s; }
.lp-float-2 { bottom: 40px; right: -30px; animation-delay: 1.5s; }
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.lp-float-icon {
    width: 36px;
    height: 36px;
    background: var(--lp-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-primary);
    font-size: 14px;
    flex-shrink: 0;
}
.lp-float strong {
    display: block;
    font-size: 13px;
    color: var(--lp-gray-900);
    line-height: 1.2;
}
.lp-float small {
    display: block;
    font-size: 11px;
    color: var(--lp-gray-500);
}

/* =======================================================
   WHY PUBLISH WITH US
   ======================================================= */
.lp-quickbar {
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #f5f0ff 100%);
    padding: 72px 0;
    position: relative;
    z-index: 10;
}
.lp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-why-card {
    background: var(--lp-white);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--lp-gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.lp-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--lp-primary), #7c3aed);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lp-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}
.lp-why-card:hover::before { opacity: 1; }
.lp-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--lp-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--lp-primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.lp-why-card:hover .lp-why-icon {
    background: var(--lp-primary);
    color: var(--lp-white);
    transform: scale(1.05);
}
.lp-why-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--lp-gray-900);
    margin-bottom: 10px;
}
.lp-why-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--lp-gray-600);
    margin: 0;
}

/* =======================================================
   SECTIONS
   ======================================================= */
.lp-section {
    padding: 80px 0;
}
.lp-section-alt {
    background: var(--lp-gray-100);
}

.lp-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.lp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--lp-primary-light);
    color: var(--lp-primary);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.lp-section-title {
    font-family: var(--lp-font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--lp-gray-900);
    line-height: 1.2;
    margin-bottom: 12px;
}
.lp-section-desc {
    font-size: 16px;
    color: var(--lp-gray-600);
    max-width: 560px;
    margin: 0 auto;
}

/* =======================================================
   ABOUT
   ======================================================= */
/* Journal cover in about section */
.lp-about-cover {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.lp-about-cover-card {
    width: 200px;
    min-width: 200px;
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 1px solid var(--lp-gray-200);
    background: var(--lp-white);
    aspect-ratio: 3/4;
}
.lp-about-cover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lp-about-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    background: linear-gradient(160deg, var(--lp-primary-light) 0%, #e8faf0 100%);
    text-align: center;
}
.lp-about-cover-placeholder i {
    font-size: 40px;
    color: var(--lp-primary);
    opacity: 0.6;
}
.lp-about-cover-placeholder .lp-about-cover-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}
.lp-about-cover-placeholder span {
    font-size: 14px;
    font-weight: 700;
    color: var(--lp-primary);
    line-height: 1.3;
}

.lp-about-grid {
    display: grid;
    grid-template-columns: 200px 1fr 340px;
    gap: 36px;
    align-items: start;
}
.lp-about-content .lp-section-label { margin-bottom: 12px; }
.lp-about-content .lp-section-title { text-align: left; margin-bottom: 20px; }
.lp-about-text {
    font-size: 15px;
    color: var(--lp-gray-700);
    line-height: 1.85;
}

.lp-info-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-shadow);
    border: 1px solid var(--lp-gray-200);
}
.lp-info-card-header {
    background: var(--lp-gradient);
    color: var(--lp-white);
    padding: 18px 24px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp-info-card-body { padding: 4px 0; }
.lp-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 24px;
    border-bottom: 1px solid var(--lp-gray-100);
    gap: 16px;
}
.lp-info-row:last-child { border-bottom: none; }
.lp-info-label {
    font-size: 13px;
    color: var(--lp-gray-600);
    flex-shrink: 0;
}
.lp-info-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-gray-900);
    text-align: right;
}

/* =======================================================
   ANNOUNCEMENTS
   ======================================================= */
.lp-announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.lp-ann-card {
    display: flex;
    flex-direction: column;
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow-sm);
    border: 1px solid var(--lp-gray-200);
    transition: var(--lp-transition);
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
}
.lp-ann-card:hover {
    box-shadow: var(--lp-shadow);
    transform: translateY(-3px);
}
.lp-ann-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}
.lp-ann-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.lp-ann-card:hover .lp-ann-image img {
    transform: scale(1.05);
}
.lp-ann-content {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.lp-ann-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.lp-ann-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--lp-primary);
    background: var(--lp-primary-light);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}
.lp-ann-pin-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #92400e;
    background: #fef3c7;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 600;
}
.lp-ann-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--lp-gray-900);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lp-ann-text {
    font-size: 14px;
    color: var(--lp-gray-600);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lp-ann-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-primary);
    transition: gap 0.2s ease;
}
.lp-ann-card:hover .lp-ann-readmore { gap: 10px; }
/* Card without image — horizontal layout */
.lp-ann-card:not(.lp-ann-card-has-image) {
    flex-direction: row;
}
.lp-ann-card:not(.lp-ann-card-has-image) .lp-ann-content {
    padding: 20px 24px;
}

/* =======================================================
   CURRENT ISSUE BANNER
   ======================================================= */
.lp-issue-banner {
    background: var(--lp-gradient);
    border-radius: var(--lp-radius-lg);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}
.lp-issue-banner h2 {
    font-family: var(--lp-font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--lp-white);
    margin: 12px 0 8px;
}
.lp-issue-banner p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
}

/* =======================================================
   ARTICLES
   ======================================================= */
.lp-articles-list { display: flex; flex-direction: column; gap: 12px; }

.lp-article {
    display: flex;
    gap: 20px;
    padding: 28px 32px;
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-gray-200);
    transition: var(--lp-transition);
}
.lp-article:hover {
    border-color: var(--lp-primary);
    box-shadow: var(--lp-shadow);
    transform: translateX(4px);
}
.lp-article-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--lp-primary-light);
    color: var(--lp-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    margin-top: 2px;
}
.lp-article-body { flex: 1; min-width: 0; }

.lp-article-section {
    display: inline-block;
    padding: 3px 10px;
    background: var(--lp-primary-light);
    color: var(--lp-primary);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.lp-article-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 6px;
}
.lp-article-title a {
    color: var(--lp-gray-900);
    text-decoration: none !important;
}
.lp-article-title a:hover { color: var(--lp-primary); }

.lp-doi {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--lp-gray-500) !important;
    margin-bottom: 8px;
}
.lp-doi:hover { color: var(--lp-primary) !important; }

.lp-article-authors {
    font-size: 13px;
    color: var(--lp-gray-600);
    margin-bottom: 4px;
    line-height: 1.5;
}
.lp-article-pages {
    font-size: 12px;
    color: var(--lp-gray-500);
    margin-bottom: 12px;
}
.lp-article-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.lp-article-views {
    font-size: 12px;
    color: var(--lp-gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
}

.lp-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    border: 2px dashed var(--lp-gray-300);
}
.lp-empty i { font-size: 48px; color: var(--lp-gray-400); margin-bottom: 16px; }
.lp-empty h3 { font-size: 20px; color: var(--lp-gray-700); margin-bottom: 8px; }
.lp-empty p { font-size: 14px; color: var(--lp-gray-500); }

/* =======================================================
   SERVICES / LAYANAN
   ======================================================= */
.lp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-service-card {
    background: var(--lp-white);
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid var(--lp-gray-200);
    transition: all 0.3s ease;
    position: relative;
}
.lp-service-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
    transform: translateY(-4px);
    border-color: var(--lp-primary);
}
.lp-service-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 800;
    color: var(--lp-gray-100);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.lp-service-card:hover .lp-service-number {
    color: var(--lp-primary-light);
}
.lp-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--lp-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--lp-primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.lp-service-card:hover .lp-service-icon {
    background: var(--lp-primary);
    color: var(--lp-white);
}
.lp-service-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--lp-gray-900);
    margin-bottom: 10px;
}
.lp-service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--lp-gray-600);
    margin: 0;
}

/* =======================================================
   EDITORIAL
   ======================================================= */
.lp-editorial {
    padding: 80px 0;
    background: var(--lp-gradient-dark);
    position: relative;
}
.lp-editorial::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lp-editorial .container { position: relative; z-index: 1; }

.lp-editorial-title {
    font-family: var(--lp-font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--lp-white);
}
.lp-editorial-desc {
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    margin: 8px auto 0;
    font-size: 15px;
}

.lp-editors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lp-editor-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--lp-radius-lg);
    padding: 32px 20px;
    text-align: center;
    transition: var(--lp-transition);
}
.lp-editor-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
}
.lp-editor-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.15);
}
.lp-editor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lp-editor-photo span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 28px;
    font-weight: 700;
}
.lp-editor-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--lp-white);
    margin-bottom: 4px;
}
.lp-editor-role {
    font-size: 13px;
    color: var(--lp-accent);
    font-weight: 500;
    margin-bottom: 4px;
}
.lp-editor-aff {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
}
.lp-editor-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.6) !important;
    background: rgba(255,255,255,0.08);
    padding: 4px 12px;
    border-radius: 50px;
}
.lp-editor-link:hover {
    color: var(--lp-white) !important;
    background: rgba(255,255,255,0.15);
}

/* =======================================================
   INDEXING
   ======================================================= */
.lp-indexing-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}
.lp-indexing-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 32px;
    background: var(--lp-white);
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius);
    transition: var(--lp-transition);
    min-width: 140px;
    min-height: 120px;
    text-decoration: none;
}
.lp-indexing-item:hover {
    box-shadow: var(--lp-shadow);
    transform: translateY(-2px);
}
.lp-indexing-item img {
    height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(50%);
    transition: var(--lp-transition);
}
.lp-indexing-item:hover img { filter: grayscale(0%); }
.lp-indexing-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--lp-gray-600);
}

/* =======================================================
   STATS
   ======================================================= */
.lp-stats-section {
    padding: 60px 0;
    background: var(--lp-gradient);
}
.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}
.lp-stat-item {
    text-align: center;
    padding: 20px;
}
.lp-stat-icon {
    font-size: 28px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}
.lp-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--lp-white);
    line-height: 1;
    margin-bottom: 8px;
}
.lp-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* =======================================================
   CTA
   ======================================================= */
.lp-cta {
    padding: 80px 0;
    background: var(--lp-gray-100);
}
.lp-cta-inner {
    text-align: center;
    padding: 64px 48px;
    background: var(--lp-gradient-dark);
    border-radius: var(--lp-radius-xl);
    position: relative;
    overflow: hidden;
}
.lp-cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lp-cta-inner > * { position: relative; z-index: 1; }
.lp-cta-inner h2 {
    font-family: var(--lp-font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--lp-white);
    margin-bottom: 16px;
}
.lp-cta-inner p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.lp-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =======================================================
   FOOTER
   ======================================================= */
.lp-footer {
    background: var(--lp-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.lp-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.lp-footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: var(--lp-radius-sm);
    object-fit: contain;
}
.lp-footer-logo h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--lp-white);
}
.lp-footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}
.lp-footer-about {
    font-size: 13px !important;
    line-height: 1.7;
    margin-top: 12px !important;
}
.lp-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.lp-footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6) !important;
    transition: var(--lp-transition);
}
.lp-footer-social a:hover {
    background: var(--lp-primary);
    color: var(--lp-white) !important;
}

.lp-footer-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--lp-white);
    margin-bottom: 20px;
}
.lp-footer-links {
    list-style: none;
}
.lp-footer-links li {
    margin-bottom: 10px;
}
.lp-footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5) !important;
    transition: var(--lp-transition);
}
.lp-footer-links a:hover {
    color: var(--lp-white) !important;
    padding-left: 4px;
}

.lp-footer-contact > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}
.lp-footer-contact i {
    color: var(--lp-primary);
    margin-top: 4px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}
.lp-footer-contact a {
    color: rgba(255,255,255,0.5) !important;
}
.lp-footer-contact a:hover { color: var(--lp-white) !important; }

.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}
.lp-footer-bottom a {
    color: rgba(255,255,255,0.5) !important;
}
.lp-footer-bottom a:hover { color: var(--lp-white) !important; }

/* =======================================================
   RESPONSIVE
   ======================================================= */
@media (max-width: 1024px) {
    .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .lp-hero-visual { display: none; }
    .lp-hero-title { font-size: 40px; }
    .lp-about-grid { grid-template-columns: 1fr; }
    .lp-about-cover-card { width: 160px; min-width: 160px; margin: 0 auto 16px; }
    .lp-editors-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .lp-menu-toggle { display: flex; }
    .lp-nav-menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100%;
        background: var(--lp-dark);
        flex-direction: column;
        padding: 80px 24px 24px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0,0,0,0.2);
        z-index: 999;
    }
    .lp-nav-menu.open { right: 0; }
    .lp-nav-menu a {
        color: rgba(255,255,255,0.8) !important;
        padding: 12px 16px;
        border-radius: var(--lp-radius-sm);
    }
    .lp-nav-menu a:hover { background: rgba(255,255,255,0.1); }
    
    /* Mobile dropdown */
    .lp-nav-dropdown > a .fa-chevron-down { display: none; }
    .lp-nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 0;
        background: rgba(255,255,255,0.05);
        border: none;
        box-shadow: none;
        padding: 4px 0 4px 16px;
        margin-top: 0;
    }
    .lp-nav-dropdown-menu a {
        color: rgba(255,255,255,0.75) !important;
        padding: 8px 12px !important;
        font-size: 13px !important;
    }
    .lp-nav-dropdown-menu a:hover {
        background: rgba(255,255,255,0.1) !important;
        color: #fff !important;
    }
    .lp-nav-dropdown-menu a .dropdown-journal-icon {
        width: 28px; height: 28px; min-width: 28px;
        background: rgba(255,255,255,0.1);
    }
    .lp-nav-dropdown-menu a .dropdown-journal-icon i { color: rgba(255,255,255,0.8); }
    .lp-nav-dropdown-menu a .dropdown-journal-info strong { color: rgba(255,255,255,0.9); }
    .lp-nav-dropdown-menu a .dropdown-journal-info small { color: rgba(255,255,255,0.5); }

    .lp-nav-actions { display: none; }

    .lp-hero { padding: 100px 0 60px; min-height: auto; }
    .lp-hero-title { font-size: 32px; }
    .lp-hero-desc { font-size: 15px; }
    .lp-hero-stats { gap: 12px; }
    .lp-hero-stat { padding: 14px 16px; }
    .lp-hero-stat strong { font-size: 20px; }
    .lp-hero-stat-icon { width: 36px; height: 36px; font-size: 15px; }
    .lp-hero-actions { flex-direction: column; }
    .lp-hero-actions .lp-btn { width: 100%; justify-content: center; }

    .lp-why-grid { grid-template-columns: 1fr 1fr; }
    .lp-services-grid { grid-template-columns: 1fr 1fr; }

    .lp-section { padding: 48px 0; }
    .lp-section-title { font-size: 28px; }

    .lp-article { padding: 20px; flex-direction: column; gap: 12px; }
    .lp-article-num { margin: 0; }

    .lp-issue-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px;
    }
    .lp-issue-banner h2 { font-size: 22px; }

    .lp-editors-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .lp-editor-card { padding: 24px 16px; }

    .lp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .lp-stat-num { font-size: 28px; }



    .lp-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .lp-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .lp-cta-inner { padding: 40px 24px; }
    .lp-cta-inner h2 { font-size: 24px; }

    .lp-announcements-grid { grid-template-columns: 1fr; }
    .lp-ann-card:not(.lp-ann-card-has-image) { flex-direction: column; }

    .lp-indexing-logos { gap: 16px; }
    .lp-indexing-item { min-width: 100px; padding: 16px 20px; }

    .lp-editorial-title { font-size: 28px; }
}

@media (max-width: 480px) {
    .lp-hero-title { font-size: 26px; }
    .lp-hero-stats { flex-wrap: wrap; gap: 10px; }
    .lp-hero-stat { min-width: calc(50% - 5px); flex: unset; padding: 12px 14px; gap: 10px; }
    .lp-hero-stat-icon { width: 34px; height: 34px; font-size: 14px; border-radius: 8px; }
    .lp-hero-stat strong { font-size: 18px; }
    .lp-why-grid { grid-template-columns: 1fr; }
    .lp-services-grid { grid-template-columns: 1fr; }
    .lp-editors-grid { grid-template-columns: 1fr; }
    .lp-stats-grid { grid-template-columns: 1fr; }
    .lp-section-title { font-size: 24px; }
}

/* =========================================================
   PUBLIC PAGES — Journal & Article Detail
   ========================================================= */

/* --- Journal Header --- */
.pub-journal-header {
    position: relative;
    background: var(--lp-gradient);
    padding: 120px 0 48px;
    overflow: hidden;
    color: var(--lp-white);
}
.pub-journal-header-bg {
    position: absolute; inset: 0; pointer-events: none;
}
.pub-journal-info {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.pub-journal-cover {
    flex-shrink: 0; width: 200px; height: 260px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(255,255,255,0.2);
}
.pub-journal-cover img { width: 100%; height: 100%; object-fit: cover; }
.pub-journal-cover-placeholder {
    font-size: 60px; color: rgba(255,255,255,0.5);
}
.pub-journal-detail {
    flex: 1; min-width: 280px;
}
.pub-journal-detail h1 {
    font-family: var(--lp-font-display);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.pub-journal-desc {
    opacity: 0.9; font-size: 1rem; line-height: 1.6;
    margin-bottom: 20px; max-width: 600px;
}
.pub-journal-meta {
    display: flex; flex-wrap: wrap; gap: 16px;
    font-size: 0.9rem; opacity: 0.9; margin-bottom: 20px;
}
.pub-journal-meta span { display: flex; align-items: center; gap: 6px; }
.pub-journal-meta i { font-size: 14px; }
.pub-journal-stats {
    display: flex; gap: 24px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 14px 24px;
    border-radius: var(--lp-radius);
    display: inline-flex;
    font-size: 0.95rem;
}
.pub-journal-stats div { text-align: center; }
.pub-journal-stats strong { display: block; font-size: 1.5rem; font-weight: 800; }
.pub-journal-cta {
    flex-shrink: 0;
    display: flex; align-items: flex-start; padding-top: 8px;
}

/* --- Tab Navigation --- */
.pub-tabs-bar {
    background: var(--lp-white);
    border-bottom: 1px solid var(--lp-gray-200);
    position: sticky; top: 70px; z-index: 90;
    box-shadow: var(--lp-shadow-sm);
}
.pub-tabs {
    display: flex; gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0;
}
.pub-tabs::-webkit-scrollbar { display: none; }
.pub-tab {
    display: flex; align-items: center; gap: 6px;
    padding: 16px 20px;
    font-size: 0.9rem; font-weight: 500;
    color: var(--lp-gray-600);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: var(--lp-transition);
}
.pub-tab:hover { color: var(--lp-primary); background: var(--lp-primary-light); }
.pub-tab.active {
    color: var(--lp-primary);
    border-bottom-color: var(--lp-primary);
    font-weight: 700;
}
.pub-tab i { font-size: 14px; }

/* --- Content Area --- */
.pub-content {
    padding: 48px 0 80px;
    min-height: 60vh;
}
.pub-content-header {
    margin-bottom: 32px;
}
.pub-content-header .lp-section-title {
    text-align: left; font-size: 1.8rem;
}
.pub-content-header .lp-section-title::after { display: none; }

/* --- Layout with Sidebar --- */
.pub-layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 32px;
    align-items: start;
}
.pub-layout-main { min-width: 0; }

/* --- Sidebar --- */
.pub-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pub-sidebar-card {
    background: var(--lp-white);
    border: 2px solid var(--lp-primary);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
}
.pub-sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-align: center;
    padding: 12px 16px;
    margin: 0;
    color: var(--lp-primary);
    border-bottom: 2px solid var(--lp-primary);
    background: var(--lp-primary-light);
}
.pub-sidebar-items {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pub-sidebar-item {
    display: block;
    border: 2px solid var(--lp-primary);
    border-radius: var(--lp-radius);
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    overflow: hidden;
    padding: 12px;
}
.pub-sidebar-item:hover {
    background: var(--lp-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.pub-sidebar-item img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.pub-sidebar-item-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}
.pub-sidebar-item-fallback i {
    font-size: 28px;
    color: var(--lp-primary);
}
.pub-sidebar-item-fallback span {
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-primary);
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .pub-layout-with-sidebar {
        grid-template-columns: 1fr;
    }
    .pub-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .pub-sidebar-card {
        flex: 1;
        min-width: 200px;
    }
}

/* --- Cards & Prose --- */
.pub-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    padding: 32px;
    border: 1px solid var(--lp-gray-200);
    box-shadow: var(--lp-shadow-sm);
}
.pub-prose {
    color: var(--lp-gray-700);
    line-height: 1.9;
    text-align: justify;
    font-size: 0.95rem;
}
.pub-muted {
    color: var(--lp-gray-500);
    font-style: italic;
}
.pub-subtitle {
    font-size: 1.15rem; font-weight: 700;
    margin-top: 32px; margin-bottom: 16px;
    color: var(--lp-gray-800);
    padding-top: 24px;
    border-top: 1px solid var(--lp-gray-200);
}

/* --- Article List (in journal current tab) --- */
.pub-articles-list { display: flex; flex-direction: column; gap: 0; }
.pub-article-abstract {
    color: var(--lp-gray-600);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 8px 0 12px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* --- Issue Grid (archive tab) --- */
.pub-issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.pub-issue-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-gray-200);
    padding: 24px;
    display: flex; gap: 16px; align-items: flex-start;
    transition: var(--lp-transition);
    box-shadow: var(--lp-shadow-sm);
}
.pub-issue-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow);
    border-color: var(--lp-primary);
}
.pub-issue-card-icon {
    width: 48px; height: 48px;
    background: var(--lp-primary-light);
    color: var(--lp-primary);
    border-radius: var(--lp-radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.pub-issue-card-body h3 {
    font-size: 1rem; font-weight: 700; color: var(--lp-gray-800);
    margin-bottom: 4px; line-height: 1.3;
}
.pub-issue-card-meta {
    font-size: 0.85rem; color: var(--lp-gray-600); margin-bottom: 8px;
}
.pub-issue-card-footer {
    display: flex; gap: 12px; align-items: center;
}
.pub-issue-badge {
    background: var(--lp-primary-light); color: var(--lp-primary);
    padding: 3px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 600;
}
.pub-issue-date { font-size: 0.8rem; color: var(--lp-gray-500); }

/* --- Sections List (focus tab) --- */
.pub-sections-list { display: flex; flex-direction: column; gap: 12px; }
.pub-section-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px;
    background: var(--lp-gray-100);
    border-radius: var(--lp-radius-sm);
}
.pub-section-icon {
    width: 36px; height: 36px;
    background: var(--lp-primary-light); color: var(--lp-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}
.pub-section-item strong { color: var(--lp-gray-800); }
.pub-section-item p { color: var(--lp-gray-600); font-size: 0.88rem; margin-top: 4px; }

/* --- Download Box (guidelines tab) --- */
.pub-download-box {
    display: flex; gap: 16px; align-items: center;
    margin-top: 24px; padding: 20px;
    background: var(--lp-primary-light);
    border-radius: var(--lp-radius);
    border: 1px dashed var(--lp-primary);
}
.pub-download-box > i {
    font-size: 28px; color: var(--lp-primary); flex-shrink: 0;
}
.pub-download-box > div { flex: 1; }
.pub-download-box strong { color: var(--lp-gray-800); }
.pub-download-box p { font-size: 0.85rem; color: var(--lp-gray-600); margin-top: 2px; }

/* --- Editorial Board Grid --- */
.pub-board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}
.pub-board-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--lp-gray-200);
    box-shadow: var(--lp-shadow-sm);
    transition: var(--lp-transition);
}
.pub-board-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow);
}
.pub-board-photo {
    width: 72px; height: 72px;
    border-radius: 50%;
    margin: 0 auto 14px;
    overflow: hidden;
    background: var(--lp-gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 800; color: var(--lp-white);
}
.pub-board-photo img { width: 100%; height: 100%; object-fit: cover; }
.pub-board-card h4 {
    font-size: 1rem; font-weight: 700; color: var(--lp-gray-800); margin-bottom: 4px;
}
.pub-board-role {
    color: var(--lp-primary); font-weight: 600; font-size: 0.85rem; margin-bottom: 4px;
}
.pub-board-aff {
    font-size: 0.82rem; color: var(--lp-gray-500);
}
.pub-board-orcid {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.78rem; color: #a6ce39; margin-top: 8px;
    text-decoration: none; font-weight: 500;
}
.pub-board-orcid:hover { text-decoration: underline; }

/* --- Contact List --- */
.pub-contact-list { display: flex; flex-direction: column; gap: 16px; }
.pub-contact-item {
    display: flex; gap: 16px; align-items: flex-start;
}
.pub-contact-icon {
    width: 44px; height: 44px;
    background: var(--lp-primary-light); color: var(--lp-primary);
    border-radius: var(--lp-radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.pub-contact-item strong { display: block; color: var(--lp-gray-800); font-size: 0.9rem; }
.pub-contact-item p { color: var(--lp-gray-600); font-size: 0.88rem; margin-top: 2px; }
.pub-contact-item a { color: var(--lp-primary); text-decoration: none; }
.pub-contact-item a:hover { text-decoration: underline; }

/* --- Empty State --- */
.lp-empty {
    text-align: center; padding: 64px 24px;
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-gray-200);
}
.lp-empty i {
    font-size: 48px; color: var(--lp-gray-400); margin-bottom: 16px; display: block;
}
.lp-empty h3 { color: var(--lp-gray-700); margin-bottom: 8px; }
.lp-empty p { color: var(--lp-gray-500); font-size: 0.9rem; }


/* =========================================================
   ARTICLE DETAIL PAGE
   ========================================================= */

/* --- Breadcrumb --- */
.pub-breadcrumb-bar {
    background: var(--lp-white);
    border-bottom: 1px solid var(--lp-gray-200);
    padding: 80px 0 0;
}
.pub-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 0; font-size: 0.88rem;
    color: var(--lp-gray-500);
}
.pub-breadcrumb a {
    color: var(--lp-primary);
    text-decoration: none; font-weight: 500;
}
.pub-breadcrumb a:hover { text-decoration: underline; }
.pub-breadcrumb-sep { font-size: 10px; color: var(--lp-gray-400); }

/* --- Article Layout --- */
.pub-article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

/* --- Article Main Card --- */
.pub-article-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    padding: 40px;
    border: 1px solid var(--lp-gray-200);
    box-shadow: var(--lp-shadow-sm);
}
.pub-article-section-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--lp-primary-light); color: var(--lp-primary);
    padding: 6px 14px; border-radius: 20px;
    font-size: 0.82rem; font-weight: 600;
    margin-bottom: 16px;
}
.pub-article-title {
    font-family: var(--lp-font-display);
    font-size: 1.6rem; font-weight: 800;
    color: var(--lp-gray-900);
    line-height: 1.35; margin-bottom: 12px;
    text-transform: capitalize;
    text-align: justify;
}
.pub-article-title-en {
    font-size: 1.1rem; font-weight: 500;
    color: var(--lp-gray-500);
    font-style: italic; margin-bottom: 24px;
    line-height: 1.5;
    text-align: justify;
}

/* --- Article Authors --- */
.pub-article-authors-list {
    display: flex; flex-wrap: wrap; gap: 16px;
    margin-bottom: 24px;
}
.pub-article-author {
    display: flex; gap: 10px; align-items: center;
}
.pub-article-author-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--lp-gradient);
    color: var(--lp-white);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.pub-article-author strong {
    color: var(--lp-gray-800); font-size: 0.92rem;
}
.pub-orcid-link {
    color: #a6ce39; margin-left: 4px; font-size: 16px;
    text-decoration: none;
}
.pub-orcid-link:hover { opacity: 0.8; }
.pub-article-author-aff {
    display: block; font-size: 0.8rem;
    color: var(--lp-gray-500);
}

/* --- Article Meta Bar --- */
.pub-article-meta-bar {
    display: flex; flex-wrap: wrap; gap: 18px;
    font-size: 0.85rem; color: var(--lp-gray-500);
    padding: 16px 0; margin-bottom: 16px;
    border-top: 1px solid var(--lp-gray-200);
    border-bottom: 1px solid var(--lp-gray-200);
}
.pub-article-meta-bar span { display: flex; align-items: center; gap: 6px; }
.pub-article-meta-bar i { font-size: 13px; color: var(--lp-gray-400); }

/* --- Article DOI --- */
.pub-article-doi {
    margin-bottom: 24px;
}
.pub-article-doi a {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--lp-gray-100);
    color: var(--lp-primary);
    padding: 8px 16px; border-radius: 8px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem; font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--lp-gray-200);
    transition: var(--lp-transition);
}
.pub-article-doi a:hover {
    background: var(--lp-primary-light);
    border-color: var(--lp-primary);
}

/* --- Article Sections --- */
.pub-article-section {
    margin-bottom: 28px;
}
.pub-article-section h3 {
    font-size: 1.05rem; font-weight: 700;
    color: var(--lp-gray-800);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}
.pub-article-section h3 i {
    color: var(--lp-primary); font-size: 14px;
}

/* --- Keywords --- */
.pub-keywords {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.pub-keyword {
    background: var(--lp-primary-light);
    color: var(--lp-primary);
    padding: 5px 14px; border-radius: 20px;
    font-size: 0.84rem; font-weight: 500;
}
.pub-keyword-light {
    background: var(--lp-gray-100);
    color: var(--lp-gray-700);
}

/* --- References --- */
.pub-references-list {
    color: var(--lp-gray-600);
    font-size: 0.88rem;
    line-height: 1.8;
    list-style: decimal;
    padding-left: 2em;
    margin: 0;
    counter-reset: none;
}
.pub-references-list li {
    padding: 8px 0 8px 8px;
    border-bottom: 1px solid var(--lp-gray-100);
    text-align: justify;
}
.pub-references-list li:last-child {
    border-bottom: none;
}
.pub-references-list li a {
    color: var(--lp-primary);
    word-break: break-all;
    text-decoration: none;
}
.pub-references-list li a:hover {
    text-decoration: underline;
}

/* References from Quill HTML */
.pub-references-html {
    color: var(--lp-gray-600);
    font-size: 0.88rem;
    line-height: 1.8;
    text-align: justify;
}
.pub-references-html p {
    margin-bottom: 0.4em;
}
.pub-references-html ol,
.pub-references-html ul {
    padding-left: 2em;
    margin: 0;
}
.pub-references-html ol li,
.pub-references-html ul li {
    padding: 6px 0;
    border-bottom: 1px solid var(--lp-gray-100);
}
.pub-references-html ol li:last-child,
.pub-references-html ul li:last-child {
    border-bottom: none;
}
.pub-references-html a {
    color: var(--lp-primary);
    word-break: break-all;
    text-decoration: none;
}
.pub-references-html a:hover {
    text-decoration: underline;
}

/* --- Article Sidebar --- */
.pub-article-sidebar {
    display: flex; flex-direction: column; gap: 16px;
    position: sticky; top: 140px;
}
.pub-sidebar-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius);
    padding: 24px;
    box-shadow: var(--lp-shadow-sm);
}
.pub-sidebar-card h4 {
    font-size: 0.95rem; font-weight: 700;
    color: var(--lp-gray-800);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
}
.pub-sidebar-card h4 i {
    color: var(--lp-primary); font-size: 14px;
}
.pub-btn-full {
    display: flex; width: 100%; justify-content: center;
    margin-bottom: 12px;
}
.pub-sidebar-actions {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}

/* --- Submission Info --- */
.pub-submission-info {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--lp-gray-200);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pub-submission-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
}
.pub-submission-info-item > i {
    color: var(--lp-primary);
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
.pub-submission-info-item div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.pub-submission-info-item small {
    color: var(--lp-gray-400);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 600;
    margin-bottom: 1px;
}
.pub-submission-info-item span {
    color: var(--lp-gray-700);
    font-weight: 500;
    word-break: break-word;
}

/* --- Citation Box --- */
.pub-citation-box {
    background: var(--lp-gray-100);
    border-radius: var(--lp-radius-sm);
    padding: 14px;
    font-size: 0.8rem;
    color: var(--lp-gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--lp-transition);
    border: 1px solid transparent;
}
.pub-citation-box:hover {
    border-color: var(--lp-primary);
}
.pub-citation-box.copied {
    background: #d1fae5;
    border-color: #10b981;
}

/* --- Sidebar Journal --- */
.pub-sidebar-journal-link {
    display: block; color: var(--lp-primary);
    font-weight: 600; font-size: 0.95rem;
    text-decoration: none; margin-bottom: 8px;
}
.pub-sidebar-journal-link:hover { text-decoration: underline; }
.pub-sidebar-journal-meta {
    font-size: 0.85rem; color: var(--lp-gray-600);
}
.pub-sidebar-journal-meta span {
    display: block; margin-bottom: 2px;
}

/* --- Related Articles --- */
.pub-related-item {
    padding-bottom: 12px; margin-bottom: 12px;
    border-bottom: 1px solid var(--lp-gray-100);
}
.pub-related-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.pub-related-item a {
    display: block; font-size: 0.88rem;
    color: var(--lp-primary-dark);
    font-weight: 600; line-height: 1.35;
    text-decoration: none; margin-bottom: 4px;
}
.pub-related-item a:hover { color: var(--lp-primary); text-decoration: underline; }
.pub-related-item small {
    color: var(--lp-gray-500); font-size: 0.78rem;
}

/* --- Responsive : Journal & Article --- */
@media (max-width: 991px) {
    .pub-journal-info { flex-direction: column; align-items: center; text-align: center; }
    .pub-journal-cover { width: 160px; height: 210px; }
    .pub-journal-detail h1 { font-size: 1.6rem; }
    .pub-journal-meta { justify-content: center; }
    .pub-journal-stats { justify-content: center; }
    .pub-journal-cta { justify-content: center; }
    .pub-article-layout { grid-template-columns: 1fr; }
    .pub-article-sidebar { position: static; }
}
@media (max-width: 768px) {
    .pub-journal-header { padding: 100px 0 32px; }
    .pub-journal-cover { width: 120px; height: 160px; }
    .pub-journal-detail h1 { font-size: 1.3rem; }
    .pub-tabs-bar { top: 60px; }
    .pub-tab { padding: 12px 14px; font-size: 0.82rem; }
    .pub-article-card { padding: 24px; }
    .pub-article-title { font-size: 1.3rem; }
    .pub-issues-grid { grid-template-columns: 1fr; }
    .pub-board-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}


/* =======================================================
   AUTH PAGES (Login / Register) — In-page Section
   ======================================================= */

/* Auth Section — gradient background with card */
.auth-section {
    position: relative;
    background: var(--lp-gradient);
    padding: 120px 0 80px;
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.auth-section-bg {
    position: absolute; inset: 0; pointer-events: none;
}
.auth-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.auth-container {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 1;
    width: 100%;
}
.auth-container.auth-container-wide {
    max-width: 540px;
}

.auth-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius-xl);
    box-shadow: var(--lp-shadow-xl);
    overflow: hidden;
    width: 100%;
}

.auth-header {
    background: var(--lp-gradient);
    padding: 40px 32px;
    text-align: center;
    color: var(--lp-white);
    position: relative;
}
.auth-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 24px;
    background: var(--lp-white);
    border-radius: var(--lp-radius-xl) var(--lp-radius-xl) 0 0;
}
.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}
.auth-logo img {
    height: 52px;
    border-radius: var(--lp-radius-sm);
}
.auth-logo-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--lp-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--lp-white);
}
.auth-header h1 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}
.auth-header p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.auth-body {
    padding: 32px;
}

/* Auth Form Elements */
.auth-form-group {
    margin-bottom: 20px;
}
.auth-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-gray-700);
    margin-bottom: 6px;
}
.auth-form-group label .required {
    color: #ef4444;
}
.auth-form-group label .optional {
    font-weight: 400;
    color: var(--lp-gray-500);
    font-size: 12px;
}
.auth-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--lp-font);
    border: 2px solid var(--lp-gray-300);
    border-radius: var(--lp-radius-sm);
    background: var(--lp-white);
    color: var(--lp-gray-900);
    transition: var(--lp-transition);
    outline: none;
}
.auth-input:focus {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px rgba(5,150,105,0.12);
}
.auth-input::placeholder { color: var(--lp-gray-400); }

.auth-input-icon {
    position: relative;
}
.auth-input-icon > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lp-gray-400);
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}
.auth-input-icon .auth-input {
    padding-left: 42px;
}
.auth-input-icon .auth-pwd-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--lp-gray-400);
    font-size: 14px;
    background: none;
    border: none;
    padding: 4px;
    transition: var(--lp-transition);
    z-index: 2;
}
.auth-input-icon .auth-pwd-toggle i {
    pointer-events: none;
}
.auth-input-icon .auth-pwd-toggle:hover { color: var(--lp-gray-600); }

select.auth-input {
    appearance: auto;
    cursor: pointer;
}

.auth-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.auth-form-hint {
    font-size: 12px;
    color: var(--lp-gray-500);
    margin-top: 4px;
}
.auth-form-hint a { color: var(--lp-primary); font-weight: 500; }

.auth-remember {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size: 14px;
}
.auth-remember label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lp-gray-600);
    cursor: pointer;
    font-size: 13px;
}
.auth-remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--lp-primary);
}

/* ===== CAPTCHA VERIFICATION ===== */
.auth-captcha-group {
    margin-bottom: 24px;
}
.auth-captcha-group > label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-primary);
    margin-bottom: 10px;
}
.auth-captcha-group > label i {
    font-size: 14px;
}
.auth-captcha-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid var(--lp-primary-light, #a7f3d0);
    border-radius: var(--lp-radius-sm, 10px);
    padding: 12px 16px;
}
.auth-captcha-question {
    font-size: 22px;
    font-weight: 800;
    color: var(--lp-gray-700, #374151);
    white-space: nowrap;
    letter-spacing: 1px;
    min-width: 130px;
    text-align: center;
    user-select: none;
}
.auth-captcha-input {
    flex: 1;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--lp-font, 'Inter', sans-serif);
    border: 1.5px solid var(--lp-gray-300, #d1d5db);
    border-radius: 8px;
    background: var(--lp-white, #fff);
    color: var(--lp-gray-700, #374151);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-align: center;
    max-width: 120px;
    -moz-appearance: textfield;
}
.auth-captcha-input::-webkit-outer-spin-button,
.auth-captcha-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.auth-captcha-input:focus {
    border-color: var(--lp-primary, #059669);
    box-shadow: 0 0 0 3px rgba(5,150,105,0.12);
}
.auth-captcha-input::placeholder {
    color: var(--lp-gray-400, #9ca3af);
    font-weight: 400;
}

.auth-submit {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--lp-font);
    background: var(--lp-gradient);
    color: var(--lp-white);
    border: none;
    border-radius: var(--lp-radius-sm);
    cursor: pointer;
    transition: var(--lp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5,150,105,0.35);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--lp-gray-200);
    font-size: 14px;
    color: var(--lp-gray-500);
}
.auth-footer a {
    color: var(--lp-primary);
    font-weight: 600;
}
.auth-footer a:hover { color: var(--lp-primary-dark); }

/* Auth Alerts */
.auth-alert {
    padding: 14px 18px;
    border-radius: var(--lp-radius-sm);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}
.auth-alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}
.auth-alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

@media (max-width: 540px) {
    .auth-container, .auth-container.auth-container-wide {
        max-width: 100%;
        padding: 0 12px;
    }
    .auth-card {
        border-radius: var(--lp-radius-lg);
    }
    .auth-header {
        padding: 28px 20px;
    }
    .auth-header::after {
        border-radius: var(--lp-radius-lg) var(--lp-radius-lg) 0 0;
    }
    .auth-header h1 {
        font-size: 18px;
    }
    .auth-header p {
        font-size: 13px;
    }
    .auth-logo-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    .auth-logo img {
        height: 44px;
    }
    .auth-body {
        padding: 20px 16px;
    }
    .auth-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .auth-input {
        padding: 12px 14px;
        font-size: 16px; /* prevents iOS zoom on focus */
    }
    .auth-input-icon .auth-input {
        padding-left: 40px;
    }
    select.auth-input {
        font-size: 16px;
    }
    .auth-form-group label {
        font-size: 13px;
    }
    .auth-submit {
        padding: 14px;
        font-size: 15px;
    }
    .auth-section {
        padding: 90px 0 40px;
        min-height: auto;
    }
    .auth-remember {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .auth-footer {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .auth-container, .auth-container.auth-container-wide {
        padding: 0 6px;
    }
    .auth-header {
        padding: 24px 16px;
    }
    .auth-body {
        padding: 16px 12px;
    }
    .auth-header h1 {
        font-size: 16px;
    }
    .auth-input {
        padding: 11px 12px;
    }
}

/* ===== ARTICLE METRICS & INDEXING BADGES ===== */
.pub-metrics-badges {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--lp-gray-200);
}
.pub-metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.pub-metric-item small {
    font-size: 10px;
    color: var(--lp-gray-600);
    font-weight: 500;
}
.pub-metrics-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pub-metrics-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: var(--lp-radius-sm);
    font-size: 12px;
    font-weight: 500;
    color: var(--lp-gray-700);
    transition: var(--lp-transition);
    background: var(--lp-gray-100);
}
.pub-metrics-links a:hover {
    background: var(--lp-primary-light);
    color: var(--lp-primary);
}
.pub-metrics-links a i {
    width: 16px;
    text-align: center;
    font-size: 13px;
}
.pub-indexing-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 8px;
}
.pub-index-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    color: var(--lp-gray-700);
    padding: 5px 8px;
    background: var(--lp-gray-100);
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pub-index-item i {
    font-size: 12px;
    min-width: 14px;
    text-align: center;
}

