/* イベントカード全体をリンク化した際の装飾リセット */
.event-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.event-card-row {
  display: flex;
  gap: 7px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.event-card {
  width: 280px;
  height: 200px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
  border: 1px solid #000;
  background-color: #000;
}
/* 背景画像部分のみ高さ140pxに限定するためのラッパー */
.event-card-bg {
  width: 280px;
  height: 140px;
  background-size: 280px 140px;
  background-position: left top;
  background-repeat: no-repeat;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  overflow: hidden;
  background-color: #000 !important;
}
.event-card-header {
  width: 270px;
  font-size: 13px;
  font-weight: bold;
  text-shadow: 0 2px 2px rgba(0,0,0,0.8);
  padding: 8px 6px;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  top: 133px;
  transform: translateX(-50%);
  color: #fff;
  max-width: 95%;
  box-sizing: border-box;
}
.event-card-date {
  font-size: 0.95em;
  color: #fff;
  position: absolute;
  font-weight: 800;
  right: 10px;
  bottom: 4px;
  margin-bottom: 0;
  text-align: right;
}
.event-card-location {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 10px;
}
.event-card-actions {
  margin-top: auto;
}
.event-card-detail-btn {
  padding: 6px 18px;
  background: #008080;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

