/* Reset & global */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.9rem;
  padding: 16px 24px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.breadcrumb a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: #1d6fa5;
  text-decoration: underline;
}

.container {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  max-width: 800px; /* << dari 1000px jadi 800px */
  width: 100%;
  gap: 20px;
}


.card .left {
  flex: 1 1 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card .left img {
  width: 100%;
  max-width: 220px;
  border-radius: 8px;
}

.card .right {
  flex: 2 1 300px;
}

.card h2 {
  margin-top: 0;
}

.synopsis {
  margin-top: 12px;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Baca Langsung Heading */
.baca-heading {
  text-align: center;
  margin-top: 40px;
  font-size: 1.2rem;
  color: #222;
}

/* PDF Viewer */
.pdf-container {
  padding: 0 24px 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card .right {
    padding-top: 10px;
  }

  .breadcrumb {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
