* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f7fb;
  color: #1b1b1b;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #0d4d92;
}

img {
  max-width: 100%;
  display: block;
}

.topbar {
  background: #0a2c55;
  color: #fff;
  padding: 16px 0;
}

.topbar__inner,
.hero__inner,
.layout,
.footer__inner {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand__text h1 {
  margin: 0;
  font-size: 24px;
}

.brand__text p {
  margin: 3px 0 0;
  font-size: 14px;
  opacity: .9;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.hero {
  background: linear-gradient(135deg, #0d4d92, #1d76d2);
  color: #fff;
  padding: 60px 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 16px;
}

.hero h2 {
  font-size: 40px;
  margin: 0 0 16px;
}

.hero p {
  font-size: 17px;
  max-width: 700px;
}

.hero__actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
}

.btn--primary {
  background: #fff;
  color: #0d4d92;
  border: none;
  cursor: pointer;
}

.btn--ghost {
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
}

.hero__card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(6px);
}

.hero__stats {
  display: grid;
  gap: 16px;
}

.stat-box {
  background: rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 28px;
}

.layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  padding: 36px 0;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,.05);
}

.section-head {
  margin-bottom: 18px;
}

.section-head--between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.section-head h3 {
  margin: 0;
  font-size: 24px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  margin-top: 20px;
}

.info-item {
  background: #f6f9fd;
  padding: 16px;
  border-radius: 12px;
}

.issue-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
}

.issue-cover img {
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  padding: 10px;
  background: #fff;
}

.issue-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.issue-tags span,
.indexing-grid span {
  background: #eef5fd;
  color: #0d4d92;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.article-item {
  padding: 18px 0;
  border-bottom: 1px solid #ececec;
}

.article-item:last-child {
  border-bottom: none;
}

.article-item h4 {
  margin: 0 0 10px;
  font-size: 20px;
}

.article-meta {
  color: #777;
  font-size: 14px;
  margin-top: 10px;
}

.side-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-list li {
  margin-bottom: 12px;
}

.side-list a {
  display: block;
  padding: 12px 14px;
  background: #f7f9fc;
  border-radius: 12px;
  font-weight: 600;
}

.indexing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-box p {
  margin: 0 0 12px;
}

.article-page h1 {
  font-size: 34px;
  margin-bottom: 12px;
}

.article-page .article-meta-top {
  color: #666;
  margin-bottom: 24px;
  font-size: 14px;
}

.article-page p {
  margin-bottom: 18px;
  font-size: 16px;
}

.back-link {
  display: inline-block;
  margin-top: 24px;
  font-weight: bold;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 500px;
}

.login-form input {
  padding: 12px 14px;
  border: 1px solid #d8dce2;
  border-radius: 10px;
  font-size: 15px;
}

@media (max-width: 900px) {
  .hero__inner,
  .layout,
  .issue-wrap {
    grid-template-columns: 1fr;
  }

  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h2 {
    font-size: 30px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   PUBLISHER LIST / PUBLIKASI
========================= */
.publisher-section {
  margin-top: 24px;
}

.publisher-head {
  margin-bottom: 18px;
}

.publisher-head h2 {
  font-size: 26px;
  color: #0f2d5c;
  margin-bottom: 8px;
  font-weight: 800;
}

.publisher-head p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.publisher-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #ececec;
}

.publisher-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 10px;
  border-bottom: 1px solid #ececec;
  text-decoration: none;
  background: #fff;
  transition: all 0.25s ease;
}

.publisher-item:hover {
  background: #f8fbff;
  transform: translateY(-1px);
}

.publisher-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.publisher-left img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 4px;
  flex-shrink: 0;
}

.publisher-info h3 {
  font-size: 20px;
  color: #ef5b2a;
  margin: 0 0 4px;
  font-weight: 700;
}

.publisher-info span {
  font-size: 14px;
  color: #f39a79;
  word-break: break-word;
}

.publisher-right {
  text-align: right;
  min-width: 90px;
  flex-shrink: 0;
}

.publisher-right strong {
  display: block;
  font-size: 34px;
  color: #ef5b2a;
  line-height: 1;
  font-weight: 800;
}

.publisher-right small {
  font-size: 14px;
  color: #c9b8af;
}

/* Mobile */
@media (max-width: 768px) {
  .publisher-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .publisher-right {
    text-align: left;
  }

  .publisher-info h3 {
    font-size: 17px;
  }

  .publisher-right strong {
    font-size: 28px;
  }
}
/* =========================
   ARTICLE PAGE / PUBLIKASI
========================= */
.article-page h1 {
  font-size: 34px;
  color: #0f2d5c;
  margin-bottom: 10px;
  font-weight: 800;
}

.article-meta-top {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 14px;
}

.article-page h2 {
  font-size: 26px;
  color: #143d7a;
  margin-top: 34px;
  margin-bottom: 14px;
  font-weight: 800;
}

