/* =======================================================
   TELJ - Teacher Education and Learning Journal
   Modern Academic Theme
======================================================= */

/* HEADER */
.pkp_structure_head {
    background: linear-gradient(
        135deg,
        #1F4E79,
        #2b6cb0
    ) !important;
}

/* JOURNAL TITLE */
.pkp_site_name a {
    color: #ffffff !important;
    font-weight: 700;
}

/* NAVIGATION BAR */
.pkp_navigation_primary_row {
    background: transparent !important;
}

/* MENU LINKS */
.pkp_navigation_primary > li > a {
    color: #ffffff !important;
    font-weight: 600;
    padding: 10px 16px !important;
    border-radius: 6px;
    transition: all .25s ease;
}

/* MENU HOVER */
.pkp_navigation_primary > li > a:hover {
    background: rgba(255,255,255,0.15);
    color: #ffffff !important;
}

/* ACTIVE MENU */
.pkp_navigation_primary > li.current > a,
.pkp_navigation_primary > .current > a {
    background: #ffffff !important;
    color: #1F4E79 !important;
}

/* DROPDOWN MENU */
.pkp_navigation_primary ul {
    border-radius: 8px;
    overflow: hidden;
}

.pkp_navigation_primary ul li a:hover {
    background: #eef6ff;
}

/* CONTENT AREA */
.page {
    background: #ffffff;
}

/* SIDEBAR BLOCKS */
.pkp_block {
    overflow: hidden;
    margin-bottom: 10px;
}

/* SIDEBAR TITLES */
.pkp_block .title {
    background: #1F4E79;
    color: #ffffff;
    padding: 12px;
    font-weight: 600;
}

/* BUTTONS */
.obj_galley_link,
.cmp_button,
button,
.btn {
    background: #1F4E79 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    border: none !important;
    transition: all .25s ease;
}

.obj_galley_link:hover,
.cmp_button:hover,
button:hover,
.btn:hover {
    background: #0F766E !important;
}

/* ARTICLE CARDS */
.obj_issue_summary,
.obj_article_summary {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all .25s ease;
}

.obj_issue_summary:hover,
.obj_article_summary:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

/* ARTICLE TITLE */
.obj_article_summary .title a {
    color: #1F4E79 !important;
    font-weight: 600;
}

/* LINKS */
a {
    color: #2563EB;
}

a:hover {
    color: #0F766E;
}

/* SEARCH BOX */
input[type="text"],
input[type="search"] {
    border-radius: 8px;
    border: 1px solid #d1d5db;
}

/* FOOTER */
.pkp_structure_footer_wrapper {
    background: #1F4E79 !important;
    color: white !important;
}

.pkp_structure_footer_wrapper a {
    color: #dbeafe !important;
}

/* CURRENT ISSUE COVER */
.current_issue .cover img,
.obj_issue_summary img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

/* MOBILE */
@media (max-width:768px){

    .pkp_navigation_primary > li > a {
        padding: 12px !important;
    }

}