/*
===========================================================
 REACH JOURNAL — PROFESSIONAL OJS JOURNAL STYLE SHEET V2
 Compact Footer / Modern Academic Layout
 Replace the previous REACH footer CSS with this stylesheet.
===========================================================
*/

/* =========================================================
   01. GLOBAL VARIABLES
========================================================= */

:root {
    --reach-navy: #0b2745;
    --reach-navy-deep: #071b32;
    --reach-blue: #164e78;
    --reach-blue-light: #2b6d98;

    --reach-gold: #c9a227;
    --reach-gold-light: #e0bd4f;

    --reach-bg: #f5f7fa;
    --reach-white: #ffffff;

    --reach-text: #24364d;
    --reach-muted: #66758a;

    --reach-border: #dfe5ec;

    --reach-shadow:
        0 8px 28px rgba(10, 35, 62, .08);

    --reach-radius: 10px;

    --reach-max-width: 1180px;
}


/* =========================================================
   02. BASIC OJS RESET
========================================================= */

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--reach-bg);
    color: var(--reach-text);
    font-family:
        "Inter",
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
    font-size: 15px;
    line-height: 1.65;
}

a {
    color: var(--reach-blue);
    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease;
}

a:hover {
    color: var(--reach-gold);
}


/* =========================================================
   03. OJS HEADER
========================================================= */

.pkp_structure_head {
    background:
        linear-gradient(
            135deg,
            #071b32 0%,
            #0b2745 58%,
            #123e63 100%
        ) !important;

    border-bottom:
        3px solid var(--reach-gold) !important;
}

.pkp_head_wrapper {
    max-width: var(--reach-max-width);
    margin: 0 auto;
}

.pkp_site_name {
    padding: 30px 0 25px !important;
}

.pkp_site_name a {
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: .2px;
}

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


/* =========================================================
   04. NAVIGATION
========================================================= */

.pkp_navigation_primary_wrapper {
    background: #ffffff !important;
    border-bottom: 1px solid var(--reach-border);
}

.pkp_navigation_primary {
    max-width: var(--reach-max-width);
    margin: 0 auto;
}

.pkp_navigation_primary > li > a {
    padding:
        18px
        16px !important;

    color:
        var(--reach-text) !important;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.pkp_navigation_primary > li > a:hover,
.pkp_navigation_primary > li > a:focus {
    color:
        var(--reach-blue) !important;

    background:
        rgba(22, 78, 120, .04);
}


/* =========================================================
   05. MAIN CONTENT
========================================================= */

.pkp_structure_content {
    max-width: var(--reach-max-width);
    margin: 0 auto;
}

.pkp_page_index .pkp_structure_content {
    padding-top: 34px;
    padding-bottom: 42px;
}

.pkp_structure_main {
    min-width: 0;
}


/* =========================================================
   06. SIDEBAR
========================================================= */

.pkp_structure_sidebar {
    padding-left: 26px;
}

.pkp_block {
    margin-bottom: 22px;
    padding: 20px !important;

    background: var(--reach-white);

    border:
        1px solid var(--reach-border);

    border-radius:
        var(--reach-radius);

    box-shadow:
        var(--reach-shadow);
}

.pkp_block .title {
    margin-bottom: 14px !important;

    color:
        var(--reach-navy) !important;

    font-size: 14px !important;
    font-weight: 800 !important;

    text-transform: uppercase;
    letter-spacing: .4px;
}


/* =========================================================
   07. PAGE TITLES
========================================================= */

.page_title,
.current_issue_title {
    color: var(--reach-navy);
    font-weight: 800;
    letter-spacing: -.2px;
}

h1,
h2,
h3,
h4 {
    color: var(--reach-navy);
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 19px;
}


/* =========================================================
   08. BUTTONS
========================================================= */

.cmp_button,
.pkp_button,
button,
input[type="submit"] {
    border-radius: 6px !important;
    border: 1px solid var(--reach-blue) !important;

    background:
        var(--reach-blue) !important;

    color:
        #ffffff !important;

    font-weight: 700 !important;
}

.cmp_button:hover,
.pkp_button:hover,
button:hover,
input[type="submit"]:hover {
    background:
        var(--reach-navy) !important;

    border-color:
        var(--reach-navy) !important;
}


/* =========================================================
   09. HOMEPAGE SECTIONS
========================================================= */

.reach-homepage,
.reach-section {
    max-width: var(--reach-max-width);
    margin: 0 auto;
}

.reach-hero {
    position: relative;
    overflow: hidden;

    margin-bottom: 38px;
    padding: 58px 55px;

    background:
        linear-gradient(
            135deg,
            #071b32,
            #0b2745 62%,
            #164e78
        );

    border-radius: 0 0 12px 12px;
    color: #ffffff;
}

.reach-hero::after {
    content: "";
    position: absolute;

    width: 280px;
    height: 280px;

    right: -100px;
    top: -110px;

    border:
        1px solid rgba(224,189,79,.25);

    border-radius: 50%;
}

.reach-hero h1,
.reach-hero h2,
.reach-hero p {
    position: relative;
    z-index: 2;
}

.reach-hero h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 800;
    letter-spacing: -.8px;
}

