/* ===== RESET Y VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
}

:root {
    --color-primary: #003366;      /* Azul oscuro institucional */
    --color-secondary: #55ac3a;    /* Rojo vino para acentos */
    --color-accent: #006699;       /* Azul medio */
    --color-light: #F5F5F5;        /* Gris claro para fondos */
    --color-text: #333333;         /* Texto principal */
    --color-text-light: #666666;   /* Texto secundario */
    --color-white: #FFFFFF;
    --color-border: #DDDDDD;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

body {
    background-color: #f9f9f9;
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.pkp_structure_footer_wrapper
 {
    border-bottom: 1.43rem solid #d0d4d9;
}

/* ===== SKIP NAVIGATION - DISEÑO MEJORADO ===== */
.cmp_skip_to_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
}

.cmp_skip_to_content a {
    position: absolute;
    top: -100px;
    left: 10px;
    background: var(--color-secondary);
    color: white;
    padding: 12px 20px;
    border-radius: 0 0 6px 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: var(--transition);
    z-index: 10001;
    opacity: 0;
    transform: translateY(-20px);
}

.cmp_skip_to_content a:focus {
    opacity: 1;
    transform: translateY(0);
    top: 0;
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

.cmp_skip_to_content a:hover {
    background: #a30000;
    transform: translateY(2px);
}

.cmp_skip_to_content a:nth-child(2) {
    left: 180px;
    background: var(--color-accent);
}

.cmp_skip_to_content a:nth-child(2):hover {
    background: #0088cc;
}

.cmp_skip_to_content a:nth-child(3) {
    left: 350px;
    background: var(--color-primary);
}

.cmp_skip_to_content a:nth-child(3):hover {
    background: #004080;
}

/* Animación para resaltar cuando aparecen */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cmp_skip_to_content a:focus {
    animation: slideIn 0.4s ease-out forwards;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
    .cmp_skip_to_content a {
        width: 100%;
        left: 0;
        border-radius: 0;
        padding: 10px;
        text-align: center;
        font-size: 0.85rem;
    }
    
    .cmp_skip_to_content a:nth-child(2),
    .cmp_skip_to_content a:nth-child(3) {
        left: 0;
        top: -100px;
    }
    
    .cmp_skip_to_content a:focus {
        top: 0;
    }
    
    .cmp_skip_to_content a:nth-child(2):focus {
        top: 40px;
    }
    
    .cmp_skip_to_content a:nth-child(3):focus {
        top: 80px;
    }
}

/* ===== HEADER UNIVERSIDAD ===== */
.university-header {
    background: linear-gradient(to right, #003366 0%, #002244 100%);
    padding: 15px 0;
    color: white;
}

.university-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.university-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.university-logo img {
    height: 80px;
}

.university-name {
    display: flex;
    flex-direction: column;
}

.university-name h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.university-name p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.university-search {
    display: flex;
    gap: 10px;
}

.university-search input {
    padding: 8px 12px;
    border-radius: 4px;
    border: none;
    min-width: 250px;
}

.university-search button {
    background: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    cursor: pointer;
    transition: var(--transition);
}

.university-search button:hover {
    background: #a30000;
}

/* Menú principal */
.university-nav {
    background: var(--color-primary);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.university-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.university-nav li {
    position: relative;
}

.university-nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: 500;
    transition: var(--transition);
}

.university-nav a:hover {
    background: rgba(255,255,255,0.1);
}

/* ===== HEADER OJS ===== */
.pkp_structure_head {
    background: linear-gradient(135deg, var(--color-primary) 0%, #002244 100%);
    color: var(--color-white);
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
    z-index: 100;
    margin-top: 10px;
}

.pkp_head_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: #2d3e57;
}

.pkp_site_name_wrapper {
    display: flex;
    align-items: center;
    padding: 12px 0;
}

.pkp_site_nav_toggle {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    display: none;
    margin-right: 15px;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.pkp_site_nav_toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.pkp_site_nav_toggle span {
    font-size: 0;
    position: relative;
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
}

.pkp_site_nav_toggle span::before,
.pkp_site_nav_toggle span::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    left: 0;
    transition: var(--transition);
}

.pkp_site_nav_toggle span::before {
    top: -8px;
}

.pkp_site_nav_toggle span::after {
    top: 8px;
}

.pkp_site_name {
    font-size: 1.4rem;
    font-weight: 700;
}

.pkp_site_name a {
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px;
    transition: var(--transition);
}

.pkp_site_name a:hover {
    opacity: 0.9;
}

.pkp_site_name a::before {
    content: '';
    display: inline-block;
    width: 150px;
    height: 50px;
	    background: url('https://www.revistas.upse.edu.ec/public/site/logo-editorial@2x.png') no-repeat center;
    background-size: contain;
}

/* ===== MENÚ DE USUARIO MEJORADO ===== */
.pkp_site_nav_menu {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    flex: 1;
    background-color: transparent;
    top: 100px;
}

.pkp_navigation_user_wrapper {
    position: relative;
}

.pkp_navigation_primary_row {
	    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

#navigationUser {
    display: flex;
    list-style: none;
    align-items: center;
}

#navigationUser > li {
    position: relative;
}

#navigationUser > li > a {
    display: flex;
    align-items: center;
    color: var(--color-white);
    text-decoration: none;
    padding: 5px 16px;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 500;
    background: #55ac3a;
    gap: 8px;
}

