/* 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;
  font-weight: 600;
}

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

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;
  text-align: justify; /* sesuai dengan atribut <p align="justify"> */
}

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

/* Buat link jadi seperti tombol */
article.node--teaser .links.nav .nav-item a {
  font-size: 0.9rem;
  color: #007bff;
  text-decoration: none;
  border: 1px solid #007bff;
  padding: 6px 12px;
  border-radius: 25px;
  transition: all 0.2s ease;
  display: inline-block;
}

article.node--teaser .links.nav .nav-item a:hover {
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
}