.reach-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 16px;
}


/* =========================================================
   10. ARTICLE CARDS
========================================================= */

.obj_article_summary {
    margin-bottom: 18px !important;
    padding: 22px !important;

    background: #ffffff;

    border:
        1px solid var(--reach-border);

    border-radius:
        var(--reach-radius);

    box-shadow:
        0 5px 18px rgba(10,35,62,.045);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.obj_article_summary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(10,35,62,.09);
}

.obj_article_summary .title a {
    color: var(--reach-navy) !important;
    font-weight: 750;
}

.obj_article_summary .authors {
    color: var(--reach-muted);
    font-size: 13px;
}


/* =========================================================
   11. CURRENT ISSUE
========================================================= */

.current_issue {
    background: transparent;
}

.current_issue .issue_description {
    padding: 22px;

    background: #ffffff;

    border:
        1px solid var(--reach-border);

    border-radius:
        var(--reach-radius);
}


/* =========================================================
   12. SEARCH
========================================================= */

.pkp_search {
    margin-left: auto;
}

.pkp_search button {
    background: transparent !important;
    border: 0 !important;
    color: var(--reach-navy) !important;
}


/* =========================================================
   13. COMPACT PROFESSIONAL FOOTER
   IMPORTANT:
   This section fixes the overly tall footer.
========================================================= */

.pkp_structure_footer_wrapper {
    margin-top: 0 !important;
    padding: 0 !important;

    border-top:
        3px solid var(--reach-gold) !important;

    background:
        var(--reach-navy-deep) !important;

    min-height: 0 !important;
    height: auto !important;
}


/* Remove accidental full-height / large spacing */

.pkp_structure_footer,
.pkp_structure_footer_wrapper,
.pkp_footer_content,
.pkp_footer {
    min-height: 0 !important;
    height: auto !important;
}


/* OJS footer content */

.pkp_structure_footer {
    padding: 0 !important;
}

.pkp_footer_content {
    max-width: var(--reach-max-width);

    margin: 0 auto !important;

    padding:
        34px 20px 28px !important;
}


/* =========================================================
   14. REACH CUSTOM FOOTER
========================================================= */

.reach-footer {
    width: 100%;
    margin: 0;
    padding: 0;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #071b32 0%,
            #0b2745 70%,
            #103a5c 100%
        );
}


/* Main footer area */

.reach-footer-main {
    margin: 0 !important;

    padding:
        38px 0 30px !important;

    background: transparent !important;
}


/* Footer container */

.reach-footer-container {
    width:
        min(
            var(--reach-max-width),
            calc(100% - 40px)
        );

    margin: 0 auto;
}


/* Footer grid */

.reach-footer-main
.reach-footer-container {

    display: grid;

    grid-template-columns:
        1.6fr
        .85fr
        .85fr
        1fr;

    gap: 42px;

    align-items: start;
}


