:root {
  --asu-magenta: #e50068;
  --asu-magenta-dark: #b80054;
  --asu-amber: #ffb629;
  --asu-ink: #1d2433;
  --asu-muted: #667085;
  --asu-soft: #f4f5f7;
  --asu-line: #e5e7eb;
  --asu-white: #fff;
  --asu-radius: 22px;
  --asu-shadow: 0 18px 50px rgba(24, 31, 44, .11);
}

.asu-shell {
  box-sizing: border-box;
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.asu-universe,
.asu-brands {
  color: var(--asu-ink);
}

.asu-universe *,
.asu-brands *,
.asu-home-universes * {
  box-sizing: border-box;
}

.asu-eyebrow {
  margin: 0 0 10px;
  color: var(--asu-magenta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.asu-hero {
  position: relative;
  width: 100vw;
  min-height: clamp(500px, 61vw, 690px);
  margin-left: calc(50% - 50vw);
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(12, 17, 27, .88) 0%, rgba(12, 17, 27, .66) 38%, rgba(12, 17, 27, .08) 74%),
    var(--asu-hero);
  background-position: center;
  background-size: cover;
}

.asu-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--asu-magenta) 0 64%, var(--asu-amber) 64%);
}

.asu-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 90px;
}

.asu-hero .asu-eyebrow {
  color: #ffcf72;
}

.asu-hero h1,
.asu-brand-directory-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--asu-white);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .96;
  text-transform: uppercase;
}

.asu-hero__intro {
  max-width: 650px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.asu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.asu-button:hover {
  transform: translateY(-2px);
}

.asu-button--primary {
  color: #fff !important;
  background: var(--asu-magenta);
  box-shadow: 0 12px 30px rgba(229, 0, 104, .35);
}

.asu-button--primary:hover {
  background: var(--asu-magenta-dark);
}

.asu-section {
  padding-block: clamp(62px, 8vw, 104px);
}

.asu-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 34px;
}

.asu-section-heading h2,
.asu-guide h2 {
  max-width: 760px;
  margin: 0;
  color: var(--asu-ink);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.asu-section-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--asu-muted);
  line-height: 1.65;
}

.asu-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.asu-category-card {
  position: relative;
  min-height: 290px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--asu-line);
  border-radius: var(--asu-radius);
  color: var(--asu-ink) !important;
  background: #fff;
  text-decoration: none !important;
  box-shadow: 0 8px 30px rgba(24, 31, 44, .05);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.asu-category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 0, 104, .34);
  box-shadow: var(--asu-shadow);
}

.asu-category-card__visual {
  width: 82px;
  height: 82px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff1f7, #fff8e9);
}

.asu-category-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.asu-category-card__visual svg {
  width: 46px;
  height: 46px;
  fill: var(--asu-magenta);
}

.asu-category-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.asu-category-card__body strong {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.18;
}

.asu-category-card__body > span {
  color: var(--asu-muted);
  font-size: 14px;
  line-height: 1.5;
}

.asu-category-card__body small {
  margin-top: auto;
  padding-top: 18px;
  color: var(--asu-magenta-dark);
  font-size: 12px;
  font-weight: 800;
}

.asu-card-arrow {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--asu-magenta);
  font-size: 24px;
  transition: transform .2s ease;
}

.asu-category-card:hover .asu-card-arrow {
  transform: translateX(4px);
}

.asu-guide {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 83% 20%, rgba(229, 0, 104, .48), transparent 33%),
    linear-gradient(125deg, #1d2433, #30394b);
}

.asu-guide::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(255, 182, 41, .12);
  border-radius: 50%;
}

.asu-guide__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(72px, 9vw, 118px);
}

.asu-guide h2 {
  color: #fff;
}

.asu-guide p:not(.asu-eyebrow) {
  max-width: 760px;
  margin: 24px 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.7;
}

.asu-guide .asu-text-link {
  color: #fff !important;
}

.asu-text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--asu-magenta-dark) !important;
  font-weight: 800;
  text-decoration: none !important;
}

.asu-text-link span {
  font-size: 22px;
  transition: transform .2s ease;
}

.asu-text-link:hover span {
  transform: translateX(4px);
}

.asu-section--products {
  padding-bottom: 54px;
}

.asu-products ul.products {
  margin: 0 !important;
}

