/* === Ekbis Plain Footer === */
.ekbis-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;
}

.ekbis-footer-left {
  max-width: 70%;
}

.ekbis-footer-left img {
  margin: 8px 0;
}

.ekbis-footer-left a {
  color: #0066cc;
  text-decoration: none;
}

.ekbis-footer-left a:hover {
  text-decoration: underline;
}

.ekbis-footer-right {
  text-align: right;
  font-size: 14px;
}

/* === Make a Submission Button - JIEB Theme === */
.block_make_submission_link {
  display: block !important;
  text-align: center !important;
  background: linear-gradient(135deg, #ff9800, #ffb300) !important; /* oranye */
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 12px 14px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25) !important;
  transition: all 0.25s ease !important;
  font-size: 14px !important;
  letter-spacing: 0.5px !important;
  border: 2px solid #1e4fa3 !important; /* aksen biru */
}

/* Hover effect */
.block_make_submission_link:hover {
  background: linear-gradient(135deg, #fb8c00, #ffa000) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 14px rgba(0,0,0,0.3) !important;
  color: #ffffff !important;
}

/* Active (saat diklik) */
.block_make_submission_link:active {
  transform: translateY(0) !important;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25) !important;
}


/* === JIEB Additional Menu Block === */
.jieb-additional-menu {
  border-radius: 6px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.jieb-menu-title {
  background: #ff9800; /* oranye utama */
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #1e4fa3; /* aksen biru */
}

/* Item */
.jieb-menu-item {
  display: block;
  padding: 10px 12px;
  color: #333 !important;
  text-decoration: none !important;
  border-bottom: 1px solid #e0e0e0;
  font-size: 13px;
  transition: all 0.25s ease;
  background: #ffffff;
}

/* Hover */
.jieb-menu-item:hover {
  background: #fff3e0; /* oranye muda */
  color: #e65100 !important;
  padding-left: 16px;
}

/* Last item no border */
.jieb-menu-item:last-child {
  border-bottom: none;
}


/* === Editorial Board Page - JIEB === */
.ekbis-editorial-board {
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

/* Judul section */
.ekbis-editorial-board h2 {
  margin-top: 24px;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 3px solid #ff9800; /* oranye tema */
  color: #1e4fa3; /* biru aksen */
  font-size: 20px;
}

/* Card editor */
.editor-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.25s ease;
}

/* Hover effect card */
.editor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

/* Info nama & institusi */
.editor-info {
  font-size: 14px;
  line-height: 1.5;
}

.editor-info strong {
  display: block;
  font-size: 15px;
  color: #000;
}

/* Link (Scopus, SINTA, Scholar) */
.editor-links {
  margin-top: 4px;
}

.editor-links a {
  display: inline-block;
  margin-right: 8px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none !important;
  color: #ffffff !important;
  background: #ff9800; /* default oranye */
  transition: all 0.25s ease;
}

/* Warna beda per platform (opsional) */
.editor-links a:nth-child(1) { background: #1e4fa3; } /* Scopus / biru */
.editor-links a:nth-child(2) { background: #2e7d32; } /* SINTA / hijau */
.editor-links a:nth-child(3) { background: #d84315; } /* Scholar / oranye tua */

/* Hover link */
.editor-links a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 576px) {
  .editor-info {
    font-size: 13px;
  }

  .editor-info strong {
    font-size: 14px;
  }

  .editor-links a {
    margin-bottom: 6px;
  }
}


/* === Peer Reviewers Page - JIEB === */
.ekbis-peer-reviewers {
  max-width: 1000px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

/* Judul */
.ekbis-peer-reviewers h2 {
  margin-top: 24px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 3px solid #ff9800; /* oranye tema */
  color: #1e4fa3; /* biru aksen */
  font-size: 22px;
}

/* Paragraf pembuka */
.ekbis-peer-reviewers p {
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 14px;
}

/* Card reviewer */
.reviewer-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.25s ease;
}

/* Hover effect */
.reviewer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.22);
}

/* Info reviewer */
.reviewer-info {
  font-size: 14px;
  line-height: 1.5;
}

.reviewer-info strong {
  display: block;
  font-size: 15px;
  color: #000;
}

/* Link buttons */
.reviewer-links {
  margin-top: 4px;
}

.reviewer-links a {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none !important;
  color: #ffffff !important;
  background: #ff9800; /* default oranye */
  transition: all 0.25s ease;
}

/* Warna beda per platform */
.reviewer-links a:nth-child(1) { background: #1e4fa3; } /* Scopus - biru */
.reviewer-links a:nth-child(2) { background: #d84315; } /* Scholar - oranye tua */
.reviewer-links a:nth-child(3) { background: #2e7d32; } /* SINTA - hijau */

/* Hover link */
.reviewer-links a:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 576px) {
  .reviewer-info {
    font-size: 13px;
  }

  .reviewer-info strong {
    font-size: 14px;
  }

  .reviewer-links a {
    margin-bottom: 6px;
  }
}

/* === Focus and Scope Page - JIEB === */
.ekbis-focus-scope {
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

/* Judul utama */
.ekbis-focus-scope h2 {
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 3px solid #ff9800; /* oranye tema */
  color: #1e4fa3; /* biru aksen */
  font-size: 22px;
}

/* Subjudul */
.ekbis-focus-scope h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: #ff9800;
  font-size: 18px;
}

/* Paragraf */
.ekbis-focus-scope p {
  line-height: 1.6;
  margin-bottom: 14px;
  font-size: 14px;
}

/* List */
.ekbis-focus-scope ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.ekbis-focus-scope li {
  margin-bottom: 6px;
  font-size: 14px;
}


/* === Publication Ethics Page - JIEB === */
.ekbis-publication-ethics {
  max-width: 1000px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

/* Judul utama */
.ekbis-publication-ethics h2 {
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 3px solid #ff9800; /* oranye tema */
  color: #1e4fa3; /* biru aksen */
  font-size: 22px;
}

/* Subjudul */
.ekbis-publication-ethics h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: #ff9800;
  font-size: 17px;
}

/* Paragraf */
.ekbis-publication-ethics p {
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 14px;
  text-align: justify;
}

/* List */
.ekbis-publication-ethics ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.ekbis-publication-ethics li {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.6;
}

/* Card-like section effect (opsional, halus) */
.ekbis-publication-ethics h3 + ul,
.ekbis-publication-ethics h3 + p {
  background: #fafafa;
  border-left: 4px solid #ff9800;
  padding: 10px 12px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 576px) {
  .ekbis-publication-ethics h2 {
    font-size: 20px;
  }

  .ekbis-publication-ethics h3 {
    font-size: 16px;
  }

  .ekbis-publication-ethics p,
  .ekbis-publication-ethics li {
    font-size: 13px;
  }
}

/* === Author Fees Page - JIEB === */
.ekbis-author-fees {
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

/* Judul */
.ekbis-author-fees h2 {
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 3px solid #ff9800; /* oranye tema */
  color: #1e4fa3; /* biru aksen */
  font-size: 22px;
}

/* Paragraf */
.ekbis-author-fees p {
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 14px;
  text-align: justify;
}

/* Kotak biaya */
.fee-box {
  margin: 16px auto 20px auto;
  padding: 14px 20px;
  max-width: 280px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #ff9800, #ffb300);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 576px) {
  .ekbis-author-fees h2 {
    font-size: 20px;
  }

  .ekbis-author-fees p {
    font-size: 13px;
  }

  .fee-box {
    font-size: 22px;
    max-width: 220px;
  }
}

/* === Indexing Page - JIEB === */
.ekbis-indexing {
  max-width: 1000px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

/* Judul */
.ekbis-indexing h2 {
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 3px solid #ff9800; /* oranye tema */
  color: #1e4fa3; /* biru aksen */
  font-size: 22px;
}

/* Grid */
.indexing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

/* Item */
.index-item {
  background: #ffffff;
  border-radius: 6px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover */
.index-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.25);
}

/* Logo */
.index-item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Responsive */
@media (max-width: 576px) {
  .indexing-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
  }

  .index-item img {
    max-height: 60px;
  }
}

/* === Author Guidelines Page - JIEB === */
.ekbis-author-guidelines {
  max-width: 1000px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  line-height: 1.7;
}

/* Judul utama */
.ekbis-author-guidelines h2 {
  margin-top: 24px;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 3px solid #ff9800; /* oranye tema */
  color: #1e4fa3; /* biru aksen */
  font-size: 22px;
}

/* Subjudul */
.ekbis-author-guidelines h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: #ff9800;
  font-size: 17px;
}

/* Paragraf */
.ekbis-author-guidelines p {
  margin-bottom: 12px;
  font-size: 14px;
  text-align: justify;
}

/* List */
.ekbis-author-guidelines ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.ekbis-author-guidelines li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* Garis pemisah */
.ekbis-author-guidelines hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* Code-like block (contoh format) */
.ekbis-author-guidelines p em {
  color: #444;
}

/* Responsive */
@media (max-width: 576px) {
  .ekbis-author-guidelines h2 {
    font-size: 20px;
  }

  .ekbis-author-guidelines h3 {
    font-size: 16px;
  }

  .ekbis-author-guidelines p,
  .ekbis-author-guidelines li {
    font-size: 13px;
  }
}

/* === JIEB Template Download Block === */
.ekbis-template-block {
  border-radius: 6px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.ekbis-template-title {
  background: #ff9800; /* oranye tema */
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #1e4fa3; /* aksen biru */
}

/* Link container */
.ekbis-template-image-link {
  display: block;
  text-align: center;
  padding: 12px;
  margin: 10px;
  background: #ffffff;
  border-radius: 6px;
  text-decoration: none !important;
  color: #333 !important;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
}

/* Hover effect */
.ekbis-template-image-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background: #fff3e0; /* oranye muda */
  color: #e65100 !important;
}

/* Image */
.ekbis-template-image-link img {
  display: block;
  margin: 0 auto 8px auto;
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;

  /* Shadow biar kelihatan kontras */
  /* filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); */
}

/* Text under image */
.ekbis-template-image-link {
  font-size: 13px;
}

/* Responsive */
@media (max-width: 576px) {
  .ekbis-template-image-link img {
    max-height: 100px;
  }
}


/* === Indexed By Block - JIEB === */
.ekbis-indexedby-block {
  border-radius: 6px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.ekbis-indexedby-title {
  background: #ff9800; /* oranye tema */
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #1e4fa3; /* aksen biru */
}

/* Grid */
.ekbis-indexedby-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolom di sidebar */
  gap: 10px;
  padding: 10px;
}

/* Item */
.ekbis-indexedby-item {
  background: #ffffff;
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover */
.ekbis-indexedby-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background: #fff3e0;
}

/* Logo */
.ekbis-indexedby-item img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  /* filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); */
}

/* Responsive */
@media (max-width: 576px) {
  .ekbis-indexedby-grid {
    grid-template-columns: repeat(3, 1fr); /* di HP bisa 3 kolom */
  }

  .ekbis-indexedby-item img {
    max-height: 45px;
  }
}

/* === Supported By Block - Ekbis (Style sama dengan JPP) === */
.ekbis-supportedby-block {
  border-radius: 6px;
  overflow: hidden;
  background: #f7f7f7;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.ekbis-supportedby-title {
  background: #ff9800; /* oranye Ekbis */
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #1e4fa3; /* aksen biru */
}

/* Content */
.ekbis-supportedby-content {
  background: #ffffff;
  border-radius: 6px;
  margin: 10px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
}

/* Hover effect (samakan dengan JPP) */
.ekbis-supportedby-content:hover {
  transform: translateY(-2px);
  background: #fff3e0; /* oranye muda */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Logo */
.ekbis-supportedby-content img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 6px;
  /* filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); */
}

/* Text */
.ekbis-supportedby-text {
  font-size: 13px;
  font-weight: 700;
  color: #1e4fa3; /* biru Ekbis */
}

/* Responsive */
@media (max-width: 576px) {
  .ekbis-supportedby-content img {
    max-height: 70px;
  }
}



/* === Tools Block - JIEB === */
.ekbis-tools-block {
  border-radius: 6px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.ekbis-tools-title {
  background: #ff9800; /* oranye tema */
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #1e4fa3; /* aksen biru */
}

/* List (atas-bawah) */
.ekbis-tools-list {
  display: grid;
  grid-template-columns: 1fr; /* satu kolom */
  gap: 10px;
  padding: 10px;
}

/* Item */
.ekbis-tool-item {
  background: #ffffff;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
  text-decoration: none !important;
  color: #333 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hover */
.ekbis-tool-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background: #fff3e0; /* oranye muda */
}

/* Logo */
.ekbis-tool-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 6px;
  /* filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); */
}

/* Text */
.ekbis-tool-item span {
  font-size: 12px;
  font-weight: 700;
  color: #1e4fa3;
}

/* Responsive */
@media (max-width: 576px) {
  .ekbis-tool-item img {
    max-height: 50px;
  }
}

/* === Visitor Block - JIEB === */
.ekbis-visitor-block {
  border-radius: 6px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.ekbis-visitor-title {
  background: #ff9800; /* oranye tema */
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #1e4fa3; /* aksen biru */
}

/* List: atas-bawah biar besar */
.ekbis-visitor-list {
  display: grid;
  grid-template-columns: 1fr; /* 1 kolom */
  gap: 10px;
  padding: 10px;
}

/* Item */
.ekbis-visitor-item {
  background: #ffffff;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
  text-decoration: none !important;
  color: #333 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hover */
.ekbis-visitor-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background: #fff3e0; /* oranye muda */
}

/* Image */
.ekbis-visitor-item img {
  display: block;
  margin: 0 auto 6px auto;
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  /* Shadow biar teks di gambar kelihatan */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

/* Label */
.ekbis-visitor-item span {
  font-size: 12px;
  font-weight: 700;
  color: #1e4fa3;
}

/* Responsive */
@media (max-width: 576px) {
  .ekbis-visitor-item img {
    max-height: 80px;
  }
}

/* === Archive Page - JIEB === */
.ekbis-archive-page {
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

.ekbis-archive-page h2 {
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 3px solid #ff9800; /* oranye tema */
  color: #1e4fa3; /* biru aksen */
  font-size: 22px;
}

.ekbis-archive-page p {
  line-height: 1.6;
  margin-bottom: 14px;
  font-size: 14px;
  text-align: justify;
}

.ekbis-archive-page .archive-link {
  text-align: center;
  margin: 20px 0;
}

.ekbis-archive-page .archive-link a {
  display: inline-block;
  background: #ff9800;
  color: #ffffff !important;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
}

.ekbis-archive-page .archive-link a:hover {
  background: #fb8c00;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