/* =========================================================
   15. FOOTER BRAND
========================================================= */

.reach-footer-brand {
    max-width: 390px;
}

.reach-footer-logo {
    margin: 0 0 8px;

    color:
        rgba(255,255,255,.08);

    font-size: 44px;
    line-height: 1;
    font-weight: 900;

    letter-spacing: 5px;
}

.reach-footer-brand h2 {
    margin: 0 0 9px;

    color: #ffffff;

    font-size: 17px;
    line-height: 1.4;
    font-weight: 750;
}

.reach-footer-brand p {
    margin: 0;

    color:
        rgba(255,255,255,.62);

    font-size: 12px;
    line-height: 1.65;
}


/* University */

.reach-footer-university {
    margin-top: 16px;
    padding-left: 12px;

    border-left:
        2px solid var(--reach-gold);
}

.reach-footer-university strong {
    display: block;

    color: #ffffff;

    font-size: 10px;
    letter-spacing: .9px;
}

.reach-footer-university span {
    display: block;

    margin-top: 2px;

    color:
        rgba(255,255,255,.48);

    font-size: 9px;
}


/* =========================================================
   16. FOOTER COLUMNS
========================================================= */

.reach-footer-column h3 {
    position: relative;

    margin:
        0 0 12px;

    padding-bottom: 8px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .5px;
}

.reach-footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 26px;
    height: 2px;

    background:
        var(--reach-gold);
}


.reach-footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.reach-footer-column li {
    margin: 0;
    padding: 0;
}

.reach-footer-column li a {
    display: block;

    padding:
        4px 0;

    color:
        rgba(255,255,255,.60) !important;

    font-size: 10.5px;

    line-height: 1.45;
}

.reach-footer-column li a::before {
    content: "›";

    margin-right: 6px;

    color:
        var(--reach-gold);
}

.reach-footer-column li a:hover {
    color:
        var(--reach-gold-light) !important;

    padding-left: 3px;
}


/* =========================================================
   17. FOOTER CONTACT
========================================================= */

.reach-footer-contact-item {
    display: flex;

    gap: 9px;

    margin-bottom: 11px;
}

.reach-footer-icon {
    flex:
        0 0 24px;

    width: 24px;
    height: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(201,162,39,.42);

    border-radius: 50%;

    color:
        var(--reach-gold-light);

    font-size: 10px;
}

.reach-footer-contact-item strong {
    display: block;

    margin-bottom: 1px;

    color: #ffffff;

    font-size: 9.5px;
}

.reach-footer-contact-item a,
.reach-footer-contact-item span {
    color:
        rgba(255,255,255,.58) !important;

    font-size: 10px;

    line-height: 1.45;
}


/* =========================================================
   18. FOOTER DIVIDER
========================================================= */

.reach-footer-divider {
    width: 100%;
    height: 2px;

    background:
        var(--reach-gold);
}


/* =========================================================
   19. FOOTER BOTTOM
========================================================= */

.reach-footer-bottom {
    background:
        rgba(0,0,0,.16);
}

.reach-footer-bottom-inner {
    min-height: 0 !important;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding:
        15px 0 !important;
}

.reach-footer-copyright {
    color:
        rgba(255,255,255,.45);

    font-size: 9.5px;

    line-height: 1.5;
}

.reach-footer-copyright strong {
    color:
        rgba(255,255,255,.68);
}

.reach-footer-legal {
    display: flex;

    align-items: center;

    gap: 7px;

    white-space: nowrap;
}

.reach-footer-legal a {
    color:
        rgba(255,255,255,.52) !important;

    font-size: 9.5px;
}

.reach-footer-legal a:hover {
    color:
        var(--reach-gold-light) !important;
}

.reach-footer-legal span {
    color:
        var(--reach-gold);
}


/* =========================================================
   20. HIDE UNNECESSARY DEFAULT OJS FOOTER SPACE
========================================================= */

