
.text-rich-text_bullet-list {
    display: flex;
    flex-flow: row wrap;
    gap: 1rem 2rem;
    justify-content: center;
}


  /* 1. Host Wrapper must be relative to anchor the overlay */
.offer-choices__wrapper {
  position: relative;
  width: 100%;
  max-width: 500px; /* Adjust to your design */
  z-index: 50;
}

.event-dd__empty {
  padding: 16px;
  background: var(--primary-900);
  border-radius: 8px;
  color: #666;
  font-family: inherit;
}

/* 2. The Dropdown Container */
.event-dd__list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--primary-100);
  border: 1px solid var(--primary-150);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  /* Hover Animation Physics */
  max-height: 60px; /* Roughly the height of 1 item */
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

/* Unroll on Hover */
.offer-choices__wrapper:hover .event-dd__list {
  max-height: 600px; /* Large enough to fit all upcoming items */
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* Rotate arrow on hover */
.event-dd__arrow {
  font-size: 10px;
  margin-left: auto;
  transition: transform 0.3s ease;
}
.offer-choices__wrapper:hover .event-dd__arrow {
  transform: rotate(180deg);
}

/* 3. Individual List Items */
.event-dd__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
  margin-bottom: 0;
  background: var(--primary-100);
}
.event-dd__item:last-child {
  border-bottom: none;
}
.event-dd__item:hover {
  background: var(--primary-150);
}

/* Hide non-first items visually until hovered, but keep them in DOM */
.event-dd__item:not(.is-first) {
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.offer-choices__wrapper:hover .event-dd__item:not(.is-first) {
  opacity: 1;
}

/* Typography & Buttons */
.event-dd__info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-grow: 1;
  margin-right: 16px;
  min-width: 0; 
}

.event-dd__title {
  color: var(--primary-900);
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}
.event-dd__date {
  font-weight: 700;
  color: #111;
  white-space: nowrap;
}

.event-dd__btn {
  display: inline-block;
  padding: 6px 12px;
  background: var(--primary-500);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}
.event-dd__btn:hover {
  background: var(--primary-700);
}
