/* JGEOR - About the Journal feature cards */

.jgeor-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0 10px;
}

.jgeor-feature-card {
    background: #ffffff;
    border: 1px solid #dfe8e4;
    border-radius: 12px;
    padding: 26px 20px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(11, 61, 79, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.jgeor-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 26px rgba(11, 61, 79, 0.14);
}

.jgeor-feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #2F7D69;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.jgeor-feature-card h3 {
    color: #0B3D4F;
    font-size: 19px;
    margin: 0 0 8px;
}

.jgeor-feature-card p {
    color: #56646a;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .jgeor-feature-grid {
        grid-template-columns: 1fr;
    }
}
/* ==================================================
   JGEOR HEADER & NAVIGATION
   ================================================== */

/* Header */
.pkp_structure_head {
    background: #0b3d4f;
    border-bottom: none;
}

/* Logo area */
.pkp_site_name {
    padding-top: 18px;
    padding-bottom: 10px;
}

.pkp_site_name .is_img img {
    max-height: 90px;
    width: auto;
}

/* Primary navigation */
.pkp_navigation_primary {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pkp_navigation_primary > li > a {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 11px 13px;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.pkp_navigation_primary > li > a:hover,
.pkp_navigation_primary > li > a:focus {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}

/* Submit Manuscript — last menu item */
.pkp_navigation_primary > li:last-child > a {
    background: #2f7d69;
    color: #ffffff;
    padding: 10px 17px;
    margin-left: 8px;
    border-radius: 7px;
    font-weight: 700;
}

.pkp_navigation_primary > li:last-child > a:hover {
    background: #276957;
    color: #ffffff;
}

/* Search */
.pkp_navigation_search_wrapper a {
    color: #ffffff;
}

/* Main content width */
.pkp_structure_main {
    max-width: 1180px;
}

/* ==================================================
   JGEOR HIGHLIGHTS
   ================================================== */

.pkp_block.block_highlights,
.cmp_highlights {
    border-radius: 10px;
    overflow: hidden;
}

.cmp_highlights .highlight {
    background: #f3f7f5;
    padding: 24px 32px;
}

.cmp_highlights h2,
.cmp_highlights h3 {
    color: #0b3d4f;
    font-weight: 700;
}

/* Buttons inside highlights */
.cmp_highlights a {
    font-weight: 600;
}

.cmp_highlights a[class*="button"],
.cmp_highlights .read_more {
    display: inline-block;
    background: #2f7d69;
    color: #ffffff !important;
    padding: 9px 15px;
    border-radius: 6px;
    text-decoration: none;
}

/* ==================================================
   GENERAL
   ================================================== */

a {
    transition: color 0.2s ease, background 0.2s ease;
}

h1, h2, h3 {
    color: #0b3d4f;
}

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

    .pkp_site_name .is_img img {
        max-height: 65px;
    }

    .pkp_navigation_primary {
        display: block;
    }

    .pkp_navigation_primary > li:last-child > a {
        margin-left: 0;
    }
}
/* JGEOR - Make logo/header area same color as navigation bar */

.pkp_structure_head,
.pkp_site_name_wrapper,
.pkp_head_wrapper {
    background: #2a6f9e !important;
}
/* JGEOR - Make logo/header area same color as navigation bar */

.pkp_structure_head,
.pkp_site_name_wrapper,
.pkp_head_wrapper {
    background: #2a6f9e !important;
}
/* Unified JGEOR Header */

.pkp_structure_head,
.pkp_site_name_wrapper,
.pkp_head_wrapper,
.pkp_navigation_primary_wrapper {
    background: #2a6f9e !important;
}
/* JGEOR - Align Search with primary navigation */

.pkp_navigation_primary_wrapper {
    display: flex !important;
    align-items: center !important;
}

.pkp_navigation_primary {
    flex: 1;
    margin: 0 !important;
}

.pkp_navigation_search_wrapper {
    margin-left: auto !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-self: center !important;
}

.pkp_navigation_search_wrapper a {
    display: flex !important;
    align-items: center !important;
    height: 46px;
    padding: 0 15px !important;
    line-height: 1 !important;
}
/* Fine-tune Search alignment */

.pkp_navigation_search_wrapper {
    margin-left: auto !important;
    margin-right: 18px !important;
}

.pkp_navigation_search_wrapper a {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    height: 46px;
    padding: 0 10px !important;
}
/* Hide OJS / PKP footer branding */

.pkp_brand_footer {
    display: none !important;
}