.temporary-notice[hidden] {
  display: none;
}

.temporary-notice {
  background: #2a0b58;
  padding: 38px 80px;
}

.temporary-notice__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 34px;
  color: #2a0b58;
  background: #fff;
  border-left: 6px solid #f78c3c;
  border-radius: 12px;
  box-shadow: 0 12px 30px #18063233;
}

.temporary-notice__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  color: #2a0b58;
  background: #ffdede;
  border-radius: 50%;
}

.temporary-notice__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.temporary-notice__label {
  margin: 0 0 5px;
  color: #a94c14;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.temporary-notice__heading {
  margin: 0 0 10px;
  color: #2a0b58;
  font-family: "Playfair Display", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}

.temporary-notice__text,
.temporary-notice__reopening {
  max-width: 820px;
  margin: 0;
  color: #3a3a3a;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
}

.temporary-notice__reopening {
  margin-top: 4px;
}

.temporary-notice strong {
  color: #2a0b58;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .temporary-notice {
    padding: 24px 20px;
  }

  .temporary-notice__inner {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 24px;
    text-align: center;
    border-top: 5px solid #f78c3c;
    border-left: 0;
  }

  .temporary-notice__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto;
  }

  .temporary-notice__heading {
    font-size: 27px;
  }

  .temporary-notice__text,
  .temporary-notice__reopening {
    font-size: 16px;
  }
}