.article-page h3 {
  font-size: 22px;
  color: #ef5b2a;
  margin-top: 28px;
  margin-bottom: 12px;
  font-weight: 700;
}

.article-page p {
  font-size: 16px;
  line-height: 1.95;
  color: #2b2b2b;
  margin-bottom: 18px;
}

.article-list {
  margin: 10px 0 20px 20px;
  padding: 0;
}

.article-list li {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 10px;
  color: #333;
}

.article-note {
  background: #eef6ff;
  border: 1px solid #d7e7ff;
  color: #123a70;
  padding: 18px 20px;
  border-radius: 16px;
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.8;
}
/* =========================
   FOOTER JURNAL FIX FINAL
========================= */
.footer {
  background: linear-gradient(135deg, #0f2d5c, #123d7a);
  color: #fff;
  margin-top: 50px;
  padding: 50px 0 0;
  border-top: 4px solid #f59e0b;
}

.footer__inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  align-items: start;
  padding-bottom: 30px;
}

.footer__col {
  min-width: 0;
}

.footer__col h4 {
  font-size: 20px;
  margin: 0 0 16px;
  color: #fff;
  font-weight: 800;
  line-height: 1.4;
}

.footer__col p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.88);
  margin: 0 0 12px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: 0.25s ease;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
}

.footer__links a:hover {
  color: #f59e0b;
  transform: translateX(4px);
}

.footer__bottom {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 18px 0 22px;
  text-align: center;
}

.footer__bottom p {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}

/* biar email/info gak nempel jelek */
.footer__col strong {
  color: #fff;
}

/* Tablet */
@media (max-width: 992px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer {
    padding: 38px 0 0;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 92%;
  }

  .footer__col h4 {
    font-size: 18px;
  }

  .footer__col p,
  .footer__links a,
  .footer__bottom p {
    font-size: 14px;
  }

  .footer__bottom {
    padding: 16px 0 20px;
  }
}
/* =========================
   ARTICLE META BOX
========================= */
.article-meta-box {
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 18px 20px;
  margin: 22px 0 28px;
}

.article-meta-box p {
  margin: 0 0 10px;
  font-size: 15px;
  color: #1f2937;
  line-height: 1.8;
}

.article-meta-box p:last-child {
  margin-bottom: 0;
}

/* =========================
   FAQ SECTION
========================= */
.faq-section {
  margin-top: 10px;
}

.faq-section h2 {
  font-size: 28px;
  color: #0f2d5c;
  margin-bottom: 20px;
  font-weight: 800;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(15, 45, 92, 0.04);
}

.faq-item h3 {
  font-size: 20px;
  color: #ef5b2a;
  margin: 0 0 10px;
  font-weight: 700;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.9;
  color: #374151;
  margin: 0;
}

/* =========================
   BACK LINK
========================= */
.back-link {
  display: inline-block;
  margin-top: 28px;
  color: #0f2d5c;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.back-link:hover {
  color: #ef5b2a;
  transform: translateX(-3px);
}
/* =========================
   SIDEBAR INDEXING LOGO
========================= */
.indexing-logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

.indexing-logo-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.indexing-logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border-color: #cbd5e1;
}

.indexing-logo-item img {
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
}

/* =========================
   REKOMENDASI ARTIKEL
========================= */
.recommended-articles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.recommended-item {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fafc, #eef4ff);
  border: 1px solid #dbeafe;
  text-decoration: none;
  transition: all 0.25s ease;
}

.recommended-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.10);
  border-color: #93c5fd;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.recommended-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  color: #1e293b;
}

/* =========================
   CONTACT BOX
========================= */
.contact-box p {
  margin: 0 0 12px;
  line-height: 1.7;
  color: #475569;
  font-size: 14px;
}

.contact-box strong {
  color: #0f172a;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .indexing-logo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recommended-item {
    padding: 12px 14px;
  }

  .recommended-title {
    font-size: 13px;
  }
}

/* =========================
   ARCHIVE PAGE
========================= */
.archive-intro {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 28px;
}

.archive-grid {
  display: grid;
  gap: 22px;
}

.archive-card {
  display: flex;
  gap: 22px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px;
  position: relative;
  transition: all 0.28s ease;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.archive-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18);
}

.archive-cover {
  min-width: 120px;
  height: 140px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1e3a8a, #2563eb, #60a5fa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.20);
}

.archive-content {
  flex: 1;
}

.archive-content h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: #0f172a;
}

.archive-desc {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.archive-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.archive-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.archive-links a {
  display: inline-block;
  text-decoration: none;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.archive-links a:hover {
  background: #dbeafe;
  color: #1e40af;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .archive-card {
    flex-direction: column;
    padding: 18px;
  }

  .archive-cover {
    width: 100%;
    min-width: auto;
    height: 90px;
    font-size: 24px;
  }

  .archive-content h3 {
    font-size: 19px;
  }

  .archive-desc {
    font-size: 14px;
  }
}