.pkp_brand_footer {
    padding:
        10px 20px !important;

    background:
        #06162a !important;

    border-top:
        1px solid rgba(255,255,255,.06);
}

.pkp_brand_footer a {
    opacity: .55;
}


/* =========================================================
   21. TABLET
========================================================= */

@media (max-width: 991px) {

    .reach-footer-main
    .reach-footer-container {

        grid-template-columns:
            1.4fr
            1fr
            1fr;

        gap: 30px;
    }

    .reach-footer-brand {
        grid-column: 1 / -1;
        max-width: 650px;
    }

    .pkp_structure_sidebar {
        padding-left: 0;
    }
}


/* =========================================================
   22. MOBILE
========================================================= */

@media (max-width: 700px) {

    .pkp_site_name {
        padding:
            22px 15px !important;
    }

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

    .reach-hero {
        padding:
            40px 25px;
    }

    .reach-footer-main {
        padding:
            30px 0 24px !important;
    }

    .reach-footer-main
    .reach-footer-container {

        grid-template-columns:
            1fr;

        gap: 25px;
    }

    .reach-footer-brand {
        grid-column: auto;
    }

    .reach-footer-logo {
        font-size: 36px;
    }

    .reach-footer-bottom-inner {
        flex-direction: column;

        align-items: flex-start;

        padding:
            13px 0 !important;
    }

    .reach-footer-legal {
        flex-wrap: wrap;
        white-space: normal;
    }

}


/* =========================================================
   23. VERY SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .reach-footer-container {
        width:
            calc(100% - 28px);
    }

    .reach-footer-brand h2 {
        font-size: 15px;
    }

    .reach-footer-brand p {
        font-size: 11px;
    }

}


/* =========================================================
   REACH SIDEBAR ADD-ON
   ---------------------------------------------------------
   Hanya mengubah tampilan .reach-sidebar.
   Tidak mengubah layout utama, header, navigation,
   homepage, atau footer dari Sheet-V2-Professional.css.
   ========================================================= */

.reach-sidebar {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
}

/* Card utama */
.reach-sidebar-box,
.reach-sidebar-card {
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #dfe5ec;
    border-radius: 10px;

    box-shadow: 0 7px 22px rgba(10, 35, 62, .08);
}

/* Judul sidebar */
.reach-sidebar-heading,
.reach-sidebar-title {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 54px;
    margin: 0;
    padding: 0 16px;

    color: #ffffff !important;

    background: linear-gradient(
        135deg,
        #071b32 0%,
        #0b2745 58%,
        #164e78 100%
    ) !important;

    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.4;

    letter-spacing: .45px;
    text-transform: uppercase;
}

/* Garis gold bawah */
.reach-sidebar-heading::after,
.reach-sidebar-title::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: #c9a227;
}

/* Garis gold kecil di kiri */
.reach-sidebar-heading::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

    background: #c9a227;
}

/* Icon judul jika digunakan */
.reach-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 27px;
    min-width: 27px;
    height: 27px;

    margin-right: 8px;

    color: #e0bd4f !important;
    font-size: 18px;
}

/* List */
.reach-sidebar-menu,
.reach-sidebar-links {
    margin: 0 !important;
    padding: 6px 0 !important;

    list-style: none !important;
}

.reach-sidebar-menu li,
.reach-sidebar-links li {
    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

/* Link */
.reach-sidebar-menu li a,
.reach-sidebar-links li a {
    position: relative;

    display: flex !important;
    align-items: center;

    width: auto;
    min-height: 44px;

    margin: 0 !important;
    padding: 8px 14px !important;

    gap: 10px;

    color: #173b5b !important;
    background: #ffffff !important;

    border-bottom: 1px solid #e8edf1;

    font-size: 12.5px !important;
    font-weight: 550;
    line-height: 1.35;

    text-decoration: none !important;

    transition:
        color .22s ease,
        background .22s ease,
        padding-left .22s ease,
        box-shadow .22s ease;
}

.reach-sidebar-menu li:last-child a,
.reach-sidebar-links li:last-child a {
    border-bottom: none;
}

/* Icon menu */
.reach-sidebar-menu .icon,
.reach-sidebar-links .reach-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    min-width: 25px;
    height: 25px;

    color: #c9a227 !important;

    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

/* Arrow jika digunakan */
.reach-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-left: auto;

    color: #9aa7b3;
    font-size: 19px;
    line-height: 1;

    transition:
        color .22s ease,
        transform .22s ease;
}

