.page_editorial_team h1 {
  display: none;
}

/* hide original title */
.page_about h1 {
  font-size: 0;
}

/* new title */
.page_about h1::after {
  content: "About the Conference";

  font-size: 2rem;

  font-weight: 700;

  color: #222;
}

/* hide original homepage title */
.homepage_about h2 {
  font-size: 0;
}

.homepage_about h2::after {
  content: "About the Conference";

  font-size: 1.8rem;

  font-weight: 700;

  color: #222;
}

/* ====== BASE (DESKTOP) ====== */
.pkp_site_name {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pkp_site_name > a {
  padding-top: 0;
  padding-bottom: 0;
}

/* Logo */
.pkp_site_name .is_img img {
  max-height: 200px !important;
  max-width: 100%; /* penting utk responsive */
  height: auto;
  width: auto;
  display: block;
}

/* Wrapper nama situs */
.pkp_site_name_wrapper {
  padding-left: 0;
  padding-right: 0;
}

/* User navigation (login, dll) */
.pkp_navigation_user_wrapper {
  top: 0;
  right: 0;
  padding-right: 30px;
}

/* Struktur halaman */
.pkp_structure_page {
  margin-top: 20px !important;
  margin-bottom: 20px !important; /* tambahkan px */
  padding-bottom: 20px !important; /* tambahkan px */
}

/* ====== TABLET (â‰¤ 992px) ====== */
@media (max-width: 992px) {
  .pkp_site_name .is_img img {
    max-height: 160px !important;
  }

  .pkp_navigation_user_wrapper {
    padding-right: 15px;
  }

  .pkp_structure_page {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    padding-bottom: 15px !important;
  }
}

/* ====== HP / SMALL TABLET (â‰¤ 768px) ====== */
@media (max-width: 768px) {
  /* Logo & title ditengah */
  .pkp_site_name_wrapper {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }

  .pkp_site_name .is_img img {
    margin: 0 auto;
    max-height: 120px !important;
  }

  /* Menu user turun ke bawah & center,
     supaya tidak numpuk dengan logo */
  .pkp_navigation_user_wrapper {
    position: static; /* lepas dari posisi kanan atas */
    padding-right: 0;
    margin-top: 10px;
    text-align: center;
  }

  .pkp_structure_page {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    padding-bottom: 10px !important;
  }
}

/* ====== HP KECIL (â‰¤ 480px) ====== */
@media (max-width: 480px) {
  .pkp_site_name .is_img img {
    max-height: 90px !important;
  }

  .pkp_site_name_wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pkp_structure_page {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
    padding-bottom: 8px !important;
  }
}


/* ======================================
GLOBAL
====================================== */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-main);
  background: #ffffff;
}

/* ======================================
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);
}

/* ======================================
FECS INFORMATION BLOCK
====================================== */

.fecs-info-box {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

/* header */
.fecs-info-header {
  background: #2253AE;
  color: #ffffff;

  padding: 10px;

  font-weight: bold;
  text-align: center;

  border-radius: 4px 4px 0 0;
}

/* content wrapper */
.fecs-info-content {
  border: 1px solid #d9d9d9;
  border-top: none;

  border-radius: 0 0 4px 4px;

  overflow: hidden;

  background: #ffffff;
}

/* links */
.fecs-info-content a {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 12px;

  text-decoration: none;

  color: #333;

  border-bottom: 1px solid #e6e6e6;

  transition: 0.2s;
}

/* icon */
.fecs-info-content a::before {
  font-size: 14px;
  color: #2253AE;
}

/* icon per item */
.fecs-info-content a:nth-child(1)::before {
  content: "📝";
}

.fecs-info-content a:nth-child(2)::before {
  content: "📄";
}

.fecs-info-content a:nth-child(3)::before {
  content: "🎥";
}

.fecs-info-content a:nth-child(4)::before {
  content: "📤";
}

.fecs-info-content a:nth-child(5)::before {
  content: "💳";
}

.fecs-info-content a:nth-child(6)::before {
  content: "🔍";
}

/* last item */
.fecs-info-content a:last-child {
  border-bottom: none;
}

/* hover effect */
.fecs-info-content a:hover {
  border-left: 3px solid #2253AE;

  background: #e9f0ff;

  padding-left: 9px;
 
  color: #333;

  text-decoration: none !important;
}

/* hover icon */
.fecs-info-content a:hover::before {
  transform: scale(1.05);
}
/* ======================================
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);
}

/* ======================================
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_page,
.pkp_structure_main {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* keep footer spacing */
.pkp_structure_content {
  margin-bottom: 0 !important;

  padding-bottom: 45px !important;
}

/* ======================================
CONTACT PAGE (MODERN FT STYLE)
====================================== */

/* title */
.page_contact h1 {
  text-align: center;
  color: #2253AE;
  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 #2253AE;
  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: #2253AE;
  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: #2253AE;
  margin-right: 5px;
}

/* value */
.page_contact .value {
  color: #333;
}

/* email */
.page_contact .email a {
  color: #2253AE;
  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;
  }
}

