/* イベント リンクカード */
.event-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-links__card {
  background-color: #333;
  background-position: center;
  background-size: cover;
  border-radius: 0.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 4rem;
  padding: 1.25rem 1.5rem;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

.event-links__card::before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  inset: 0;
  position: absolute;
  transition: background 0.2s;
}

.event-links__card:hover::before {
  background: rgba(0, 0, 0, 0.3);
}

.event-links__title {
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  white-space: nowrap;
}

.event-links__description {
  flex: 1;
  font-size: 1rem;
  position: relative;
  text-align: right;
}
