:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  color: #25231f;
  background: #f7f5f0;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
}

.shop-transition {
  display: grid;
  grid-template-rows: 1fr auto;
  background: #f7f5f0;
}

.shop-transition__main {
  display: grid;
  place-items: center;
  width: 100%;
  padding: clamp(4rem, 12vw, 9rem) 1.5rem;
}

.shop-transition__content {
  width: min(100%, 46rem);
  padding: clamp(2.5rem, 7vw, 5rem);
  text-align: center;
  background: #ffffff;
  border: 1px solid #e2ddd3;
  box-shadow: 0 1rem 3rem rgba(52, 46, 36, 0.08);
}

.shop-transition__publisher {
  margin: 0 0 1.5rem;
  color: #776c5b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-transition h1 {
  max-width: 38rem;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.12;
  text-wrap: balance;
}

.shop-transition__message {
  max-width: 38rem;
  margin: 2rem auto 0;
  color: #554f46;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
}

.shop-transition__footer {
  padding: 0 1.5rem 2rem;
  color: #776c5b;
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 40rem) {
  .shop-transition__main {
    padding: 1rem;
  }

  .shop-transition__content {
    padding: 3rem 1.5rem;
  }

  .shop-transition__message {
    line-height: 1.65;
  }
}
