/* z-card-shortcodes.css */
.z-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 24px;
  background-color: #f8f9fa;
  border-radius: 6px;
}

.z-card {
  width: 300px;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
}

.z-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.z-card-title {
  font-size: 24px;
  font-weight: bold;
  margin: 16px 0;
}

.z-card-teaser {
  text-align: center;
  margin-bottom: 16px;
}

.z-card-button {
  background-color: #007bff;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s;
}

.z-card-button:hover {
  background-color: #0056b3;
}

.z-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.z-card-list-item {
  margin-bottom: 16px;
}
