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

article.node--teaser:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(32, 201, 151, 0.18);
}

/* =========================
   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: #1f3d36;
  transition: color 0.2s ease;
}

article.node--teaser h2 a:hover {
  color: rgb(32, 201, 151);
}

/* =========================
   CONTENT BODY
   ========================= */
article.node--teaser .field--name-body {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

/* =========================
   LINKS (READ MORE, COMMENT)
   ========================= */
article.node--teaser .links.nav {
  padding-top: 10px;
  border-top: 1px solid rgba(32, 201, 151, 0.25);
  margin-top: 15px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

/* =========================
   BUTTON-LIKE LINKS
   ========================= */
article.node--teaser .links.nav .nav-item a {
  font-size: 0.9rem;
  color: rgb(32, 201, 151);
  text-decoration: none;
  border: 1px solid rgb(32, 201, 151);
  padding: 6px 14px;
  border-radius: 25px;
  transition: all 0.2s ease;
  display: inline-block;
  background-color: transparent;
}

article.node--teaser .links.nav .nav-item a:hover {
  background-color: rgb(32, 201, 151);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(32, 201, 151, 0.35);
  text-decoration: none;
}
