/* =========================
   1. Global Styles
========================= */
body {
    background: hsla(33, 76%, 84%, 0.37);
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #222;
}

article, aside, footer, header, nav, section {
    display: block;
}

/* =========================
   2. Header & Logo
========================= */
.pkp_structure_head {
    margin: 0;
    padding: 0;
    background: transparent;
    min-height: 100%;
    width: 100%;
    border-bottom: 0px solid #ddd;
}

.has_site_logo .pkp_head_wrapper {
    padding-top: 0px;
}

.pkp_site_name .is_img img {
    display: block;
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
}

/* =========================
   3. Navigation
========================= */
.pkp_navigation_primary_row {
    background: #FF6B35;
    padding-left: 20px;
}

.pkp_navigation_primary > li > a {
    font-size: 17px;
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px;
}

.pkp_navigation_primary > li > a:hover {
    background: #FFD23F;
    color: black;
    border-radius: 5px;
}

/* =========================
   4. Main Content & Sidebar
========================= */
.pkp_structure_content {
    background: #FFF8DC; 
    padding: 0px;
    height: auto;
}

.pkp_structure_main {
    background: white;
    height: auto;
}

.pkp_structure_sidebar {
    background: #FFF8DC;
    height: auto;
}

/* =========================
   5. Footer
========================= */
.pkp_structure_footer_wrapper {
    background: transparent;
    height: 100%;
    width: 100%;
    border-top: 1px solid #ddd;
}

.pkp_footer_content {
    background: #D2691E;
    float: left;
    width: 100%;
    padding: 30px;
    text-align: left;
}

.pkp_brand_footer {
    background: #D2691E;
    float: right;
    width: 0%;
    padding: 0px;
}

/* =========================
   6. Editorial & Team Content
========================= */
.editorial-list .img-profile {
    position: absolute;
    width: 95px;
    height: 105px;
    border: 1px solid #ddd;
    padding: .5rem;
}

.editorial-list .img-profile .imgthumb {
    width: 80px;
    height: 90px;
    overflow: hidden;
    margin: 0 auto;
    object-fit: fill;
}

.editorial-list .img-profile img {
    width: 100%;
    height: 100%;
}

.team-content {
    margin-left: 100px;
    min-height: 130px;
}

.team-aff ul li {
    margin-bottom: 0;
}

/* =========================
   7. Sidebar Menu
========================= */
.head-menu {
    border-bottom: 3px #E55B3C solid;
    height: 50px;
}

.head-menu a {
    display: block;
    padding: 10px;
    text-align: left;
    background:#FF6B35;
    color: white;
    font-weight: bold;
}

.menu-sidebar li a {
    text-decoration: none;
    color: #000000;
    display: block;
    background-color: #FFE066;
    padding: 10px;
    margin-top: -5px;
    transition: 0.3s;
}

.menu-sidebar li a:hover {
    background-color: #FFD23F;
    box-shadow: rgb(255, 210, 63) 2px 2px 2px;
    border-left: 5px solid #FF6B35;
}

.menu-sidebar ul {
    list-style: none;
    padding: 0px;
}

.menu-sidebar ul ul {
    position: absolute;
    top: 75px;
    left: 135px;
    visibility: hidden;
}

.menu-sidebar ul li:hover ul {
    visibility: visible;
}