#publicite {
  margin: auto;
}

/* === Pub Bleen === */
#bleen-pub-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #d4edda;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
}
#bleen-pub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(45, 122, 78, 0.18);
  border-color: #2d7a4e;
}
.bleen-pub-header {
  background: linear-gradient(135deg, #2d7a4e 0%, #1f5c38 100%);
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bleen-pub-badge {
  background: #a8e6b8;
  color: #1f5c38;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}
.bleen-pub-title {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}
.bleen-pub-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  max-height: 160px;
}
.bleen-pub-body {
  padding: 0.6rem 0.75rem 0.75rem;
  background: #f4fbf6;
}
.bleen-pub-desc {
  font-size: 0.78rem;
  color: #444;
  margin: 0 0 0.5rem;
  line-height: 1.4;
}
.bleen-pub-cta {
  display: inline-block;
  background: linear-gradient(135deg, #2d7a4e 0%, #1f5c38 100%);
  color: #a8e6b8;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  transition: background 0.2s ease;
}
#bleen-pub-card:hover .bleen-pub-cta {
  background: linear-gradient(135deg, #1f5c38 0%, #164228 100%);
}
