/* Responsive Logo */
/* Default (desktop) */
.pkp_site_name .is_img img {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  width: auto;
}

/* Logo di tablet */
@media (max-width: 992px) {
  .pkp_site_name .is_img img {
    max-height: 100px;
  }
}

/* Logo di HP */
@media (max-width: 576px) {
  .pkp_site_name .is_img img {
    max-height: 30px;
  }
}

/* === dekons Plain Footer === */
.dekons-footer-plain {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #eeeeee;
  padding: 20px 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #000;
  margin-top: 30px;
}

.dekons-footer-left {
  max-width: 70%;
}

.dekons-footer-left img {
  margin: 8px 0;
}

.dekons-footer-left a {
  color: #0066cc;
  text-decoration: none;
}

.dekons-footer-left a:hover {
  text-decoration: underline;
}

.dekons-footer-right {
  text-align: right;
  font-size: 14px;
}

/* ===== Archive Static Page ===== */
.archive-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  color: #524a5a;
}

.archive-page h1 {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 3px solid #daac49;
  padding-bottom: 10px;
}

.archive-intro {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.archive-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.archive-box h2 {
  margin-bottom: 10px;
  color: #524a5a;
}

.archive-button {
  display: inline-block;
  margin: 20px 0;
  padding: 12px 24px;
  background-color: #d43d35;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}

.archive-button:hover {
  background-color: #b8322c;
  transform: translateY(-1px);
}

.archive-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

/* === Make a Submission Button - Custom Theme === */
.block_make_submission_link {
  display: block !important;
  text-align: center !important;
  background-color: #d43d35 !important; /* merah utama */
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 10px rgba(212, 61, 53, 0.35) !important;
  transition: all 0.25s ease !important;
  font-size: 14px !important;
  letter-spacing: 0.4px !important;
  border: 2px solid #d43d35 !important;
}

/* Hover effect */
.block_make_submission_link:hover {
  background-color: #b8322c !important;      /* merah lebih gelap */
  border-color: #daac49 !important;          /* aksen emas */
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 14px rgba(212, 61, 53, 0.45) !important;
}

/* Active (saat diklik) */
.block_make_submission_link:active {
  transform: translateY(0) !important;
  box-shadow: 0 3px 8px rgba(212, 61, 53, 0.3) !important;
}

/* Focus (aksesibilitas) */
.block_make_submission_link:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(218, 172, 73, 0.6), 0 4px 10px rgba(212, 61, 53, 0.35) !important;
}

/* ===== Sidebar Additional Menu Block ===== */
/* ===== Sidebar Additional Menu Block with Title ===== */
.sidebar-additional-menu {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 10px;
  overflow: hidden;
}

/* Judul block */
.sidebar-additional-title {
  background-color: #524a5a; /* abu gelap */
  color: #f6e0aa;            /* krem */
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* List reset */
.sidebar-additional-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-additional-menu li {
  margin-bottom: 6px;
}

.sidebar-additional-menu li:last-child {
  margin-bottom: 0;
}

/* Link style */
.sidebar-additional-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none !important;
  color: #524a5a;
  font-weight: 600;
  background-color: #f6e0aa; /* krem lembut */
  transition: all 0.2s ease-in-out;
}

/* Hover */
.sidebar-additional-menu a:hover {
  background-color: #daac49; /* emas */
  color: #524a5a;
  transform: translateX(3px);
}

/* Active (opsional, kalau mau nanti dikasih class active) */
.sidebar-additional-menu a.active {
  background-color: #d43d35;
  color: #ffffff;
}

/* ===== Editorial Board Page ===== */
.editorial-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px;
  color: #524a5a;
}

.editorial-page h1 {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 3px solid #daac49;
  padding-bottom: 10px;
}

/* Grid layout */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* Card */
.editor-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-top: 5px solid #daac49; /* aksen emas */
}

.editor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Highlight untuk Editor-in-Chief */
.editor-card.highlight {
  border-top-color: #d43d35; /* merah utama */
}

/* Role */
.editor-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #524a5a;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* Name */
.editor-name {
  margin: 10px 0 5px 0;
  font-size: 1.1rem;
  color: #524a5a;
}

/* Affiliation */
.editor-affiliation {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}

/* Buttons container */
.editor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Base button */
.editor-links a {
  text-decoration: none !important;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

/* Scopus */
.btn-scopus {
  background-color: #daac49;
  color: #524a5a;
}

.btn-scopus:hover {
  background-color: #c49a3f;
  color: #524a5a;
}

/* SINTA */
.btn-sinta {
  background-color: #f6e0aa;
  color: #524a5a;
}

.btn-sinta:hover {
  background-color: #fada7c;
}

/* Google Scholar */
.btn-gscholar {
  background-color: #d43d35;
  color: #ffffff;
}

.btn-gscholar:hover {
  background-color: #b8322c;
  color: #ffffff;
}

/* ===== Section Titles ===== */
.editorial-section-title {
  margin: 40px 0 20px 0;
  text-align: center;
  color: #524a5a;
  border-bottom: 3px solid #daac49;
  display: inline-block;
  padding-bottom: 6px;
}

/* Center the Editor-in-Chief card */
.editorial-chief-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

/* Make chief card a bit wider */
.editor-card.chief {
  max-width: 380px;
  width: 100%;
}

/* ===== Peer Reviewers Page ===== */
.reviewers-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px;
  color: #524a5a;
}