.asu-products li.product {
  overflow: hidden;
  border: 1px solid var(--asu-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(24, 31, 44, .05);
}

.asu-products li.product .woocommerce-loop-product__link {
  padding: 0 15px 8px;
}

.asu-products li.product .button {
  margin: 0 15px 16px !important;
}

.asu-section--brands {
  padding-top: 42px;
}

.asu-brand-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.asu-brand-chips a {
  min-height: 92px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--asu-line);
  border-radius: 18px;
  color: var(--asu-ink) !important;
  background: #fff;
  text-decoration: none !important;
  transition: border-color .2s ease, transform .2s ease;
}

.asu-brand-chips a:hover {
  transform: translateY(-3px);
  border-color: var(--asu-magenta);
}

.asu-brand-chips strong {
  font-size: 20px;
}

.asu-brand-chips span {
  margin-top: 3px;
  color: var(--asu-muted);
  font-size: 13px;
}

.asu-section--journeys {
  padding-top: 18px;
}

.asu-journey-grid,
.asu-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.asu-journey-card {
  min-height: 154px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--asu-line);
  border-radius: 20px;
  color: var(--asu-ink) !important;
  background: #fff;
  box-shadow: 0 10px 30px rgba(24, 31, 44, .06);
  text-decoration: none !important;
  transition: transform .2s ease, border-color .2s ease;
}

.asu-journey-card:hover {
  transform: translateY(-4px);
  border-color: var(--asu-magenta);
}

.asu-journey-card > b {
  color: var(--asu-magenta);
  font-size: 13px;
}

.asu-journey-card > span {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.asu-journey-card strong {
  font-size: 19px;
  line-height: 1.2;
}

.asu-journey-card small {
  color: var(--asu-muted);
  font-size: 13px;
  line-height: 1.5;
}

.asu-journey-card i {
  color: var(--asu-magenta);
  font-style: normal;
  font-size: 22px;
}

.asu-section--tools {
  width: min(1240px, calc(100% - 40px));
  margin-bottom: clamp(62px, 8vw, 104px);
  padding: clamp(34px, 5vw, 58px);
  border-radius: 28px;
  background: linear-gradient(135deg, #fff1f7, #fff9e9);
}

.asu-tool-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.asu-tool-card {
  min-height: 188px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(229, 0, 104, .14);
  border-radius: 20px;
  color: var(--asu-ink) !important;
  background: rgba(255, 255, 255, .9);
  text-decoration: none !important;
}

.asu-tool-card > span {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--asu-magenta);
}

.asu-tool-card strong {
  font-size: 21px;
}

.asu-tool-card small {
  margin: 7px 0 18px;
  color: var(--asu-muted);
  line-height: 1.5;
}

.asu-tool-card b {
  margin-top: auto;
  color: var(--asu-magenta-dark);
  font-size: 13px;
}

.asu-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.asu-article-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--asu-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(24, 31, 44, .08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.asu-article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 0, 104, .28);
  box-shadow: 0 22px 50px rgba(24, 31, 44, .14);
}

.asu-article-card > a {
  min-height: 300px;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(190px, 42%) minmax(0, 1fr);
  color: var(--asu-ink) !important;
  text-decoration: none !important;
}