/* =========================================================
   HOVER
   ---------------------------------------------------------
   Saat cursor diarahkan ke menu:
   seluruh baris berubah menjadi navy,
   teks menjadi putih,
   dan muncul aksen gold di kiri.
   ========================================================= */

.reach-sidebar-menu li a:hover,
.reach-sidebar-links li a:hover {
    padding-left: 19px !important;

    color: #ffffff !important;

    background: linear-gradient(
        90deg,
        #0b3557 0%,
        #124b78 100%
    ) !important;

    box-shadow: inset 4px 0 0 #c9a227;
}

.reach-sidebar-menu li a:hover .icon,
.reach-sidebar-links li a:hover .reach-icon {
    color: #e0bd4f !important;
}

.reach-sidebar-links li a:hover .reach-arrow {
    color: #e0bd4f;
    transform: translateX(3px);
}

/* Menu aktif */
.reach-sidebar-menu li a.active,
.reach-sidebar-links li a.active {
    color: #ffffff !important;

    background: linear-gradient(
        90deg,
        #0b3557 0%,
        #124b78 100%
    ) !important;

    box-shadow: inset 4px 0 0 #c9a227;
}

.reach-sidebar-menu li a.active .icon,
.reach-sidebar-links li a.active .reach-icon {
    color: #e0bd4f !important;
}

/* =========================================================
   AUTHOR SECTION
   ========================================================= */

.reach-author-card {
    border-color: #dfcfaa;
}

.reach-author-title {
    color: #102b43 !important;

    background: linear-gradient(
        135deg,
        #c9982e 0%,
        #dfb653 100%
    ) !important;
}

.reach-author-title::after {
    background: #0b2947;
}

.reach-author-title .reach-title-icon {
    color: #102b43 !important;
}

.reach-author-card .reach-sidebar-links li a {
    color: #263d50 !important;
    background: #fffdf8 !important;
}

.reach-author-card .reach-sidebar-links li a:hover {
    color: #102b43 !important;
    background: #f5ead1 !important;

    box-shadow: inset 4px 0 0 #b98722;
}

.reach-author-card .reach-icon {
    color: #b88722 !important;
}

/* =========================================================
   SIDEBAR INFORMATION / METADATA
   ========================================================= */

.reach-sidebar-info,
.reach-metadata {
    margin: 0;
    padding: 7px 15px 10px;

    background: #ffffff;
}

.reach-info-item,
.reach-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding: 9px 2px;

    border-bottom: 1px solid #edf0f3;
}

.reach-info-item:last-child,
.reach-meta-row:last-child {
    border-bottom: none;
}

.reach-info-label,
.reach-meta-row span {
    color: #788794;
    font-size: 11px;
    font-weight: 500;
}

.reach-info-item strong,
.reach-meta-row strong {
    color: #173b5b;

    font-size: 11px;
    font-weight: 700;

    text-align: right;
}

/* =========================================================
   INDEXING LIST
   ========================================================= */

.reach-indexing-list {
    margin: 0 !important;
    padding: 7px 15px 10px !important;

    list-style: none !important;
}

.reach-indexing-list li {
    display: flex;
    align-items: center;

    min-height: 38px;
    padding: 5px 2px;

    color: #40576b;
    font-size: 11.5px;

    border-bottom: 1px solid #edf0f3;
}

.reach-indexing-list li:last-child {
    border-bottom: none;
}

