  
.pkp_site_name_wrapper {
    width: 100%;
    display: flex
;
    flex-direction: column;
    align-items: center;
}
.pkp_structure_head{
    background-color: #fff;
}

.pkp_site_nav_menu{
    background-color: #fff;
}

.pkp_navigation_primary>li>a{
    color: #000;
}
.pkp_navigation_primary .dropdown-menu a:hover {
        border-color: #f6921e;
}

@media (min-width: 992px) {
    .pkp_nav_list ul a:hover, .pkp_nav_list ul a:focus {
        outline: 0;
        background: #f6911e97;
        border-color: #f6921e;
        color : #000;
    }
}

.pkp_nav_list ul a{
    
    color : #000;
}

.pkp_navigation_primary_wrapper{
 padding: 1rem;
}

.pkp_brand_footer{
    display: none;
}


@media (min-width: 992px) {
    .pkp_navigation_primary>li>a:hover {
        color: #000;
        outline: 0;
        border-color: #fff;
    }
}

.pkp_site_name .is_text{
    color: #000;
}

.pkp_site_name {
    grid-column: 2;
    display: flex
;
    align-items: center;
    gap: 12px;
    text-align: center;
    justify-self: center;
}

@media (min-width: 992px) {
    .pkp_site_name {
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
        padding: 0;
        white-space: normal;
        font-size: 2em;
        background: transparent;
        overflow: visible;
    }
}

@media (min-width: 992px) {
    .pkp_navigation_search_wrapper a {
        margin: .357rem .5em 0;
        padding: .357rem .5em calc(.714rem - 2px);
        border-bottom: 2px solid transparent;
        color: #000;
        text-decoration: none;
    }
}

@media (min-width: 992px) {
    .pkp_navigation_search_wrapper a {
        margin: .357rem .5em 0;
        padding: .357rem .5em calc(.714rem - 2px);
        border-bottom: 2px solid transparent;
        color: #000;
        text-decoration: none;
    }
}

.pkp_site_nav_menu a:hover, .pkp_site_nav_menu a:focus{
    color: #000;
}

.pkp_site_nav_menu a{
    color: #000;
}

.pkp_navigation_user .task_count{
    position: static;
}

/* aditional content */

.container {
            display: flex;
            width: 100%;
            height: 75vh;
        }

        .left-panel img{
    height: 75vh;
    width: 350px;
        }

        .right-panel {
            flex: 1;
            background-color: #f6921e; /* Matching blue shade */
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            padding: 60px;
            position: relative;
            transition: background-color 0.4s ease;
        }

        .right-panel:hover {
            background-color: #f6921e; /* Slightly darker on hover for feedback */
        }

        .vol-issue {
            font-size: 2.5rem;
            font-weight: lighter;
            letter-spacing: 0.1em;
            margin-bottom: 10px;
        }

        .year {
            font-size: 4rem;
            font-weight: bold;
            letter-spacing: 0.05em;
            align-self: flex-end;
            margin-top: 40px;
            margin-right: 20px;
        }

        .main-text {
            font-size: 2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin: auto;
            opacity: 1;
            transition: opacity 0.6s ease;
            line-height: 1.2;
        }

        .hover-text {
            position: absolute;
            top: 50%;
            
            transform: translateY(-50%);
            font-size: 1rem;
            line-height: 1.6;
            max-width: 80%;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .right-panel:hover .main-text {
            opacity: 0;
        }

        .right-panel:hover .hover-text {
            opacity: 1;
        }

        /* Responsive adjustment */
        @media (max-width: 1024px) {
            .container {
                flex-direction: column;
            }
            .year {
                align-self: flex-start;
                margin-top: 20px;
            }
        }

/* submission and info block */

.pkp_block.block_information {
    background: #f9fafc;
    border-radius: 12px;
    padding: 20px;
    max-width: 320px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    font-family: Arial, sans-serif;
}

/* Title */
.pkp_block.block_information .title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
    text-align: center;
}

/* List reset */
.pkp_block.block_information ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Spacing between items */
.pkp_block.block_information li {
    margin-bottom: 12px;
}

/* Button-style links */
.pkp_block.block_information a {
    display: block;
    text-align: center;
    padding: 12px 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f6921e, #f6911e89);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;

    /* Animation setup */
    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

/* Hover animation */
.pkp_block.block_information a:hover {
    transform: translateY(-4px) scale(1.03);
    
    background: linear-gradient(135deg, #f6921e, #f6911eaa);
}

/* Click animation */
.pkp_block.block_information a:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.25);
}
.block_make_submission a {
    display: inline-block;
    padding: 0.5em 1.2em;
    background: linear-gradient(135deg, #f6921e, #f6911e9a);
    border: 1px solid #f6921e;
    border-radius: 6px;

    /* Depth */
   

    font-size: 0.95rem;
    line-height: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    text-align: center;

    /* Animation */
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

/* Hover animation */
.block_make_submission a:hover {
    background: linear-gradient(135deg, #f6921e, rgba(106, 0, 106, 0.694));
    transform: translateY(-3px);
    
}

/* Active (click) effect */
.block_make_submission a:active {
    transform: translateY(0) scale(0.97);
    
}

.pkp_structure_footer_wrapper{
    background: #f6921e;
}