    .container-header {
      background-color: white;
      background-image: none;
    }

/* Wrapper */
.jeventslatest,
.mod_events_latest {
  margin: 1.5rem 0 0;
  padding: 0;
}

/* Remove ugly default list styling if present */
.jeventslatest ul,
.mod_events_latest ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jeventslatest li,
.mod_events_latest li {
  margin: 0;
  padding: 0;
}

/* Dienst item */
.dienst-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  background: #f8f6f2;
  border: 1px solid #e6e0d6;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* Left meta block */
.dienst-meta {
  text-align: center;
  background: #ffffff;
  border: 1px solid #e6e0d6;
  border-radius: 10px;
  padding: 0.65rem 0.5rem;
}

.dienst-date {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: lowercase;
  color: #6e5a3a;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.dienst-time {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2d3d;
}

/* Right content */
.dienst-content {
  min-width: 0;
}

.dienst-title {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.45rem;
}

.dienst-title a {
  color: #1f2d3d;
  text-decoration: none;
}

.dienst-title a:hover {
  text-decoration: underline;
}

.dienst-extra {
  font-size: 0.96rem;
  line-height: 1.5;
  color: #5f6368;
  margin-bottom: 0.15rem;
}

.dienst-contact::before {
  content: "👤 ";
}

.dienst-location::before {
  content: "📍 ";
}

/* Mobile */
@media (max-width: 640px) {
  .dienst-item {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .dienst-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 0.75rem 0.9rem;
  }

  .dienst-date {
    margin-bottom: 0;
  }
}