/* Promo banner: "planning for 2027" + past events nav (identical across all MM UK yearly sites).
   Hand-written, not part of the Tailwind build — kept separate from mm24uk.dist.css so it
   survives untouched if/when that file gets regenerated by the theme's build process. */
.promo-banner {
  display: flex;
  align-items: center;
  min-height: 297px;
  padding: 20px 20px;
  background: linear-gradient(100deg, #ff0090 0%, #b200e6 100%);
  text-align: center;
}
@media screen and (min-width: 900px) {
  .promo-banner {
    min-height: 115px;
    padding: 14px 20px;
    text-align: left;
  }
}
.promo-banner .container {
  margin: 0 auto;
  max-width: 1200px;
}
.promo-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .promo-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 75px;
  }
}
.promo-banner__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 900px) {
  .promo-banner__cta {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.promo-banner__message {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
.promo-banner__button {
  display: inline-block;
  flex: 0 0 auto;
  padding: 10px 26px;
  border: 1.5px solid #fff;
  border-radius: 999px;
  color: #ff0090;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
.promo-banner__button:hover {
  background: transparent;
  color: #fff;
}
.promo-banner__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}
@media screen and (min-width: 900px) {
  .promo-banner__divider {
    display: none;
  }
}
.promo-banner__years {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 900px) {
  .promo-banner__years {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
}
.promo-banner__years-label {
  color: #fff;
  opacity: 1;
  font-size: 16px;
  white-space: nowrap;
}
.promo-banner__years-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.promo-banner__years-item {
  font-size: 16px;
  margin: 0;
}
.promo-banner__years-item a {
  color: #fff;
  opacity: 1;
  text-decoration: none;
}
.promo-banner__years-item a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.promo-banner__years-item--current span {
  color: #fff;
  opacity: 1;
  font-weight: 700;
}
