/* CARD KONTEN */
article.node--teaser {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

article.node--teaser:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Title Styling */
article.node--teaser h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

article.node--teaser h2 a {
  text-decoration: none;
  color: #333333;
}

article.node--teaser h2 a:hover {
  color: #007bff;
}

/* Content Body Styling */
article.node--teaser .field--name-body {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Topic Tag Styling */
article.node--teaser .field--name-taxonomy-vocabulary-5 .btn {
  font-size: 0.875rem;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
}

/* Links at Bottom (Read More, Comment) */
article.node--teaser .links.nav {
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

article.node--teaser .links.nav .nav-item a {
  font-size: 0.9rem;
  color: #007bff;
  text-decoration: none;
}

article.node--teaser .links.nav .nav-item a:hover {
  text-decoration: underline;
}

.field--type-entity-reference .btn {
  border-radius: 50rem !important; /* Membuat bentuk pill/oval */
  padding: 0.35rem 0.8rem !important;
  font-size: 0.875rem;
  line-height: 1.5;
  border: 1px solid #ced4da;
  background-color: #ffffff;
  color: #198754;
  transition: all 0.2s ease;
}

/* Hover effect untuk tombol */
.field--type-entity-reference .btn:hover {
  background-color: #198754;
  color: #ffffff;
  text-decoration: none;
}


