.page_editorial_team h1 {
  display: none;
}

/* ======================================
ROOT COLOR (FT UNPAK BLUE)
====================================== */
:root {
  --primary: #4668c0;
  --primary-hover: #3554a3;
  --primary-light: #eef2ff;
  --text-main: #2c3e50;
  --border: #e0e0e0;
}

/* ======================================
GLOBAL
====================================== */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-main);
  background: #ffffff;
}


/* ======================================
LOGO
====================================== */
.pkp_site_name .is_img img {
  max-height: 160px !important;
  height: auto;
  display: block;
}

/* ======================================
NAV USER (LOGIN AREA)
====================================== */
.pkp_navigation_user_wrapper a {
  color: var(--primary) !important;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: 0.2s;
}

.pkp_navigation_user_wrapper a:hover {
  background: var(--primary-light);
  color: var(--primary-hover) !important;
}

/* ======================================
LINK
====================================== */
a {
  color: var(--primary);
  transition: 0.2s;
}

a:hover {
  color: var(--primary-hover);
}

/* ======================================
SIDEBAR
====================================== */
.pkp_structure_sidebar a {
  text-decoration: none;
}

.pkp_structure_sidebar a:hover {
  text-decoration: underline;
}

/* SIDEBAR CARD EFFECT */
.pkp_structure_sidebar img {
  transition: 0.25s;
}

.pkp_structure_sidebar img:hover {
  transform: scale(1.05);
}

/* MENU ACTIVE STYLE */
#customblock-about-journal a:hover {
  border-left: 3px solid var(--primary);
  background: var(--primary-light);
  padding-left: 10px;
}

/* ======================================
TYPOGRAPHY
====================================== */
h1, h2, h3, h4 {
  color: var(--primary);
  font-weight: 600;
}

/* ======================================
BUTTON
====================================== */
button,
input[type="submit"],
.pkp_button,
.obj_galley_link {
  transition: 0.2s;
}

button:hover,
input[type="submit"]:hover,
.pkp_button:hover,
.obj_galley_link:hover {
  transform: scale(1.03);
}

/* GALLEY BUTTON */
.obj_galley_link {
  background: var(--primary);
  color: #fff !important;
  padding: 5px 12px;
  border-radius: 4px;
}

.obj_galley_link:hover {
  background: var(--primary-hover);
}

/* ======================================
DROPDOWN MENU
====================================== */
.pkp_site_nav_menu .dropdown-menu {
  background: #fff !important;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.pkp_site_nav_menu .dropdown-menu li a {
  color: var(--text-main) !important;
}

.pkp_site_nav_menu .dropdown-menu li a:hover {
  background: var(--primary-light) !important;
  color: var(--primary) !important;
}

/* ======================================
ABOUT JOURNAL (FIX LAYOUT)
====================================== */
.homepage_about img {
  width: 130px !important;
  float: left;
  margin-right: 15px;
  margin-bottom: 10px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.homepage_about p {
  text-align: justify;
  overflow: hidden;
}

/* ======================================
FOOTER (MINIMAL CLEAN)
====================================== */
.pkp_structure_footer_wrapper {
  background: #f5f5f5 !important;
  border-top: 1px solid #ddd;
  padding: 10px 0 !important;
}

.pkp_brand_footer {
  display: none !important;
}

.footer-minimal {
  text-align: center;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.footer-minimal p {
  margin: 3px 0;
}

.footer-minimal a {
  color: var(--primary);
}

.footer-minimal a:hover {
  text-decoration: underline;
}

/* ======================================
REMOVE GAP
====================================== */
.pkp_structure_content,
.pkp_structure_page,
.pkp_structure_main {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* ======================================
CONTACT PAGE (MODERN FT STYLE)
====================================== */

/* title */
.page_contact h1 {
  text-align: center;
  color: #4668c0;
  margin-bottom: 20px;
}

/* wrapper utama */
.page_contact .contact_section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* card contact */
.page_contact .contact {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: 0.2s;
}

/* hover effect */
.page_contact .contact:hover {
  transform: translateY(-3px);
}

/* judul section */
.page_contact .contact h3 {
  color: #4668c0;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
}

/* nama */
.page_contact .name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 5px;
}

/* afiliasi */
.page_contact .affiliation {
  color: #666;
  margin-bottom: 8px;
}

/* label (Phone dll) */
.page_contact .label {
  font-weight: 500;
  color: #4668c0;
  margin-right: 5px;
}

/* value */
.page_contact .value {
  color: #333;
}

/* email */
.page_contact .email a {
  color: #4668c0;
  text-decoration: none;
}

.page_contact .email a:hover {
  text-decoration: underline;
}

/* spacing antar item */
.page_contact .phone,
.page_contact .email {
  margin-top: 6px;
}

/* ======================================
RESPONSIVE
====================================== */
@media (max-width: 768px) {
  .pkp_site_name .is_img img {
    max-height: 110px !important;
    margin: auto;
  }

  .pkp_navigation_user_wrapper {
    text-align: center;
    margin-top: 10px;
  }

  .homepage_about img {
    float: none;
    display: block;
    margin: 0 auto 10px auto;
  }
}