.reviewers-page h1 {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 3px solid #daac49;
  padding-bottom: 10px;
}

/* Grid */
.reviewers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* Card */
.reviewer-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-top: 5px solid #daac49; /* aksen emas */
}

.reviewer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Name */
.reviewer-name {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
  color: #524a5a;
}

/* Affiliation */
.reviewer-affiliation {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 10px;
}

/* Scopus badge */
.reviewer-scopus {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  background-color: #f6e0aa;
  color: #524a5a;
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* Buttons */
.reviewer-links {
  margin-top: 10px;
}

.reviewer-links a {
  text-decoration: none !important;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

/* Scopus */
.btn-scopus {
  background-color: #daac49;
  color: #524a5a;
}
.btn-scopus:hover {
  background-color: #c49a3f;
}

/* SINTA */
.btn-sinta {
  background-color: #f6e0aa;
  color: #524a5a;
}
.btn-sinta:hover {
  background-color: #fada7c;
}

/* Google Scholar */
.btn-gscholar {
  background-color: #d43d35;
  color: #ffffff;
}
.btn-gscholar:hover {
  background-color: #b8322c;
}

/* ===== Focus and Scope Page ===== */
.focus-scope-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
  color: #524a5a;
}

.focus-scope-page h1 {
  text-align: center;
  margin-bottom: 25px;
  border-bottom: 3px solid #daac49;
  padding-bottom: 10px;
}

/* Intro text */
.focus-intro {
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 30px;
}

/* Grid for scope items */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}

/* Each scope item */
.scope-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  font-weight: 600;
  color: #524a5a;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  border-left: 5px solid #daac49; /* aksen emas */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scope-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  border-left-color: #d43d35; /* aksen merah saat hover */
}

/* ===== Publication Ethics Page ===== */
.ethics-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
  color: #524a5a;
}

.ethics-page h1 {
  text-align: center;
  margin-bottom: 25px;
  border-bottom: 3px solid #daac49;
  padding-bottom: 10px;
}

/* Intro box */
.ethics-intro {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Section card */
.ethics-section {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  border-left: 5px solid #daac49; /* aksen emas */
}

.ethics-section h2 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #524a5a;
}

/* List */
.ethics-section ul {
  padding-left: 20px;
  margin: 0;
}

.ethics-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Hover effect halus */
.ethics-section:hover {
  border-left-color: #d43d35; /* merah saat hover */
}

/* ===== Author Fees Page ===== */
.fees-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  color: #524a5a;
}

.fees-page h1 {
  text-align: center;
  margin-bottom: 25px;
  border-bottom: 3px solid #daac49;
  padding-bottom: 10px;
}

/* Card */
.fees-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 25px 22px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  border-top: 6px solid #daac49; /* aksen emas */
}

/* Badge */
.fees-badge {
  display: inline-block;
  background-color: #d43d35; /* merah utama */
  color: #ffffff;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* Title */
.fees-card h2 {
  margin: 10px 0 15px 0;
  color: #524a5a;
}

/* Text */
.fees-card p {
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ===== Indexing Page (With Logos) ===== */
.indexing-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
  color: #524a5a;
}

.indexing-page h1 {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 3px solid #daac49;
  padding-bottom: 10px;
}

.indexing-intro {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Grid */
.indexing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* Card */
.indexing-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  border-top: 5px solid #daac49;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.indexing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  border-top-color: #d43d35;
}

/* Logo */
.indexing-logo {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
  margin-bottom: 12px;
}

/* Title */
.indexing-card h3 {
  margin: 10px 0 15px 0;
  color: #524a5a;
}

/* Button */
.indexing-btn {
  display: inline-block;
  text-decoration: none !important;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  background-color: #daac49;
  color: #524a5a;
  transition: all 0.2s ease;
}

.indexing-btn:hover {
  background-color: #d43d35;
  color: #ffffff;
}

/* ===== Author Guidelines Page ===== */
.guidelines-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
  color: #524a5a;
}

.guidelines-page h1 {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 3px solid #daac49;
  padding-bottom: 10px;
}