/* Hover judul artikel jurnal */
.obj_article_summary .title a {
  text-decoration: none;
  transition: 0.2s;
}

.obj_article_summary .title a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* icon pdf */

/* PDF button default */
.obj_galley_link {
  background: #ffffff;
  color: var(--text-main) !important;
  border: 1px solid var(--primary);
  padding: 5px 12px;
  border-radius: 4px;
  transition: 0.2s;
}

/* Hover effect */
.obj_galley_link:hover {
  background: var(--primary);
  color: #ffffff !important;
  transform: scale(1.03);
}


/* DOI dan Issue link */
/* ======================================
ARTICLE LINKS (PROFESSIONAL STYLE)
====================================== */

/* DOI, Issue, Copyright, References */
.item.doi a,
.item.issue a,
.item.copyright a,
.item.references a,
.citation_formats a,
.csl-entry a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: 0.2s;
}

/* Hover effect */
.item.doi a:hover,
.item.issue a:hover,
.item.copyright a:hover,
.item.references a:hover,
.citation_formats a:hover,
.csl-entry a:hover {
  color: var(--primary-hover);
  text-decoration-thickness: 2px;
}

/* ======================================
ABOUT JOURNAL LINKS
====================================== */

.page_about a,
.homepage_about a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: 0.2s;
}

.page_about a:hover,
.homepage_about a:hover {
  color: var(--primary-hover);
  text-decoration-thickness: 2px;
}

/* Archives issue link */
.page_issue_archive .obj_issue_summary .title {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: 0.2s;
}

.page_issue_archive .obj_issue_summary .title:hover {
  color: var(--primary-hover);
  text-decoration-thickness: 2px;
}

/* ======================================
MOST READ ARTICLES LINK
====================================== */

#articlesBySameAuthorList a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: 0.2s;
}

/* hover */
#articlesBySameAuthorList a:hover {
  color: var(--primary-hover);
  text-decoration-thickness: 2px;
}

/* REFERENCES */
.item.references .value p,
.item.references .value a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

/* khusus link panjang */
.item.references .value a {
    display: inline-block;
    max-width: 100%;
}

/* ======================================
INFORMATION & ANNOUNCEMENT BLOCK
====================================== */

/* title kapital awal */
.block_information .title,
.block_announcement_feed .title {
  text-transform: capitalize !important;
}

/* garis bawah biru */
.block_information .title::after,
.block_announcement_feed .title::after {
  background: #2253AE !important;
}

/* border bawah title */
.block_information .title,
.block_announcement_feed .title {
  border-color: #2253AE !important;
}
/* ======================================
FOOTER LINK STYLE
====================================== */

/* footer links */
.pkp_footer_content a {
  color: var(--primary);

  text-decoration: underline;

  text-underline-offset: 2px;

  transition: 0.2s;
}