.asu-article-card__visual {
  position: relative;
  display: block;
  min-height: 300px;
  overflow: hidden;
  background-color: #2b2333;
  background-image:
    linear-gradient(145deg, rgba(29, 36, 51, .04), rgba(229, 0, 104, .22)),
    var(--asu-article-image, radial-gradient(circle at 28% 24%, rgba(255, 182, 41, .78), transparent 22%), linear-gradient(145deg, #292334, #b80054));
  background-position: center;
  background-size: cover;
}

.asu-article-card__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(0deg, rgba(20, 24, 34, .32), transparent);
}

.asu-article-card__body {
  min-width: 0;
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.asu-article-card__body small {
  align-self: flex-start;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--asu-magenta);
  background: rgba(229, 0, 104, .08);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}

.asu-article-card__body strong {
  display: -webkit-box;
  margin: 13px 0 9px;
  overflow: hidden;
  overflow-wrap: anywhere;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.asu-article-card__body > span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--asu-muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.asu-article-card__body b {
  margin-top: auto;
  padding-top: 20px;
  color: var(--asu-magenta-dark);
  font-size: 13px;
  letter-spacing: .01em;
}

.asu-related-universes {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-block: clamp(54px, 7vw, 84px);
  color: #fff;
  background: #171d29;
}

.asu-related-universes h2 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
}

.asu-related-universes .asu-shell > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.asu-related-universes a {
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  color: #fff !important;
  text-decoration: none !important;
}

.asu-related-universes a small {
  color: #ffcf72;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.asu-related-universes a strong {
  margin: 5px 0 13px;
  font-size: 22px;
}

.asu-related-universes a span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.asu-home-universes {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-block: clamp(72px, 9vw, 112px);
  background: #171d29;
}

.asu-section-heading--light h2,
.asu-section-heading--light > p {
  color: #fff;
}

.asu-section-heading--light > p {
  color: rgba(255, 255, 255, .67);
}

.asu-universe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.asu-universe-card {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: 24px;
  color: #fff !important;
  background-image: linear-gradient(0deg, rgba(10, 14, 22, .92), rgba(10, 14, 22, .02) 72%), var(--asu-card-bg);
  background-position: center;
  background-size: cover;
  text-decoration: none !important;
  transition: transform .25s ease, box-shadow .25s ease;
}

.asu-universe-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: border-color .2s ease;
}

.asu-universe-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
}

.asu-universe-card:hover::after {
  border-color: var(--asu-magenta);
}

.asu-universe-card__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.asu-universe-card__content small {
  margin-bottom: 4px;
  color: #ffcf72;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.asu-universe-card__content strong {
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}

.asu-universe-card__content > span {
  margin-top: 18px;
  font-weight: 700;
}

.asu-universe-card__content b {
  margin-left: 5px;
  color: var(--asu-magenta);
  font-size: 20px;
}

.asu-home-brands-link {
  margin-top: 30px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .66);
}

.asu-home-brands-link a {
  color: #fff !important;
  font-weight: 800;
  text-decoration: none !important;
}

.asu-brand-directory-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-block: clamp(82px, 10vw, 130px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 25%, rgba(255, 182, 41, .35), transparent 22%),
    radial-gradient(circle at 72% 80%, rgba(229, 0, 104, .55), transparent 30%),
    #171d29;
}

.asu-brand-directory-hero h1 {
  max-width: 950px;
  font-size: clamp(42px, 6vw, 78px);
}

.asu-brand-directory-hero p:not(.asu-eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.65;
}

.asu-brand-search {
  position: relative;
  max-width: 620px;
  margin-top: 34px;
  display: block;
}

.asu-brand-search input {
  width: 100%;
  min-height: 58px;
  padding: 14px 54px 14px 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: var(--asu-ink);
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.asu-brand-search > span:not(.screen-reader-text) {
  position: absolute;
  top: 50%;
  right: 21px;
  color: var(--asu-magenta);
  font-size: 27px;
  transform: translateY(-50%);
}

.asu-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.asu-brand-card {
  min-height: 112px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  border: 1px solid var(--asu-line);
  border-radius: 17px;
  color: var(--asu-ink) !important;
  background: #fff;
  text-decoration: none !important;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.asu-brand-card:hover {
  transform: translateY(-3px);
  border-color: var(--asu-magenta);
  box-shadow: 0 14px 34px rgba(24, 31, 44, .09);
}

.asu-brand-card strong {
  font-size: 18px;
}

.asu-brand-card span {
  grid-column: 1;
  color: var(--asu-muted);
  font-size: 13px;
}

.asu-brand-card b {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--asu-magenta);
  font-size: 22px;
}

.affsync-brand-directory .entry-header {
  display: none;
}

.asu-brand-alphabet {
  position: sticky;
  top: 0;
  z-index: 5;
  margin-top: 38px;
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  background: #fff;
}

.asu-brand-alphabet a {
  min-width: 35px;
  padding: 7px;
  border: 1px solid var(--asu-line);
  border-radius: 9px;
  color: var(--asu-ink) !important;
  font-weight: 800;
  text-align: center;
  text-decoration: none !important;
}

.asu-brand-alphabet a:hover {
  border-color: var(--asu-magenta);
  color: var(--asu-magenta) !important;
}

.asu-brand-letter {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  border-top: 1px solid var(--asu-line);
  scroll-margin-top: 80px;
}

.asu-brand-letter h2 {
  margin: 0;
  color: var(--asu-magenta);
  font-size: 42px;
}

.asu-brand-letter > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px 18px;
}

