.storefront {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 26px;
  align-items: center;
  max-width: 760px;
  margin: 42px auto 24px;
  padding: 30px 36px;
  text-align: left;
  background: var(--blush);
  border-top: 3px solid var(--coral);
  border-bottom: 1px solid #e8bdb2;
}

.storefront-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  background: var(--coral);
  color: var(--cream);
}

.storefront-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.storefront-kicker {
  margin: 0 0 7px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.storefront h2 {
  max-width: 560px;
  margin: 0 0 15px;
  color: var(--navy);
  font: normal 25px/1.22 Georgia, serif;
}

.storefront a {
  display: inline-block;
  padding-bottom: 3px;
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.storefront a span {
  margin-left: 7px;
  color: var(--coral);
}

.explore-bridge {
  margin: 30px auto 0;
  color: #756b62;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .storefront {
    display: block;
    position: relative;
    margin: 36px auto 22px;
    padding: 24px 21px;
  }

  .storefront-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
  }

  .storefront-icon svg {
    width: 27px;
    height: 27px;
  }

  .storefront-kicker {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding-right: 62px;
  }

  .storefront h2 {
    font-size: 20px;
  }

  .storefront a {
    font-size: 13px;
  }

  .explore-bridge {
    max-width: 290px;
    margin-top: 27px;
  }
}
