/* The announcement hangs from the header like a soft-edged club ribbon. */
.club-announcement {
  min-height: 88px;
  overflow: hidden;
  padding-bottom: 12px;
  border-bottom: 0;
  background: var(--cream);
  isolation: isolate;
}

.club-announcement::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  width: min(82vw, 1540px);
  height: 76px;
  border: 3px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 72px 72px / 0 0 52px 52px;
  background: var(--yellow);
  box-shadow: 0 6px 0 rgba(33, 27, 46, .12);
  transform: translateX(-50%);
  pointer-events: none;
}

.club-announcement::after {
  z-index: 1;
  right: 12%;
}

.club-announcement__inner {
  z-index: 2;
  width: min(calc(82vw - 96px), 1160px);
  min-height: 76px;
}

@media (max-width: 899px) {
  .club-announcement {
    min-height: 80px;
    padding: 0 10px 10px;
  }

  .club-announcement::before {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    height: auto;
    border-radius: 0 0 34px 34px / 0 0 26px 26px;
    transform: none;
  }

  .club-announcement::after { right: 7%; }

  .club-announcement__inner {
    width: min(calc(100% - 42px), 1160px);
    min-height: 70px;
  }
}

@media (max-width: 420px) {
  .club-announcement {
    min-height: 76px;
    padding-inline: 7px;
    padding-bottom: 8px;
  }

  .club-announcement::before {
    right: 7px;
    bottom: 8px;
    left: 7px;
    border-radius: 0 0 25px 25px / 0 0 20px 20px;
  }

  .club-announcement__inner {
    width: calc(100% - 30px);
    min-height: 68px;
  }
}