.reach-index-dot {
    display: inline-block;

    width: 7px;
    min-width: 7px;
    height: 7px;

    margin-right: 10px;

    background: #c9a227;
    border-radius: 50%;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .reach-sidebar-box,
    .reach-sidebar-card {
        margin-bottom: 16px;
    }

    .reach-sidebar-heading,
    .reach-sidebar-title {
        min-height: 52px;
    }

    .reach-sidebar-menu li a,
    .reach-sidebar-links li a {
        min-height: 43px;
        font-size: 12px !important;
    }
}

@media (max-width: 700px) {

    .reach-sidebar {
        width: 100%;
    }

    .reach-sidebar-heading,
    .reach-sidebar-title {
        min-height: 50px;
        padding: 0 14px;

        font-size: 12px !important;
    }

    .reach-sidebar-menu li a,
    .reach-sidebar-links li a {
        min-height: 42px;
        padding: 8px 12px !important;
    }

    .reach-sidebar-menu li a:hover,
    .reach-sidebar-links li a:hover {
        padding-left: 16px !important;
    }
}

/* =========================================================
   END REACH SIDEBAR ADD-ON
   ========================================================= */
/* =========================================================
   REACH JOURNAL — FOOTER DESIGN OVERRIDE
   Minimal • Professional • Academic
   ========================================================= */


/* ---------------------------------------------------------
   1. FOOTER UTAMA
   --------------------------------------------------------- */

.reach-footer {
    width: 100% !important;
    margin: 28px 0 0 !important;
    padding: 0 !important;

    background:
        linear-gradient(
            135deg,
            #071b32 0%,
            #0b2745 55%,
            #103d61 100%
        ) !important;

    color: #dbe5ef !important;

    border-top: 3px solid #c9a227 !important;

    box-sizing: border-box !important;
}


/* ---------------------------------------------------------
   2. AREA UTAMA FOOTER
   --------------------------------------------------------- */

.reach-footer-inner {
    width: min(1180px, calc(100% - 48px)) !important;

    min-height: 145px !important;

    margin: 0 auto !important;
    padding: 30px 0 26px !important;

    display: grid !important;

    grid-template-columns: 1.5fr 1fr !important;

    align-items: center !important;

    column-gap: 80px !important;

    box-sizing: border-box !important;
}


/* ---------------------------------------------------------
   3. NAMA / BRAND JOURNAL
   --------------------------------------------------------- */

.reach-footer-brand {
    max-width: 600px !important;
    margin: 0 !important;
}


.reach-footer-logo {
    margin: 0 0 7px !important;

    color: #ffffff !important;

    font-size: 28px !important;

    line-height: 1 !important;

    font-weight: 800 !important;

    letter-spacing: 3px !important;
}


.reach-footer-journal {
    margin: 0 !important;

    color: rgba(255,255,255,.72) !important;

    font-size: 12px !important;

    line-height: 1.55 !important;

    font-weight: 500 !important;
}


.reach-footer-university {
    display: inline-block !important;

    margin-top: 12px !important;

    padding-left: 10px !important;

    color: #e0bd4f !important;

    border-left: 2px solid #c9a227 !important;

    font-size: 10px !important;

    line-height: 1.35 !important;

    font-weight: 800 !important;

    letter-spacing: .9px !important;

    text-transform: uppercase !important;
}


/* ---------------------------------------------------------
   4. QUICK LINKS
   --------------------------------------------------------- */

.reach-footer-links {
    margin: 0 !important;

    padding-left: 30px !important;

    border-left: 1px solid rgba(255,255,255,.12) !important;

    text-align: left !important;
}


.reach-footer-title {
    margin: 0 0 9px !important;

    color: #e0bd4f !important;

    font-size: 10px !important;

    line-height: 1.3 !important;

    font-weight: 800 !important;

    letter-spacing: 1.3px !important;
}


.reach-footer-link-row {
    display: flex !important;

    align-items: center !important;

    justify-content: flex-start !important;

    flex-wrap: wrap !important;

    gap: 7px !important;

    margin: 4px 0 !important;

    color: rgba(255,255,255,.35) !important;

    font-size: 10.5px !important;

    line-height: 1.5 !important;
}


