/* === 1. Konsistenkan dan stilkan tombol utama */
a[idx="currentIssue"],
a[idx="viewJournal"],
a.button.widget {
  background-color: #165073 !important;
  color: #fff !important;
  border: none !important;
  padding: 12px 30px !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin: 0 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover effect */
a[idx="currentIssue"]:hover,
a[idx="viewJournal"]:hover,
a.button.widget:hover {
  background-color: #14415c !important;
  transform: scale(1.05);
  color: #ffd54f !important;
}

/* Pastikan terlihat konsisten */
a[idx="currentIssue"],
a[idx="viewJournal"],
a.button.widget {
  background-image: none !important;
  box-shadow: none !important;
}

/* Atur layout tombol agar berbaris sejajar */
.widget .btn-group {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 15px;
}

/* === 2. Tulisan CV. Vidya Subhaga – tepiping lebih elegan & mencolok === */
.site-branding .site-title,
.header-title h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  color: #2e7d32; /* hijau segar */
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
  margin: 10px 0;
  letter-spacing: 1px;
}

/* === Custom Footer Styling === */
.custom-footer {
  background-color: #165073;
  color: #fff;
  padding: 40px 0;
  font-size: 14px;
}

.custom-footer h4 {
  font-size: 16px;
  color: #ffd54f;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
}

.custom-footer p,
.custom-footer a {
  color: #f0f0f0;
  text-decoration: none;
}

.custom-footer a:hover {
  color: #ffd54f;
  text-decoration: underline;
}

.custom-footer ul {
  list-style: none;
  padding: 0;
  columns: 2;
  column-gap: 20px;
}

.custom-footer ul li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .custom-footer {
    text-align: center;
  }

  .custom-footer ul {
    columns: 1;
  }

  .custom-footer .row > div {
    margin-bottom: 25px;
  }
}