.asu-brand-letter a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--asu-ink) !important;
  text-decoration: none !important;
}

.asu-brand-letter a:hover span {
  color: var(--asu-magenta);
}

.asu-brand-letter small {
  color: var(--asu-muted);
}

.asu-brand-empty {
  padding: 60px 0;
  color: var(--asu-muted);
  text-align: center;
}

.asu-home-featured-brands {
  margin-top: clamp(56px, 7vw, 82px);
  padding-top: clamp(42px, 6vw, 68px);
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.asu-home-featured-brands__head {
  margin-bottom: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.asu-home-featured-brands__head h3 {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(29px, 4vw, 46px);
  font-weight: 950;
  letter-spacing: -.04em;
}

.asu-home-featured-brands__head > p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  line-height: 1.65;
}

.asu-home-featured-brands__grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 11px;
}

.asu-home-featured-brand {
  min-width: 0;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  color: #fff !important;
  background: rgba(255, 255, 255, .07);
  text-decoration: none !important;
  transition: .25s ease;
}

.asu-home-featured-brand:hover {
  border-color: var(--asu-magenta);
  background: rgba(255, 255, 255, .11);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .22);
  transform: translateY(-4px);
}

.asu-home-featured-brand__logo {
  min-width: 0;
  height: 96px;
  padding: 17px;
  display: grid;
  place-items: center;
  background: #fff;
}

.asu-home-featured-brand__logo img {
  width: 100%;
  max-width: 145px;
  height: 62px;
  display: block;
  object-fit: contain;
}

