.website-notice {
  border-bottom: 2px solid #a8996e;
  background: #084533;
  color: #fff;
}

.website-notice__inner {
  box-sizing: border-box;
  display: flex;
  max-width: 1100px;
  align-items: center;
  gap: 14px 28px;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 16px 24px;
}

.website-notice__tag {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: #a8996e;
  font-family: var(--sjm-font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.website-notice__text { min-width: 0; flex: 1 1 300px; }
.website-notice__title { color: #fff; font-family: var(--sjm-font-sans); font-size: 18px; font-weight: 700; line-height: 1.35; }
.website-notice__message { margin-top: 3px; color: rgb(255 255 255 / 80%); font-family: var(--sjm-font-sans); font-size: 15px; line-height: 1.45; text-align: left; }

.website-notice__link {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #fff;
  background: #fff;
  padding: 11px 26px;
  color: #111;
  font-family: var(--sjm-font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.website-notice__link:hover { background: transparent; color: #fff; }

.website-notice__close {
  display: flex;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 45%);
  background: transparent;
  padding: 0;
  color: #fff;
  cursor: pointer;
}

.website-notice__close:hover { background: rgb(255 255 255 / 14%); }

@media (max-width: 47.9375rem) {
  .website-notice__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px 16px;
    padding: 22px 24px 24px;
  }

  .website-notice__tag { grid-column: 1; grid-row: 1; font-size: 16px; }
  .website-notice__text { grid-column: 1 / -1; grid-row: 2; min-width: 0; }
  .website-notice__title { font-size: 23px; }
  .website-notice__message { font-size: 19px; }
  .website-notice__link { grid-column: 1 / -1; grid-row: 3; min-height: 52px; padding: 14px 24px; font-size: 17px; }
  .website-notice__close { grid-column: 2; grid-row: 1; }
}