#navigationUser > li > a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.task_count {
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    padding: 0 5px;
}

#navigationUser > li > ul {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow);
    border-radius: 4px;
    min-width: 220px;
    list-style: none;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

#navigationUser > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#navigationUser > li > ul li a {
    display: block;
    padding: 12px 16px;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}

#navigationUser > li > ul li:last-child a {
    border-bottom: none;
}

#navigationUser > li > ul li a:hover {
    background: var(--color-light);
    color: var(--color-primary);
    padding-left: 20px;
}

#navigationUser > li > ul li a .task_count {
    float: right;
    margin-top: 2px;
}

/* ===== CONTENIDO PRINCIPAL ===== */
.pkp_structure_page {
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 15px;
    flex: 1;
}

.pkp_structure_content {
    display: flex;
    margin: 40px 0;
    gap: 40px;
}

.pkp_structure_main {
    flex: 3;
}

.page_index_site {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    overflow: hidden;
}

.journals h2 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-secondary);
    position: relative;
    display: flex;
    align-items: center;
}

.journals h2::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23003366"><path d="M3 5v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm12 4c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zm-9 8c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1z"/></svg>') no-repeat center;
    background-size: contain;
    margin-right: 10px;
}

.journals h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--color-secondary);
}

.journals ul {
    list-style: none;
}

.journals li {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.journals li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.has_thumb {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 25px;
}

.thumb {
    flex: 0 0 160px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.thumb a:hover img {
    transform: scale(1.05);
}

.body {
    flex: 1;
}

.body h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.body h3 a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
}

.body h3 a::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2355ac3a"><path d="M2 6v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2z"/><path d="M20 6l-8 5-8-5z"/></svg>') no-repeat center;
    background-size: contain;
    margin-right: 10px;
}

.body h3 a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
}

.body h3 a:hover {
    color: var(--color-accent);
}

.body h3 a:hover::after {
    width: 100%;
}

.description {
    margin: 18px 0;
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.links {
    display: flex;
    list-style: none;
    margin-top: 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.links li a {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
    min-width: 150px;
    border: 2px solid transparent;
}

.links li a::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"/></svg>') no-repeat center;
    background-size: contain;
    margin-right: 8px;
}

.links li a:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.links li.current a {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.links li.current a:hover {
    background: var(--color-white);
    color: var(--color-secondary);
}

/* ===== BARRA LATERAL ===== */
.pkp_structure_sidebar {
    flex: 1;
    max-width: 280px;
}

.block_language {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 25px;
    margin-bottom: 30px;
}

.block_language h2 {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-light);
    position: relative;
}

.block_language h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--color-secondary);
}

.block_language ul {
    list-style: none;
}

.block_language li {
    margin-bottom: 10px;
}

.block_language li a {
    color: var(--color-text);
    text-decoration: none;
    display: block;
    padding: 12px 15px;
    border-radius: 6px;
    transition: var(--transition);
    font-weight: 500;
    border-left: 3px solid transparent;
}

.block_language li a:hover {
    background: rgba(0, 102, 153, 0.05);
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
}

.block_language li.current a {
    background: rgba(0, 102, 153, 0.1);
    border-left: 3px solid var(--color-primary);
    color: var(--color-primary);
    padding-left: 20px;
}