.reach-footer-link-row a {
    color: rgba(255,255,255,.72) !important;

    text-decoration: none !important;

    transition:
        color .2s ease,
        transform .2s ease !important;
}


.reach-footer-link-row a:hover {
    color: #e0bd4f !important;

    transform: translateY(-1px);
}


/* ---------------------------------------------------------
   5. COPYRIGHT BAR
   --------------------------------------------------------- */

.reach-footer-bottom {
    width: 100% !important;

    min-height: 42px !important;

    margin: 0 !important;

    padding: 0 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    background: rgba(3,13,27,.42) !important;

    border-top: 1px solid rgba(255,255,255,.09) !important;

    box-sizing: border-box !important;
}


.reach-footer-bottom > div {
    margin: 0 !important;
}


.reach-footer-bottom > div:first-child {
    margin-left:
        max(24px, calc((100% - 1180px) / 2)) !important;

    padding: 10px 0 !important;

    color: rgba(255,255,255,.48) !important;

    font-size: 9.5px !important;

    line-height: 1.4 !important;
}


.reach-footer-bottom strong {
    color: rgba(255,255,255,.72) !important;

    font-weight: 700 !important;
}


.reach-footer-platform {
    margin-right:
        max(24px, calc((100% - 1180px) / 2)) !important;

    padding: 10px 0 !important;

    color: rgba(255,255,255,.40) !important;

    font-size: 9px !important;

    line-height: 1.4 !important;
}


/* ---------------------------------------------------------
   6. HAPUS JARAK BERLEBIH DI DALAM FOOTER
   --------------------------------------------------------- */

.reach-footer p {
    margin-top: 0 !important;

    margin-bottom: 0 !important;
}


.reach-footer ul,
.reach-footer ol {
    margin-top: 0 !important;

    margin-bottom: 0 !important;
}


/* ---------------------------------------------------------
   7. OJS / PKP DEFAULT FOOTER
   --------------------------------------------------------- */

.pkp_brand_footer {
    min-height: 0 !important;

    margin: 0 !important;

    padding: 6px 15px !important;

    background: #06162a !important;

    border-top: 1px solid rgba(255,255,255,.05) !important;

    box-sizing: border-box !important;

    font-size: 8px !important;
}


.pkp_brand_footer a {
    opacity: .40 !important;
}


/* ---------------------------------------------------------
   8. TABLET
   --------------------------------------------------------- */

@media (max-width: 991px) {

    .reach-footer-inner {

        width:
            min(100% - 36px, 760px) !important;

        grid-template-columns:
            1fr !important;

        row-gap: 20px !important;

        padding:
            26px 0 23px !important;
    }


    .reach-footer-links {

        padding-left: 0 !important;

        padding-top: 16px !important;

        border-left: 0 !important;

        border-top:
            1px solid rgba(255,255,255,.12) !important;
    }


    .reach-footer-bottom > div:first-child {

        margin-left: 18px !important;
    }


    .reach-footer-platform {

        margin-right: 18px !important;
    }
}


/* ---------------------------------------------------------
   9. MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {

    .reach-footer {

        margin-top: 20px !important;
    }


    .reach-footer-inner {

        width:
            calc(100% - 30px) !important;

        min-height: 0 !important;

        padding:
            23px 0 20px !important;
    }


    .reach-footer-logo {

        font-size: 24px !important;

        letter-spacing: 2.5px !important;
    }


    .reach-footer-journal {

        font-size: 11px !important;
    }


    .reach-footer-university {

        font-size: 9px !important;
    }


    .reach-footer-link-row {

        font-size: 10px !important;
    }


    .reach-footer-bottom {

        align-items: flex-start !important;

        flex-direction: column !important;
    }


    .reach-footer-bottom > div:first-child {

        margin-left: 15px !important;

        padding:
            8px 0 2px !important;
    }


    .reach-footer-platform {

        margin-right: 0 !important;

        margin-left: 15px !important;

        padding:
            2px 0 8px !important;
    }
}


/* =========================================================
   END REACH FOOTER
   ========================================================= */