/* Grid כללי */
.shows-list-grid {
  display: grid;
  gap: 20px;
  width: 100%;
}
.columns-1 { grid-template-columns: 1fr; }

/* כרטיס מופע */
.show-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .3s;
}
.show-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* מבנה פנימי – שתי עמודות */
.show-card-inner {
  display: flex;
  flex-wrap: wrap;
}
.show-card-image-col {
  position: relative;
  flex: 0 0 35%;
  min-height: 200px;
  background-size: cover;
  background-position: center;
}
.show-card-text-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px;
}
.show-card-title,
.show-card-subtitle {
  margin: 0;
  line-height: 1.2;
}

/* עמודת מידע */
.show-card-info-col {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.show-card-meta {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 8px;
}
.show-card-meta .show-card-type {
  font-weight: bold;
  margin-right: 10px;
}
.show-card-meta .show-card-datetime {
  color: #777;
}

/* תקציר */
.show-card-excerpt {
  flex: 1;
  font-size: 0.95em;
  color: #333;
  line-height: 1.4;
}

/* כפתורים */
.show-card-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.show-card-button {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.95em;
  font-weight: 500;
  transition: background .3s, transform .3s;
}
.show-card-button-book {
  background: #c61c1c;
  color: #fff;
  border: none;
}
.show-card-button-book:hover {
  background: #a01818;
  transform: translateY(-2px);
}
.show-card-button-info {
  background: #eee;
  color: #000;
  border: 1px solid #ccc;
}
.show-card-button-info:hover {
  background: #ddd;
  transform: translateY(-2px);
}

/* הודעת הערה */
.show-card-notice {
  font-size: 0.85em;
  color: #c61c1c;
}

/* רספונסיביות */
@media (max-width: 768px) {
  .show-card-inner { flex-direction: column; }
  .show-card-image-col { flex: 0 0 auto; height: 180px; }
}