﻿/*==========================================
        SIDEBAR
==========================================*/

.journal-sidebar {
    margin-bottom: 25px;
}

.sidebar-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9eef7;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.sidebar-header {
    background: #0d2d75;
    color: #fff;
    padding: 14px 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sidebar-menu li {
        border-bottom: 1px solid #edf1f8;
    }

        .sidebar-menu li:last-child {
            border-bottom: none;
        }

        .sidebar-menu li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 18px;
            text-decoration: none;
            color: #183b8d;
            font-weight: 500;
            transition: .3s;
        }

            .sidebar-menu li a span {
                display: flex;
                align-items: center;
                gap: 12px;
            }

        .sidebar-menu li:hover {
            background: #f6f9ff;
        }

            .sidebar-menu li:hover a {
                color: #ff7d00;
            }

        .sidebar-menu li.active {
            background: #fff8f2;
        }

            .sidebar-menu li.active a {
                color: #e53935;
                font-weight: 700;
            }

        .sidebar-menu li i:last-child {
            font-size: 12px;
            transition: .3s;
        }

        .sidebar-menu li:hover i:last-child {
            transform: translateX(5px);
        }

/* Custom icon colors */

.text-purple {
    color: #7c3aed;
}

.text-indigo {
    color: #4f46e5;
}
/*==========================================
        PUBLISH WITH US
==========================================*/

.publish-widget {
    position: relative;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 10px;
    padding: 22px;
    background: linear-gradient(135deg,#edf5ff,#dbe9ff);
    border: 1px solid #d9e7ff;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.publish-content {
    position: relative;
    z-index: 2;
}

.publish-widget h4 {
    color: #143b8d;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.publish-widget p {
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.btn-publish {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: #123b92;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: .35s;
}

    .btn-publish:hover {
        background: #ff8c00;
        color: #fff;
        transform: translateY(-2px);
    }

    .btn-publish i {
        transition: .3s;
    }

    .btn-publish:hover i {
        transform: translateX(5px);
    }

.publish-img {
    position: absolute;
    right: 10px;
    bottom: 8px;
    width: 90px;
    opacity: .95;
}
/*====================================================
        JOURNAL INNER PAGES
====================================================*/

.journal-inner {
    background: #f6f8fc;
    min-height: 100vh;
}

/*====================================================
        BREADCRUMB
====================================================*/

.journal-breadcrumb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: #fff;
    padding: 15px 22px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 18px rgba(0,0,0,.05);
}

.breadcrumb {
    margin: 0;
    background: none;
}

.breadcrumb-item a {
    color: #123b92;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-item.active {
    color: #666;
}

.btn-print {
    background: #123b92;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: .3s;
}

    .btn-print:hover {
        background: #ff8c00;
        color: #fff;
    }

/*====================================================
        CONTENT CARD
====================================================*/

.content-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
}
/*====================================================
            PAGE HEADING
====================================================*/

.inner-heading {
    margin-bottom: 30px;
}

    .inner-heading h2 {
        color: #123b92;
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .inner-heading span {
        width: 80px;
        height: 4px;
        background: #ff8c00;
        display: block;
        border-radius: 20px;
    }
/*====================================================
                BANNER
====================================================*/

.journal-banner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 35px;
}

    .journal-banner img {
        width: 100%;
        height: 320px;
        object-fit: cover;
    }

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,40,100,.45);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

    .banner-overlay h3 {
        color: #fff;
        font-size: 38px;
        font-weight: 700;
        line-height: 1.4;
    }
/*====================================================
            CONTENT
====================================================*/

.journal-content p {
    color: #000;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
    margin-bottom: 22px;
}

.section-title {
    margin-top: 45px;
    margin-bottom: 20px;
}

    .section-title h4 {
        font-size: 28px;
        color: #123b92;
        font-weight: 700;
        margin: 0;
    }

.section-title {
    margin-top: 5px;
    margin-bottom: 20px;
}

    .section-title h4 {
        font-size: 28px;
        color: #123b92;
        font-weight: 700;
        margin: 0;
    }
/*====================================================
        OBJECTIVES
====================================================*/

.objective-box {
    display: flex;
    gap: 18px;
    background: #fff;
    padding: 25px;
    border: 1px solid #edf1f8;
    border-radius: 10px;
    transition: .35s;
    height: 100%;
}

    .objective-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,.08);
    }

    .objective-box i {
        width: 60px;
        height: 60px;
        background: #edf5ff;
        color: #123b92;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 26px;
        flex-shrink: 0;
    }

    .objective-box h5 {
        color: #123b92;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .objective-box p {
        margin: 0;
        font-size: 15px;
        line-height: 1.7;
        color: #666;
    }
/*====================================================
        HIGHLIGHTS
====================================================*/

.highlight-card {
    background: #123b92;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 35px 20px;
    transition: .35s;
    height: 100%;
}

    .highlight-card:hover {
        background: #ff8c00;
        transform: translateY(-6px);
    }

    .highlight-card i {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .highlight-card h5 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
    }
   /* Aimscope*/
.scope-list {
    margin: 0;
    padding-left: 22px;
}

    .scope-list li {
        margin-bottom: 10px;
        line-height: 1.7;
        font-size: 16px;
        color: #000;
        text-align: justify;
    }


   /* table */
.subscription-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid gainsboro;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

table.subscription-table tbody {
    border: 1px solid gainsboro;
    border-width: 3px !important;
}

    /* Header */
    .subscription-table thead th {
        background: #0b5ed7 !important;
        color: #fff !important;
        text-align: center;
        padding: 18px 12px;
        font-size: 17px;
        font-weight: 600;
        border: 1px solid rgba(255,255,255,.25);
    }

        .subscription-table thead th span {
            display: block;
            margin-top: 4px;
            font-size: 13px;
            font-weight: 400;
            color: #e8f2ff;
        }

    /* Body */
    .subscription-table tbody td {
        padding: 16px;
        border: 1px solid #dee2e6;
        text-align: center;
        font-size: 16px;
    }

        .subscription-table tbody td:first-child {
            text-align: left;
            font-weight: 600;
        }

    .subscription-table tbody tr:nth-child(even) {
        background: #f8f9fa;
    }

    .subscription-table tbody tr:hover {
        background: #eef5ff;
        transition: .3s;
    }
/*    ownership table*/
.editor-info table {
    width: auto;
    border-collapse: collapse;
}

.editor-info td {
    border: none !important;
    padding: 6px 0;
    vertical-align: top;
    font-size: 16px;
}

.editor-info .label {
    font-weight: 600;
    white-space: nowrap;
    padding-right: 10px;
}

.editor-info .colon {
    width: 15px;
    text-align: center;
    font-weight: 600;
    padding: 0 8px;
}

.editor-info a {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

    .editor-info a:hover {
        text-decoration: underline;
    }

/* Left Side Title */
.brand-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

/* Right Side Springer Logo */
.header-meta .brand-logo img {
    max-width: 140px;
    width: 100%;
    height: auto;
    right: 34%;
}

/* Large Desktop (1600px+) */
@media (min-width: 1600px) {
    .brand-title {
        font-size: 18px;
    }

    .header-meta .brand-logo img {
        max-width: 160px;
    }
}

/* Extra Large (1920px+) */
@media (min-width: 1920px) {
    .brand-title {
        font-size: 20px;
    }

    .header-meta .brand-logo img {
        max-width: 180px;
    }
}

/* 2K & 4K Screens */
@media (min-width: 2560px) {
    .brand-title {
        font-size: 24px;
    }

    .header-meta .brand-logo img {
        max-width: 200px;
    }
}