/* Ark System visual identity override.
   Loaded after the base document so the new vector wordmark can be deployed
   without coupling the brand asset to the React bundle. */
body .brand {
  position: relative;
  gap: 0;
  padding: 0;
  line-height: 1;
  font-size: 0;
}

.brand::before {
  content: '';
  display: block;
  width: 186px;
  aspect-ratio: 900 / 221;
  background: url('/ark-system-logo.svg') center / contain no-repeat;
  flex: none;
}

.brand > .brand-mark {
  display: none;
}

.brand > span:last-child {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body .footer-brand::before {
  width: 222px;
}

.product-grid article.featured-product {
  border-color: rgba(193, 18, 31, .24);
  background: linear-gradient(145deg, rgba(230, 57, 70, .055), #fff 58%);
}

.product-status {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(29, 53, 87, .07);
  color: #1d3557;
  font-size: .76rem;
  font-weight: 700;
}

.product-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: #c1121f;
  font-size: .92rem;
  font-weight: 750;
}

.product-action:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 600px) {
  .brand::before {
    width: 158px;
  }

  body .footer-brand::before {
    width: 205px;
  }
}
