/*
Welcome to Custom CSS!

To learn how this works, see https://wp.me/PEmnE-Bt
*/
/* =========================
   HILANGKAN underline di logo "Hadi Nur"
   ========================= */
.site-title a,
.site-title a:hover,
.site-title a:focus,
.site-title a:visited {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background: none !important;
}

/* Matikan underline dari pseudo element */
.site-title a::before,
.site-title a::after {
  content: none !important;
  display: none !important;
}

/* =========================
   LINK DI KONTEN → 1 underline normal saja
   ========================= */
.entry-content a {
  text-decoration: underline;
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

.entry-content a::before,
.entry-content a::after {
  content: none !important;
  display: none !important;
}
/* =========================
   HILANGKAN underline pada teks BUTTON / MENU
   ========================= */
button,
button a,
.wp-block-button a,
.wp-block-button__link,
.menu a,
.nav-menu a {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

button a::before,
button a::after,
.wp-block-button a::before,
.wp-block-button a::after {
  content: none !important;
  display: none !important;
}
/* =========================
   MINIMAL ACADEMIC FOOTER
   ========================= */

.site-info {
  font-size: 0;
  text-align: center;
  padding: 20px 0 32px 0;  /* ruang bawah diperbesar */
  margin-top: 16px;
}

/* identitas utama */
.site-info::before {
  content: "© Hadi Nur";
  display: block;
  font-size: 14px;
  color: #444;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}

/* informasi akademik */
.site-info::after {
  content: "Professor of Chemistry — Universitas Negeri Malang\A Materials Chemistry | Science & Education\A Sharing reflections, research, and academic resources since 1999.";
  display: block;
  white-space: pre-line;
  font-size: 12px;
  line-height: 1.8;
  color: #777;
}