.asu-home-featured-brand__body {
  min-width: 0;
  padding: 13px 14px;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.asu-home-featured-brand__body strong {
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.asu-home-featured-brand__body b {
  color: #ff4c9a;
  font-size: 17px;
}

.asu-home-brand-highlight {
  padding: 11px 17px;
  border: 1px solid rgba(229, 0, 104, .7);
  border-radius: 999px;
  color: #fff !important;
  background: rgba(229, 0, 104, .14);
}

.asu-home-brand-highlight:hover {
  color: #fff !important;
  background: var(--asu-magenta);
}

.premium-brand-page {
  --brand-accent: #e50068;
  --brand-pink: #e50068;
  --brand-amber: #ffb629;
  --brand-ink: #202735;
  --brand-muted: #667085;
}

.premium-brand-page--new-balance { --brand-accent: #cf0a2c; }
.premium-brand-page--hoka { --brand-accent: #00a6ce; }
.premium-brand-page--brooks { --brand-accent: #0067b1; }
.premium-brand-page--petzl { --brand-accent: #f2b700; }
.premium-brand-page--patagonia { --brand-accent: #d56f32; }
.premium-brand-page--craft { --brand-accent: #e12b38; }

body:has(.premium-brand-page) .entry-header {
  display: none;
}

.premium-brand-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(70px, 9vw, 122px) max(20px, calc((100vw - 1240px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 83% 16%, color-mix(in srgb, var(--brand-accent) 48%, transparent), transparent 25%),
    linear-gradient(125deg, #171d29 26%, #48203a 100%);
}

.premium-brand-hero__inner {
  width: min(1240px, 100%);
  margin: auto;
}

.premium-brand-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 390px);
  align-items: center;
  gap: 50px;
}

.premium-brand-hero__product {
  width: min(100%, 370px);
  padding: 17px 17px 20px;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 24px;
  color: var(--brand-ink);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
  transform: rotate(3deg);
  transition: .25s ease;
}

.premium-brand-hero__product:hover {
  transform: rotate(0deg) translateY(-4px);
}

.premium-brand-hero__product small {
  display: block;
  color: var(--brand-pink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.premium-brand-hero__product img {
  width: 100%;
  height: 245px;
  margin: 4px auto 0;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 12px rgba(25, 30, 38, .2));
}

.premium-brand-hero__product strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.premium-brand-hero__product a {
  margin-top: 10px;
  display: inline-flex;
  color: var(--brand-pink) !important;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none !important;
}

.premium-brand-hero__fallback {
  height: 245px;
  display: grid;
  place-items: center;
  color: var(--brand-accent);
  font-size: 90px;
}

.premium-brand-kicker {
  margin: 0 0 13px;
  color: var(--brand-pink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.premium-brand-hero .premium-brand-kicker { color: #ffcf72; }

.premium-brand-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .98;
}

.premium-brand-hero p:not(.premium-brand-kicker) {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
  line-height: 1.65;
}

.premium-brand-shell {
  width: min(1240px, calc(100% - 40px));
  margin: auto;
}

.premium-brand-section { padding: clamp(58px, 8vw, 96px) 0; }

.premium-brand-intro h2,
.premium-brand-models h2,
.premium-brand-criteria h2,
.premium-brand-products h2,
.premium-brand-faq h2 {
  margin: 0;
  color: var(--brand-ink);
  font-size: clamp(31px, 4vw, 54px);
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: 1.03;
}

.premium-brand-intro__text,
.premium-brand-section-intro {
  max-width: 900px;
  margin: 22px 0 0;
  color: #596273;
  font-size: 18px;
  line-height: 1.75;
}

.premium-brand-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.premium-brand-card {
  min-height: 350px;
  display: grid;
  grid-template-rows: 170px minmax(0, 1fr);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  color: var(--brand-ink) !important;
  background: #fff;
  box-shadow: 0 12px 30px rgba(32, 41, 54, .06);
  text-decoration: none !important;
  transition: .2s ease;
}

.premium-brand-card:hover {
  border-color: var(--brand-accent);
  transform: translateY(-3px);
}

.premium-brand-card__media {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 170px;
  display: block;
  overflow: hidden;
  background: linear-gradient(145deg, #fff, #f4edf1);
}

.premium-brand-card__media img {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 14px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #fff;
  transition: transform .25s ease;
}

.premium-brand-card:hover img { transform: scale(1.05); }

.premium-brand-card__fallback {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--brand-accent);
  font-size: 58px;
}

.premium-brand-card__body {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.premium-brand-card small {
  color: var(--brand-pink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
}

.premium-brand-card strong {
  margin-top: 10px;
  font-size: 21px;
  line-height: 1.14;
}

.premium-brand-card__body > span {
  margin-top: 10px;
  color: var(--brand-muted);
  line-height: 1.55;
}

.premium-brand-card b {
  margin-top: auto;
  padding-top: 15px;
  color: var(--brand-pink);
  font-size: 13px;
}

.premium-brand-models,
.premium-brand-faq { background: #f7f8fa; }

.premium-brand-model-cloud {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.premium-brand-model-chip {
  padding: 10px 13px;
  border: 1px solid #e4e7ec;
  border-radius: 999px;
  color: var(--brand-ink);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.premium-brand-choice-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.premium-brand-choice-card {
  padding: 24px;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(32, 41, 54, .06);
}

.premium-brand-choice-card h3 {
  margin: 0;
  color: var(--brand-ink);
  font-size: 20px;
}

.premium-brand-choice-card p {
  margin: 12px 0 0;
  color: var(--brand-muted);
  line-height: 1.65;
}

.premium-brand-products { background: #fff; }

.premium-brand-product-section {
  padding: 54px 0;
  border-top: 1px solid #e4e7ec;
  scroll-margin-top: 30px;
}

.premium-brand-product-section:first-of-type { border-top: 0; }

.premium-brand-product-section__head {
  margin-bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
}

.premium-brand-product-section__head h3 {
  margin: 0;
  color: var(--brand-ink);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 950;
  letter-spacing: -.04em;
}

.premium-brand-product-section__head p:not(.premium-brand-kicker) {
  max-width: 730px;
  margin: 11px 0 0;
  color: var(--brand-muted);
  line-height: 1.6;
}

.premium-brand-product-section__head > a {
  flex: 0 0 auto;
  color: var(--brand-pink) !important;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none !important;
}

.premium-brand-faq-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.premium-brand-faq-item {
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  background: #fff;
}

.premium-brand-faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  color: var(--brand-ink);
  font-weight: 900;
  list-style: none;
}

.premium-brand-faq-item summary::-webkit-details-marker { display: none; }

.premium-brand-faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--brand-muted);
  line-height: 1.7;
}

.premium-brand-source {
  margin-top: 24px;
  color: #7b8493;
  font-size: 13px;
  line-height: 1.6;
}

.premium-brand-source a {
  color: var(--brand-pink) !important;
  font-weight: 800;
}

.asu-single-brand-link {
  margin: 0 0 12px;
  color: var(--asu-muted);
  font-size: 13px;
}

.asu-single-brand-link span {
  margin-right: 5px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.asu-single-brand-link a {
  color: var(--asu-magenta) !important;
  font-weight: 900;
  text-decoration: none !important;
}

.affsync-brand-archive .woocommerce-products-header__title,
.affsync-brand-archive .term-description {
  display: none;
}

.asu-brand-archive-hero {
  margin-bottom: 34px;
  padding: clamp(34px, 6vw, 68px);
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 182, 41, .38), transparent 25%),
    linear-gradient(125deg, #171d29 35%, #35233a);
}

.asu-brand-archive-hero h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -.05em;
}

.asu-brand-archive-hero > p:not(.asu-eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.6;
}

.asu-brand-archive-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.asu-brand-archive-links a {
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
}

.asu-brand-archive-links a:hover {
  border-color: var(--asu-magenta);
  background: var(--asu-magenta);
}

@media (max-width: 1024px) {
  .asu-home-featured-brands__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .premium-brand-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 310px);
    gap: 28px;
  }

  .premium-brand-grid,
  .premium-brand-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asu-category-grid,
  .asu-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asu-universe-card {
    min-height: 380px;
  }

  .asu-article-card > a {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .asu-article-card__visual {
    min-height: 190px;
  }

  .asu-article-card__body {
    min-height: 270px;
  }
}

@media (max-width: 767px) {
  .asu-home-featured-brands__head {
    display: block;
  }

  .asu-home-featured-brands__head > p {
    margin-top: 13px;
  }

  .asu-home-featured-brands__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .asu-home-featured-brand { min-height: 137px; }
  .asu-home-featured-brand__logo { height: 84px; padding: 13px; }
  .asu-home-featured-brand__logo img { height: 55px; }
  .asu-home-featured-brand__body { padding: 11px 12px; }
  .asu-home-featured-brand__body strong { font-size: 14px; }

  .premium-brand-shell { width: calc(100% - 28px); }
  .premium-brand-hero { padding: 62px 20px 78px; }
  .premium-brand-hero__layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 34px;
  }
  .premium-brand-hero__product {
    width: min(100%, 330px);
    align-self: center;
    transform: rotate(2deg);
  }
  .premium-brand-hero__product img { height: 205px; }
  .premium-brand-grid,
  .premium-brand-choice-grid { grid-template-columns: 1fr; }
  .premium-brand-product-section__head { display: block; }
  .premium-brand-product-section__head > a {
    margin-top: 15px;
    display: inline-flex;
  }
  .asu-shell {
    width: min(100% - 28px, 1240px);
  }

  .asu-hero {
    min-height: 610px;
    align-items: end;
    background-image:
      linear-gradient(0deg, rgba(12, 17, 27, .94) 0%, rgba(12, 17, 27, .55) 55%, rgba(12, 17, 27, .1) 100%),
      var(--asu-hero);
    background-position: 66% center;
  }

  .asu-hero__inner {
    padding-block: 74px 66px;
  }

  .asu-hero h1,
  .asu-brand-directory-hero h1 {
    font-size: 46px;
  }

  .asu-hero__intro {
    font-size: 17px;
  }

  .asu-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .asu-category-grid,
  .asu-brand-chips,
  .asu-brand-grid,
  .asu-journey-grid,
  .asu-tool-grid,
  .asu-article-grid,
  .asu-related-universes .asu-shell > div {
    grid-template-columns: 1fr;
  }

  .asu-brand-letter {
    grid-template-columns: 1fr;
  }

  .asu-brand-letter > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asu-section--tools {
    width: min(100% - 28px, 1240px);
    padding: 24px;
  }

  .asu-article-card__visual {
    min-height: 205px;
  }

  .asu-article-card__body {
    min-height: 0;
    padding: 21px;
  }

  .asu-article-card__body strong {
    font-size: 19px;
    -webkit-line-clamp: 4;
  }

  .asu-category-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 16px;
  }

  .asu-category-card__visual {
    width: 70px;
    height: 70px;
    margin: 0;
  }

  .asu-card-arrow {
    display: none;
  }

  .asu-universe-grid {
    grid-template-columns: 1fr;
  }

  .asu-universe-card {
    min-height: 360px;
  }

  .asu-home-brands-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .asu-products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
