/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9fbfd; /* Light blueish background */
}

/* === FLUID TYPOGRAPHY (OTOMATIS SESUAI LAYAR) === */
/* Berlaku untuk seluruh teks di website */
body, h1, h2, h3, h4, p, li, span, a, div {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.2rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 1.7rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.4rem); }

/* === BACK TO TOP BUTTON (MODERN) === */
#Back-to-top {
  position: fixed;
  bottom: 25px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: #0d6efd; /* Biru utama */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
  z-index: 999;
  opacity: 0.85;
  transition: all 0.3s ease;
  cursor: pointer;
}

#Back-to-top:hover {
  opacity: 1;
  background: #0b5ed7;
  transform: translateY(-2px);
}

#Back-to-top img {
  width: 20px;
  filter: brightness(0) invert(1);
}

/* === TABLE DOWNLOAD (LEBIH MODERN & RAPI) === */
.table-download {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.table-download th,
.table-download td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eaeef5;
}

.table-download th {
  background: #0d6efd;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table-download tr:last-child td {
  border-bottom: none;
}

.table-download tr:hover {
  background-color: #f0f7ff;
}

/* === RESPONSIVE TABLE (HP) === */
@media (max-width: 768px) {
  .table-download {
    font-size: 14px;
  }

  .table-download th,
  .table-download td {
    padding: 10px 8px;
  }
}

/* === PERBAIKAN TAMBAHAN: RESPONSIF GLOBAL === */
/* Pastikan konten tidak meluber di HP */
.wrapper, .content-block, .main-content {
  padding: 0 15px;
}

/* Pastikan gambar tidak melebihi lebar layar */
img {
  max-width: 100%;
  height: auto;
}

/* Perbaiki tampilan list di HP */
.article-list li, .article-block li {
  padding: 8px 0;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* Judul block lebih responsif */
.block-title h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.7rem);
  text-align: center;
}

/* Tombol "Lihat Semua" lebih responsif */
.right a, .btn-more {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  padding: 6px 12px;
}