.guidelines-intro {
  text-align: center;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Table-like layout */
.guidelines-table {
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.guidelines-row {
  display: grid;
  grid-template-columns: 60px 180px 1fr;
  border-bottom: 1px solid #eee;
}

.guidelines-row:last-child {
  border-bottom: none;
}

.guidelines-row.header {
  background-color: #524a5a;
  color: #f6e0aa;
  font-weight: 700;
}

.guidelines-row > div {
  padding: 12px 14px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Column styles */
.col-no {
  text-align: center;
  font-weight: 700;
}

.col-part {
  font-weight: 700;
}

/* Hover effect */
.guidelines-row:not(.header):hover {
  background-color: #f6e0aa;
}

/* Download section */
.guidelines-download {
  margin-top: 30px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border-top: 5px solid #daac49;
}

.guidelines-download p {
  margin-bottom: 15px;
}

/* Button */
.download-btn {
  display: inline-block;
  text-decoration: none !important;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  background-color: #d43d35;
  color: #ffffff;
  transition: all 0.2s ease;
}

.download-btn:hover {
  background-color: #b8322c;
  color: #ffffff;
}

/* ===== Sidebar Download Template Block ===== */
.sidebar-download-template {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  text-align: center;
  border-top: 5px solid #daac49; /* aksen emas */
}

/* Title */
.sidebar-download-title {
  background-color: #524a5a; /* abu gelap */
  color: #f6e0aa;            /* krem */
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* Text */
.sidebar-download-text {
  font-size: 0.9rem;
  color: #524a5a;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Button */
.sidebar-download-btn {
  display: inline-block;
  text-decoration: none !important;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  background-color: #d43d35; /* merah utama */
  color: #ffffff;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(212, 61, 53, 0.35);
}

.sidebar-download-btn:hover {
  background-color: #b8322c;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(212, 61, 53, 0.45);
}

/* ===== Sidebar Indexed By Block ===== */
.sidebar-indexedby {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  border-top: 5px solid #daac49; /* aksen emas */
}

/* Title */
.sidebar-indexedby-title {
  background-color: #524a5a; /* abu gelap */
  color: #f6e0aa;            /* krem */
  font-weight: 700;
  text-align: center;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
}

/* Grid logo */
.sidebar-indexedby-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* Item */
.sidebar-indexedby-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6e0aa; /* krem lembut */
  border-radius: 10px;
  padding: 8px;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.sidebar-indexedby-item img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

/* Hover */
.sidebar-indexedby-item:hover {
  background-color: #daac49; /* emas */
  transform: translateY(-1px);
}

/* Optional: highlight on focus */
.sidebar-indexedby-item:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(218, 172, 73, 0.6);
}

/* ===== Sidebar Supported By Block ===== */
.sidebar-supportedby {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  border-top: 5px solid #daac49; /* aksen emas */
}

.sidebar-supportedby-title {
  background-color: #524a5a; /* abu gelap */
  color: #f6e0aa;            /* krem */
  font-weight: 700;
  text-align: center;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* Grid */
.sidebar-supportedby-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}

/* Logo item */
.sidebar-supportedby-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6e0aa;
  border-radius: 10px;
  padding: 8px;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.sidebar-supportedby-item img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

/* Hover */
.sidebar-supportedby-item:hover {
  background-color: #daac49; /* emas */
  transform: translateY(-2px);
}


/* ===== Sidebar Supported By Block ===== */
.sidebar-supportedby {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  border-top: 5px solid #daac49; /* aksen emas */
}

.sidebar-supportedby-title {
  background-color: #524a5a; /* abu gelap */
  color: #f6e0aa;            /* krem */
  font-weight: 700;
  text-align: center;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* Grid */
.sidebar-supportedby-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}

/* Logo item */
.sidebar-supportedby-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6e0aa;
  border-radius: 10px;
  padding: 8px;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.sidebar-supportedby-item img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

/* Hover */
.sidebar-supportedby-item:hover {
  background-color: #daac49; /* emas */
  transform: translateY(-2px);
}

/* ===== Sidebar Tools Block ===== */
.sidebar-tools {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  border-top: 5px solid #daac49; /* aksen emas */
}

/* Title */
.sidebar-tools-title {
  background-color: #524a5a; /* abu gelap */
  color: #f6e0aa;            /* krem */
  font-weight: 700;
  text-align: center;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
}

/* Grid */
.sidebar-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Item */
.sidebar-tools-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6e0aa; /* krem lembut */
  border-radius: 10px;
  padding: 10px;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.sidebar-tools-item img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

/* Hover */
.sidebar-tools-item:hover {
  background-color: #daac49; /* emas */
  transform: translateY(-2px);
}

/* ===== Sidebar Visitor Block ===== */
.sidebar-visitor {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  border-top: 5px solid #daac49; /* aksen emas */
}

/* Title */
.sidebar-visitor-title {
  background-color: #524a5a; /* abu gelap */
  color: #f6e0aa;            /* krem */
  font-weight: 700;
  text-align: center;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
}

/* Grid */
.sidebar-visitor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* Item */
.visitor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6e0aa; /* krem lembut */
  border-radius: 10px;
  padding: 8px;
  transition: all 0.2s ease;
}

.visitor-item img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hover */
.visitor-item:hover {
  background-color: #daac49; /* emas */
  transform: translateY(-1px);
}