.ic-prototype .ic-page-default {
  --ic-page-surface: var(--ic-neumorphic-surface);
  --ic-page-surface-raised: var(--ic-neumorphic-surface-strong);
  --ic-page-surface-muted: var(--ic-neumorphic-surface-muted);
  --ic-page-ink: #211d1b;
  --ic-page-muted: #756e66;
  min-height: calc(100vh - var(--ic-header-compact-height, 72px));
  padding: clamp(44px, 6vw, 78px) 0 clamp(76px, 9vw, 128px);
  background:
    radial-gradient(ellipse at 50% 24%, rgba(235, 186, 134, 0.12) 0, rgba(53, 122, 56, 0.05) 28%, transparent 55%),
    linear-gradient(180deg, #080808 0%, #111210 52%, #181916 100%);
}

.ic-prototype .ic-page-default__shell {
  width: 100%;
}

.ic-prototype .ic-page-default__heading {
  display: grid;
  justify-items: center;
  width: min(960px, calc(100vw - 48px));
  margin-inline: auto;
  text-align: center;
}

.ic-prototype .ic-page-default__eyebrow {
  margin: 0 0 9px;
  color: var(--ic-gold);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ic-prototype .ic-page-default__heading h1 {
  margin: 0;
  color: #fff;
  font-family: var(--ic-display);
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
  text-wrap: balance;
}

.ic-prototype .ic-page-default__heading > span {
  width: min(220px, 34vw);
  height: 1px;
  margin-top: 22px;
  background: linear-gradient(90deg, transparent, rgba(235, 186, 134, 0.72), transparent);
}

.ic-prototype .ic-page-default__stage {
  position: relative;
  isolation: isolate;
  width: min(1296px, calc(100vw - 32px));
  min-width: 0;
  margin: clamp(38px, 5vw, 66px) auto 0;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-bottom-color: rgba(46, 57, 47, 0.16);
  border-radius: 10px;
  background: var(--ic-page-surface);
  box-shadow:
    -10px -10px 28px rgba(255, 255, 255, 0.11),
    0 36px 86px rgba(0, 0, 0, 0.45),
    18px 22px 44px rgba(0, 0, 0, 0.3),
    inset 1px 1px 0 rgba(255, 255, 255, 0.88),
    inset -1px -1px 0 rgba(46, 57, 47, 0.08);
}

.ic-prototype .ic-page-default__stage::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  box-sizing: border-box;
  padding: 0;
  border-radius: inherit;
  box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.42);
  content: "";
  pointer-events: none;
  -webkit-mask: none;
  mask: none;
}

.ic-prototype .ic-page-default__content,
.ic-prototype .ic-page-default__empty {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(1240px, 100%);
  min-height: clamp(220px, 32vh, 420px);
  margin: 0 auto;
  padding: clamp(34px, 4.5vw, 64px);
  color: var(--ic-page-ink);
}

.ic-prototype .ic-page-default__content > :first-child {
  margin-top: 0;
}

.ic-prototype .ic-page-default__content > :last-child {
  margin-bottom: 0;
}

.ic-prototype .ic-page-default__content h2,
.ic-prototype .ic-page-default__content h3,
.ic-prototype .ic-page-default__content h4 {
  color: var(--ic-page-ink);
  font-family: var(--ic-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.ic-prototype .ic-page-default__content h2 {
  font-size: clamp(32px, 4vw, 50px);
}

.ic-prototype .ic-page-default__content h3 {
  font-size: clamp(25px, 3vw, 34px);
}

.ic-prototype .ic-page-default__content p,
.ic-prototype .ic-page-default__content li {
  color: var(--ic-page-muted);
}

.ic-prototype .ic-page-default__content a {
  color: var(--ic-cloth-dark);
  text-underline-offset: 0.18em;
}

.ic-prototype .ic-page-default__content img {
  max-width: 100%;
  height: auto;
}

.ic-prototype .ic-page-default__pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

@media (max-width: 720px) {
  .ic-prototype .ic-page-default {
    padding-top: 38px;
  }

  .ic-prototype .ic-page-default__heading {
    width: min(100% - 32px, 960px);
  }

  .ic-prototype .ic-page-default__heading h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .ic-prototype .ic-page-default__stage {
    width: calc(100vw - 16px);
    border-radius: 10px;
  }

  .ic-prototype .ic-page-default__stage::before {
    padding: 0;
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.44);
  }

  .ic-prototype .ic-page-default__content,
  .ic-prototype .ic-page-default__empty {
    width: calc(100% - 16px);
    min-height: 180px;
    padding: 26px 20px 34px;
  }
}