/* ===== FOOTER UNIVERSIDAD ===== */
.university-footer {
    background: #003366;
    color: white;
    padding: 50px 0 30px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-column h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--color-secondary);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 8px 0;
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px 15px 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .pkp_structure_content {
        flex-direction: column;
    }
    
    .pkp_structure_sidebar {
        max-width: 100%;
    }
    
    .has_thumb {
        flex-direction: column !important;
    }
    
    .thumb {
        margin-bottom: 20px;
        max-width: 200px;
    }
    
    .university-header-top {
        flex-direction: column;
        gap: 20px;
    }
    
    .university-search {
        width: 100%;
        justify-content: center;
    }
    
    .university-search input {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .pkp_site_nav_toggle {
        display: block;
    }
    
    .pkp_site_name {
        font-size: 1.2rem;
    }
    
    /*.pkp_site_nav_menu {
        position: fixed;
        top: 70px;
        right: -300px;
        width: 280px;
        background: var(--color-primary);
        height: calc(100vh - 70px);
        transition: var(--transition);
        z-index: 1000;
        padding: 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }
    
    .pkp_site_nav_menu.active {
        right: 0;
    }
    
    #navigationUser {
        flex-direction: column;
        align-items: flex-start;
    }
    
    #navigationUser > li {
        width: 100%;
        margin-bottom: 10px;
    }
    
    #navigationUser > li > a {
        background: transparent;
        padding: 12px 0;
    }
    
    #navigationUser > li > ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.1);
        margin-top: 10px;
        width: 100%;
    }
    
    #navigationUser > li > ul li a {
        color: rgba(255,255,255,0.9);
        border-color: rgba(255,255,255,0.1);
    }*/
    
    .university-nav ul {
        flex-wrap: wrap;
    }
}

.pkp_site_name_wrapper {
        background-color: #162944;
    }

..pkp_head_wrapper {
        background-color: #2d3e57;
}

@media (max-width: 480px) {
    .pkp_head_wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pkp_site_name_wrapper {
        width: 100%;
        justify-content: space-between;
    }
    
    .links li a {
        min-width: 100%;
    }
    
    .university-nav a {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* ===== ESTILOS FOOTER ===== */
        .site-footer {
            background: #162944;
            color: white;
            padding: 0 0 0px;
            position: relative;
            overflow: hidden;
            font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
            margin-top: 60px;
        }

        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
	    display: flex;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
        }

        .footer-title {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(255,255,255,0.1);
            position: relative;
            font-weight: 600;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: #8B0000;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-logo {
	  	width: 250px;
  		height: 250px;
  		background-image: url(https://www.revistas.upse.edu.ec/public/site/isotipo-incyt@2x.png);
  		background-repeat: no-repeat;
  		background-position: center;
  		background-size: contain;
	        margin: auto;	
	}
        .footer-links a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background: #8B0000;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 30px;
        }

        .footer-links a:hover::before {
            background: white;
            transform: translateY(-50%) scale(1.2);
        }

        .footer-info {
            text-align: center;
            padding-top: 30px;
            border-top: 0;
            margin-top: 0;
        }

        .university-logo-footer {
            display: flex;
            justify-content: center;
        }

        .university-logo-footer img {
            height: 170px;
            opacity: 0.9;
            transition: all 0.3s ease;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }

        .university-logo-footer img:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        .footer-contact {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            margin-bottom: 5px;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-contact strong {
            color: white;
            font-weight: 600;
        }

        .copyright {
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
            margin-top: 5px;
        }

        .footer-pattern {
  		position: absolute;
  		bottom: 0;
  		right: 0;
  		width: 450px;   /* mantienes el mismo tamaño del bloque */
  		height: 800px;
  		background-image: url(https://www.revistas.upse.edu.ec/public/site/patron-atomos@2x.png);
  		background-repeat: no-repeat;   /* para que no se repita */
  		background-size: 650px 1300px;   /* el patrón se “agranda” dentro del mismo cuadro */
 		z-index: 1;
	}

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }

            .footer-column {
                min-width: 100%;
            }
            .pkp_site_name_wrapper{
	        min-height: 80px;
	    }
        }

        @media (max-width: 600px) {
            .footer-title {
                font-size: 1.3rem;
            }

            .footer-links a {
                font-size: 0.95rem;
            }

            .footer-contact {
                font-size: 1rem;
            }
    }
    .pkp_brand_footer {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

.pkp_block .title {
    border-bottom: 3px solid #8a94a1;
}

.block_language h2::after {
    background: #adb4bd;
}

@media (min-width: 992px) {
    .pkp_navigation_user_wrapper {
        top: 0; 
        right: 0;
        left: auto;
        width: 25%;
        transform: none;
        padding-right: 2.143rem;
    }
    .pkp_page_index .journals .thumb {
        padding-right: 0; 
    }
    .pkp_site_name {
        padding-top: 2rem;
        padding-bottom: 2rem;
        padding-left: 35px;
    }

}

@media (min-width: 768px) {
    .pkp_page_index .journals .thumb {
        padding-right: 0;
    }
    .pkp_site_name_wrapper{
                min-height: 80px;
            }
}


