.info-text {
  padding: 16px 20px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  background: #f9f9f9;
  line-height: 1.3;
}
.event-list {
  padding: 0 20px;
}
.event-item {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #f1f3f4;
  gap: 16px;
}
.event-item:last-child {
  border-bottom: none;
}
.event-image {
  width: 25%;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f3f4;
}
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.event-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}
.event-period {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.3;
}
.event-button {
  background: #bbb;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  width: 100%;
}
.event-button.active {
  background: #ff8000;
}