body {
  font-family: system-ui, sans-serif;
  margin: 2em auto;
  max-width: 600px;
  padding: 0 1em;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}

h1 {
  color: #222;
  font-size: 1.5em;
  margin-bottom: 0.2em;
}

h2 {
  color: #222;
  font-size: 1.2em;
  margin-bottom: 0.2em;
}

h3 {
  color: #222;
  font-size: 1em;
  margin-bottom: 0.2em;
}

nav a {
  margin-right: 0.5em;
  text-decoration: none;
  color: #007acc;
}

nav a:hover {
  text-decoration: underline;
}

.subtitle {
  font-size: 1.1em;
  font-style: italic;
  color: #3498db;
  margin-bottom: 1em;
}

ul {
  padding-left: 1.2em;
}

li {
  margin-bottom: 1em;
}

a {
  color: #2c2abd;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.pagination {
  margin-top: 2em;
  text-align: center;
}

button {
  padding: 0.5em 1em;
  margin: 0 0.5em;
  border: none;
  background: #007acc;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #005f99;
}

img {
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}


.tag-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1em;
}

.tag-header a {
  text-decoration: none;
  color: #2e41ac;
  background: #eef6fb;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9em;
}

.tag-header a:hover {
  background: #d0ecfb;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5em;
  }

  .subtitle {
    font-size: 1em;
  }

  li a {
    font-size: 1em;
  }

  .tag-header a {
    font-size: 0.8em;
    padding: 4px 8px;
  }

  button {
    font-size: 0.9em;
    padding: 0.4em 0.8em;
  }
}

a.read-more {
  display: inline-block;
  margin-top: 5px;
  padding: 6px 12px;
  background-color: #007bff;
  color: #fff !important;         /* Penting agar menimpa aturan sebelumnya */
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.85em;
}

a.read-more:hover {
  background-color: #0056b3;
  color: #fff !important;
}

.author {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-wrap: nowrap;
  font-size: 0.85em;
  font-style: italic;
}

  .main-logo {
    height: 120px;
  }
  @media (max-width: 600px) {
    .main-logo {
      height: 80px;
    }
  }
  @media (max-width: 480px) {
    .main-logo {
      height: 60px;
    }
  }