/* hover effect */
.pkp_footer_content a:hover {
  color: var(--primary-hover);

  text-decoration-thickness: 2px;
}

/* ======================================
COMPACT PROFESSIONAL TOP NAVIGATION
====================================== */

/* wrapper */
.pkp_navigation_primary_wrapper {
  display: flex;
  align-items: center;
}

/* menu */
.pkp_navigation_primary {
  display: flex !important;

  flex-wrap: nowrap !important;

  align-items: center;

  gap: 0 !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* item */
.pkp_navigation_primary > li {
  white-space: nowrap;
}

/* links */
.pkp_navigation_primary > li > a {
  font-size: 12px !important;

  font-weight: 600 !important;

  text-transform: none !important;

  letter-spacing: 0 !important;

  padding: 14px 7px !important;

  color: #555 !important;

  transition: 0.2s;
}

/* hover */
.pkp_navigation_primary > li > a:hover {
  color: #2253AE !important;

  text-decoration: none;
}

/* active menu */
.pkp_navigation_primary > li.current > a {
  color: #2253AE !important;

  font-weight: 700 !important;
}

/* search */
.pkp_navigation_search_wrapper {
  margin-left: auto;

  white-space: nowrap;
}

/* search text */
.pkp_search {
  font-size: 12px !important;

  font-weight: 600 !important;

  text-transform: none !important;

  color: #555 !important;

  transition: 0.2s;
}

/* search hover */
.pkp_search:hover {
  color: #2253AE !important;
}

/* ======================================
TOP REGISTER LOGIN POSITION
====================================== */

.pkp_navigation_user_wrapper {
  margin-top: 23px;
}

.pkp_navigation_user_wrapper a {
  color: #ffffff !important;

  text-decoration: underline !important;

  text-decoration-color: #ffffff !important;

  text-underline-offset: 2px;

  transition: 0.2s;

  background: transparent !important;

  box-shadow: none !important;

  outline: none !important;
}

/* hover */
.pkp_navigation_user_wrapper a:hover {
  color: #ffffff !important;

  text-decoration: underline !important;

  text-decoration-color: #ffffff !important;

  text-decoration-thickness: 2px !important;

  text-underline-offset: 2px;

  background: transparent !important;

  box-shadow: none !important;

  outline: none !important;
}

/* focus / active */
.pkp_navigation_user_wrapper a:focus,
.pkp_navigation_user_wrapper a:active {
  color: #ffffff !important;

  background: transparent !important;

  box-shadow: none !important;

  outline: none !important;
}

/* register login closer */
.pkp_navigation_user {
  gap: 6px !important;
}

/* ======================================
USER DROPDOWN FIX
====================================== */

/* username link */
.pkp_navigation_user_wrapper a[data-toggle="dropdown"] {
  color: #ffffff !important;

  text-decoration: underline !important;

  text-decoration-color: #ffffff !important;

  text-underline-offset: 2px;

  background: transparent !important;

  box-shadow: none !important;

  outline: none !important;
}

/* hover */
.pkp_navigation_user_wrapper a[data-toggle="dropdown"]:hover {
  color: #ffffff !important;

  text-decoration-thickness: 2px !important;

  background: transparent !important;

  box-shadow: none !important;
}

/* dropdown menu */
.pkp_navigation_user_wrapper .dropdown-menu {
  background: #ffffff;

  border-radius: 6px;

  border: 1px solid #d9d9d9;

  box-shadow: 0 4px 14px rgba(0,0,0,0.10);

  min-width: 160px;
}

/* dropdown item */
.pkp_navigation_user_wrapper .dropdown-menu a {
  color: #333 !important;

  text-decoration: none !important;

  padding: 10px 14px;

  display: block;
}

/* dropdown hover */
.pkp_navigation_user_wrapper .dropdown-menu a:hover {
  background: #e9f0ff !important;

  color: #2253AE !important;
}

.homepage_about img {
  max-width: 100%;

  height: auto;

  border-radius: 6px;

  margin-top: 15px;
}