/* ================= GLOBAL ================= */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f7f9f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
}

/* ================= CONTENT CENTER ================= */
.pkp_structure_main,
.pkp_structure_content,
.pkp_structure_page {
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px;
}

/* ================= HEADER ================= */
.pkp_structure_head {
    background: #ffffff;
    border-bottom: 2px solid #c9a646;
}

.pkp_site_name a {
    color: #0f4c4c !important;
    font-weight: 700;
    font-size: 24px;
}

/* ================= NAVBAR ================= */
.pkp_navigation_primary {
    text-align: center;
}

.pkp_navigation_primary > li > a {
    color: #0f4c4c !important;
    font-weight: 600;
    padding: 10px 15px;
}

.pkp_navigation_primary > li > a:hover,
.pkp_navigation_primary > li.current > a {
    color: #c9a646 !important;
}

/* ================= FULL WIDTH BANNER (FIXED) ================= */
.page_index_journal img:first-of-type {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-bottom: 4px solid #c9a646;
}

/* ================= SECTION TITLES ================= */
.pkp_block .title {
    font-size: 20px;
    font-weight: 700;
    color: #0f4c4c;
    border-bottom: 2px solid #c9a646;
    padding-bottom: 6px;
    margin-bottom: 15px;
}

/* ================= CARDS ================= */
.obj_issue_summary,
.obj_article_summary,
.obj_announcement_summary {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.obj_issue_summary:hover,
.obj_article_summary:hover {
    transform: translateY(-5px);
}

/* ================= LINKS ================= */
a {
    color: #0f4c4c;
    text-decoration: none;
}

a:hover {
    color: #c9a646;
}

/* ================= BUTTONS ================= */
button,
.pkp_button {
    background: #c9a646 !important;
    border: none;
    border-radius: 6px;
    color: #fff !important;
    padding: 10px 18px;
    font-weight: 600;
}

button:hover {
    background: #a8872f !important;
}

/* ================= FORMS ================= */
input, select, textarea {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 8px;
}

input:focus, textarea:focus {
    border-color: #c9a646;
    outline: none;
}

/* ================= ANNOUNCEMENT ================= */
.obj_announcement_summary {
    border-left: 4px solid #c9a646;
}

/* ================= SIDEBAR ================= */
.pkp_block {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

/* ================= REMOVE OJS BRANDING COMPLETELY ================= */
.pkp_brand_footer,
.pkp_footer_content .pkp_brand_footer,
.pkp_structure_footer_wrapper .pkp_brand_footer {
    display: none !important;
}

/* ALSO remove container spacing caused by branding */
.pkp_structure_footer_wrapper {
    background: #0f4c4c !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* FORCE FULL WIDTH */
.pkp_structure_footer_wrapper .pkp_footer_content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* REMOVE ANY INNER LIMITS */
.pkp_footer_content > * {
    max-width: 100% !important;
}

/* ================= CUSTOM FOOTER ================= */
.custom-footer {
    width: 100%;
    background: #0f4c4c;
    color: #fff;
    padding: 50px 60px 20px;
    box-sizing: border-box;
}

/* FLEX LAYOUT */
.footer-container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* COLUMNS */
.footer-col {
    flex: 1;
    min-width: 250px;
}

/* HEADINGS */
.footer-col h3,
.footer-col h4 {
    color: #c9a646;
    margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
    font-size: 15px;
    line-height: 1.7;
}

/* LINKS */
.footer-col a {
    color: #c9a646 !important;
}

.footer-col a:hover {
    color: #ffffff !important;
}

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 30px;
    padding-top: 15px;
}

/* ================= FIX RIGHT SIDE EMPTY SPACE ================= */
html, body {
    overflow-x: hidden;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .custom-footer {
        padding: 30px 20px;
    }
}
/* ================= EDITORIAL SECTION ================= */
.editorial-section {
    padding: 90px 8%;
    background: #f9fbfb;
    text-align: center;
}

.section-title {
    font-size: 40px;
    margin-bottom: 50px;
    color: #0B4D4D;
}

.section-title:after {
    content: "";
    width: 90px;
    height: 3px;
    background: #C8A44D;
    display: block;
    margin: 15px auto;
}

.associate-title {
    font-size: 28px;
    margin: 60px 0 30px;
    color: #0B4D4D;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid #C8A44D;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all .3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.team-card h4 {
    color: #0B4D4D;
    margin: 12px 0 10px;
}

.team-card .role {
    display: inline-block;
    background: #0B4D4D;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.team-card a {
    color: #C8A44D;
    text-decoration: none;
    font-weight: 500;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .custom-footer {
        padding: 30px 20px;
    }
}