.woaw-awards-page {
  --awards-bg: #070503;
  --awards-panel: rgba(17, 12, 9, .8);
  --awards-line: rgba(245, 241, 232, .15);
  --awards-text: #f6f0e8;
  --awards-muted: rgba(246, 240, 232, .64);
  --awards-soft: rgba(246, 240, 232, .08);
  --awards-accent: #f5a128;
  margin: 0;
  color: var(--awards-text);
  background:
    radial-gradient(circle at 78% 7%, rgba(245, 161, 40, .18), transparent 28%),
    radial-gradient(circle at 8% 26%, rgba(255, 227, 178, .08), transparent 28%),
    linear-gradient(180deg, #070503 0%, #0d0906 46%, #050403 100%);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.woaw-awards-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(246, 240, 232, .02) 1px, transparent 1px);
  background-size: 100% 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}

.woaw-awards-page a {
  color: inherit;
  text-decoration: none;
}

.awards-shell {
  width: min(1360px, calc(100% - 48px));
  margin-inline: auto;
}

.woaw-awards-page .awards-nav {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 1000;
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
}

.woaw-awards-page .container.nav-inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 60px;
  padding: 0 10px 0 22px;
  border: 1px solid var(--awards-line);
  border-radius: 999px;
  background: rgba(10, 8, 7, .8);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 28px;
}

.woaw-awards-page .woaw-logo-wordmark {
  display: block;
  width: clamp(104px, 8vw, 136px);
  height: auto;
  max-height: 38px;
  object-fit: contain;
}

.woaw-awards-page .footer-logo-wordmark {
  width: 128px;
  max-height: 42px;
}

.woaw-awards-page .links {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woaw-awards-page .links a,
.woaw-awards-page .awards-solutions button,
.awards-selection-link {
  border: 0;
  background: transparent;
  color: rgba(246, 240, 232, .8);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.woaw-awards-page .links a:hover,
.woaw-awards-page .awards-solutions button:hover,
.awards-selection-link:hover {
  color: var(--awards-text);
}

.woaw-awards-page .awards-selection-link {
  position: relative;
  width: 42px;
  height: 42px;
  min-width: 42px;
  padding: 0;
  border: 1px solid rgba(246, 240, 232, .16);
  border-radius: 999px;
  background: rgba(7, 5, 4, .44);
  color: transparent;
  overflow: visible;
}

.woaw-awards-page .awards-selection-link::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 13px;
  width: 17px;
  height: 13px;
  border: 2px solid rgba(246, 240, 232, .88);
  border-top: 0;
  border-radius: 2px 2px 5px 5px;
}

.woaw-awards-page .awards-selection-link::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 9px;
  width: 12px;
  height: 10px;
  border: 2px solid rgba(246, 240, 232, .88);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.woaw-awards-page .awards-selection-link .selection-count {
  position: absolute;
  right: -3px;
  top: -3px;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--awards-accent);
  color: #080808;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.woaw-awards-page .links a:focus-visible,
.woaw-awards-page .awards-solutions button:focus-visible,
.awards-selection-link:focus-visible,
.awards-contact-link:focus-visible,
.awards-mobile-button:focus-visible,
.awards-mobile-panel a:focus-visible {
  outline: 2px solid rgba(245, 161, 40, .92);
  outline-offset: 4px;
}

.awards-solutions {
  position: relative;
}

.awards-solutions button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0;
  cursor: pointer;
}

.awards-solutions-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -22px;
  min-width: 310px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(246, 240, 232, .14);
  border-radius: 20px;
  background: rgba(12, 9, 7, .94);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .46);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.awards-solutions:hover .awards-solutions-menu,
.awards-solutions:focus-within .awards-solutions-menu,
.awards-solutions.is-open .awards-solutions-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.awards-solutions-menu a {
  display: grid;
  gap: 4px;
  padding: 14px 15px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: rgba(246, 240, 232, .8);
}

.awards-solutions-menu a:hover {
  border-color: rgba(246, 240, 232, .11);
  background: rgba(246, 240, 232, .055);
  color: #ffb64a;
}

.awards-solutions-menu span {
  font-size: 13px;
  font-weight: 850;
}

.awards-solutions-menu small {
  color: rgba(246, 240, 232, .5);
  font-size: 12px;
  line-height: 1.35;
}

.awards-solutions-menu .is-priority {
  background: linear-gradient(90deg, rgba(245, 161, 40, .12), rgba(246, 240, 232, .03));
  border-color: rgba(245, 161, 40, .1);
}

.woaw-awards-page .actions {
  display: flex !important;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.awards-selection-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.selection-count {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(246, 240, 232, .16);
  color: rgba(246, 240, 232, .74);
  font-size: 10px;
}

.awards-contact-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px !important;
  min-height: 36px !important;
  height: 36px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  background: var(--awards-accent) !important;
  color: #140d07 !important;
  box-shadow: 0 0 18px rgba(245, 161, 40, .18) !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.awards-contact-link:hover {
  background: #ffb44d !important;
  transform: translateY(-1px);
}

.woaw-awards-page header.nav .actions .awards-contact-link,
.woaw-awards-page header.nav .actions > .btn-lime.awards-contact-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 36px !important;
  height: 36px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  box-shadow: 0 0 18px rgba(245, 161, 40, .18) !important;
}

.awards-mobile-button,
.awards-mobile-panel {
  display: none;
}

.awards-hero {
  position: relative;
  padding: 112px 0 24px;
  overflow: hidden;
}

.awards-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 5, 3, .98) 0%, rgba(7, 5, 3, .72) 42%, rgba(7, 5, 3, .18) 100%);
}

.awards-hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(440px, .92fr);
  align-items: center;
  gap: clamp(30px, 4vw, 56px);
}

.awards-kicker {
  margin: 0 0 16px;
  font-family: var(--font-title);
  font-size: 20px;
  letter-spacing: .03em;
}

.awards-kicker span,
.awards-section-head h2 span {
  color: var(--awards-accent);
}

.awards-hero h1 {
  max-width: 640px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 7vw, 104px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: 0;
}

.awards-hero h1 span,
.awards-final h2 span {
  display: block;
  color: var(--awards-accent);
  font-style: italic;
  font-weight: 500;
}

.awards-lead {
  max-width: 510px;
  margin: 24px 0 0;
  color: rgba(246, 240, 232, .82);
  font-size: 17px;
  line-height: 1.55;
}

.awards-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.awards-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.awards-btn-primary {
  background: var(--awards-accent);
  color: #140d07 !important;
  box-shadow: 0 20px 48px rgba(245, 161, 40, .18);
}

.awards-btn-primary:hover {
  background: #ffb44d;
}

.awards-btn-ghost {
  border: 1px solid rgba(246, 240, 232, .18);
  background: rgba(246, 240, 232, .02);
  color: var(--awards-text);
}

.awards-btn-ghost:hover {
  border-color: rgba(246, 240, 232, .32);
  background: rgba(246, 240, 232, .06);
}

.awards-hero-media {
  position: relative;
  width: min(100%, 560px);
  height: min(48vw, 500px);
  min-height: 440px;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(246, 240, 232, .11);
  background: #0f0b08;
  box-shadow: inset 0 0 0 1px rgba(246, 240, 232, .04);
}

.awards-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awards-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .18) 52%, rgba(0, 0, 0, .46));
}

.awards-hero-media figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: rgba(246, 240, 232, .82);
  font-size: 13px;
}

.awards-families,
.awards-projects,
.awards-proof,
.awards-process,
.awards-final {
  padding: 34px 0;
}

.awards-families {
  padding-top: 56px;
  scroll-margin-top: 116px;
  background: #f3efe5;
  color: #11110d;
}

.awards-families h2,
.awards-process h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.awards-family-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.awards-family-band a {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(175px, 1fr) auto auto;
  align-content: end;
  gap: 8px;
  min-height: 320px;
  padding: 18px;
  border: 1px solid rgba(5, 5, 3, .14);
  border-radius: 18px;
  overflow: hidden;
  background: #11110d;
  box-shadow: 0 16px 44px rgba(5, 5, 3, .12);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.awards-family-band a:hover {
  transform: translateY(-2px);
  background: #11110d;
}

.awards-family-band a.is-priority::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-top: 1px solid rgba(245, 161, 40, .54);
  pointer-events: none;
}

.awards-family-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: transform .45s ease, opacity .45s ease;
}

.awards-family-band a:hover img {
  transform: scale(1.035);
  opacity: .84;
}

.awards-family-band a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 5, 3, .92) 0%, rgba(5, 5, 3, .5) 48%, rgba(5, 5, 3, .04) 100%);
}

.awards-family-band span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--awards-text);
  font-size: 21px;
  font-weight: 850;
  line-height: 1.05;
}

.awards-family-band small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 7px;
  color: rgba(246, 240, 232, .78);
  font-size: 14px;
  line-height: 1.35;
}

.awards-family-band b {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(246, 240, 232, .24);
  border-radius: 999px;
  color: var(--awards-accent);
  background: rgba(5, 5, 3, .38);
  font-size: 22px;
  font-weight: 400;
}

.awards-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.awards-section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.5vw, 52px);
  font-weight: 600;
}

.awards-section-head a {
  color: rgba(246, 240, 232, .82);
  font-size: 14px;
  font-weight: 700;
}

.awards-project-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 14px;
}

.awards-project-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(246, 240, 232, .12);
  border-radius: 16px;
  background: #100c09;
  isolation: isolate;
}

.awards-project-card-wide {
  grid-column: 1;
  grid-row: span 2;
  min-height: 500px;
}

.awards-project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.awards-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04) 12%, rgba(0, 0, 0, .34) 56%, rgba(0, 0, 0, .8) 100%);
}

.awards-project-card span,
.awards-project-card strong,
.awards-project-card i {
  position: relative;
  z-index: 1;
}

.awards-project-card span {
  color: #ffbd62;
  font-size: 13px;
  font-weight: 800;
}

.awards-project-card strong {
  max-width: 290px;
  margin-top: 5px;
  font-size: 17px;
  line-height: 1.18;
}

.awards-project-card-wide strong {
  max-width: 390px;
  font-size: 25px;
  line-height: 1.05;
}

.awards-project-card i {
  position: absolute;
  left: auto;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 240, 232, .22);
  border-radius: 999px;
  background: rgba(246, 240, 232, .06);
  font-style: normal;
  transition: transform .18s ease;
}

.awards-project-card:hover img {
  transform: scale(1.04);
}

.awards-project-card:hover i {
  transform: translateX(2px);
}

.awards-proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.awards-proof-band article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 26px 32px;
  border: 1px solid rgba(5, 5, 3, .16);
  border-radius: 18px;
  background: #090a08;
  color: var(--awards-text);
  box-shadow: 0 18px 44px rgba(5, 5, 3, .12);
}

.awards-proof-band span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--awards-accent);
  font-size: 32px;
  line-height: 1;
}

.awards-proof-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  color: var(--awards-text);
}

.awards-proof-band p {
  margin: 0;
  color: var(--awards-muted);
  font-size: 14px;
  line-height: 1.55;
}

.awards-proof,
.awards-process {
  background: #f3efe5;
  color: #11110d;
}

.awards-process h2 {
  color: #11110d;
}

.awards-process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 18px;
  list-style: none;
  border: 1px solid rgba(5, 5, 3, .16);
  border-radius: 20px;
  background: rgba(255, 252, 244, .72);
}

.awards-process-line li {
  position: relative;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  padding: 12px 12px 22px;
  border: 1px solid rgba(5, 5, 3, .1);
  border-radius: 16px;
  background: #090a08;
  color: var(--awards-text);
  overflow: hidden;
}

.awards-process-line li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 50%;
  z-index: 2;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f3efe5;
  color: #11110d;
  font-size: 14px;
  transform: translateY(-50%);
}

.awards-process-line img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  margin-bottom: -4px;
  border-radius: 10px 10px 0 0;
  background: rgba(246, 240, 232, .08);
  filter: saturate(.96) contrast(1.05);
  opacity: .86;
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, .78) 74%, transparent 100%);
}

.awards-process-line span {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: -6px;
  margin-bottom: 8px;
  padding-inline: 6px;
  color: #ffbd62;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.awards-process-line strong {
  display: block;
  position: relative;
  z-index: 1;
  padding-inline: 6px;
  font-size: 15px;
  line-height: 1.2;
}

.awards-process-line small {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 8px;
  padding-inline: 6px;
  color: var(--awards-muted);
  font-size: 13px;
  line-height: 1.35;
}

.awards-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 34px 38px;
  border: 1px solid rgba(246, 240, 232, .12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 40%, rgba(245, 161, 40, .32), transparent 24%),
    linear-gradient(90deg, rgba(14, 10, 8, .95), rgba(31, 20, 12, .95));
}

.awards-signature-link {
  margin: 30px 0 0;
}

.awards-signature-grid {
  min-height: 188px;
  padding: 30px 36px;
  border: 1px solid rgba(245, 161, 40, .24);
  border-radius: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(245, 161, 40, .13), rgba(246, 240, 232, .045)),
    #0b0806;
}

.awards-signature-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--awards-accent);
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.awards-signature-grid h2 {
  max-width: 720px;
  margin: 0;
  color: #f6f0e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: .98;
}

.awards-signature-grid p {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(246, 240, 232, .68);
  font-size: 15px;
  line-height: 1.55;
}

.awards-final h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4vw, 60px);
  line-height: .98;
}

.awards-final p {
  max-width: 660px;
  margin: 14px 0 0;
  color: rgba(246, 240, 232, .82);
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .awards-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .awards-hero-media {
    min-height: 420px;
  }

  .awards-family-band {
    grid-template-columns: 1fr;
  }

  .awards-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .awards-project-card,
  .awards-project-card-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .awards-proof-band,
  .awards-process-line,
  .awards-final-grid {
    grid-template-columns: 1fr;
  }

  .awards-proof-band article {
    border-right: 0;
  }
}

@media (max-width: 1100px) {
  .woaw-awards-page .links,
  .awards-contact-link {
    display: none !important;
  }

  .awards-mobile-button {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(246, 240, 232, .14);
    border-radius: 999px;
    background: rgba(246, 240, 232, .04);
  }

  .awards-mobile-button span {
    width: 16px;
    height: 1px;
    margin-inline: auto;
    background: var(--awards-text);
  }

  .awards-mobile-panel {
    width: min(1120px, calc(100% - 40px));
    margin: 12px auto 0;
    padding: 18px;
    border: 1px solid rgba(246, 240, 232, .12);
    border-radius: 26px;
    background: rgba(12, 9, 7, .95);
    box-shadow: 0 24px 54px rgba(0, 0, 0, .32);
  }

  .awards-mobile-panel.open {
    display: grid;
    gap: 8px;
  }

  .awards-mobile-panel a,
  .awards-mobile-group p {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .awards-mobile-group {
    display: grid;
    gap: 8px;
    margin-bottom: 8px;
  }

  .awards-mobile-group p {
    margin: 0;
    color: rgba(246, 240, 232, .54);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .awards-mobile-panel a {
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(246, 240, 232, .03);
    color: var(--awards-text);
    font-size: 14px;
    font-weight: 700;
  }

  .awards-mobile-panel a small {
    margin-left: 6px;
    color: rgba(246, 240, 232, .5);
    font-size: 12px;
    font-weight: 500;
  }

  .awards-mobile-secondary {
    opacity: .7;
  }

  .awards-mobile-cta {
    justify-content: center;
    background: var(--awards-accent) !important;
    color: #140d07 !important;
  }
}

@media (max-width: 760px) {
  .awards-shell {
    width: min(100% - 28px, 620px);
  }

  .woaw-awards-page .container.nav-inner,
  .awards-mobile-panel {
    width: calc(100% - 24px);
  }

  .awards-hero {
    padding-top: 96px;
  }

  .awards-hero h1 {
    max-width: min(100%, 560px);
    font-size: clamp(46px, 13.2vw, 72px);
    line-height: .92;
  }

  .awards-lead {
    font-size: 15px;
  }

  .awards-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .awards-btn {
    width: 100%;
  }

  .awards-hero-media {
    min-height: 320px;
    border-radius: 22px;
  }

  .awards-family-band a {
    min-height: 118px;
    grid-template-columns: 96px minmax(0, 1fr) 42px;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 6px 14px;
    padding: 12px;
    border-radius: 20px;
  }

  .awards-family-band img {
    position: relative;
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 96px;
    height: 96px;
    border-radius: 14px;
    opacity: .92;
  }

  .awards-family-band a::after {
    background:
      linear-gradient(90deg, rgba(5, 5, 3, .08), rgba(5, 5, 3, .72) 42%, rgba(5, 5, 3, .94));
  }

  .awards-family-band span {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    font-size: 24px;
  }

  .awards-family-band small {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    font-size: 14px;
  }

  .awards-family-band b {
    grid-column: 3;
    grid-row: 1 / span 2;
    position: relative;
    right: auto;
    top: auto;
    z-index: 1;
    width: 38px;
    height: 38px;
  }

  .awards-section-head {
    align-items: start;
    flex-direction: column;
  }

  .awards-project-grid {
    grid-template-columns: 1fr;
  }

  .awards-project-card {
    min-height: 260px;
  }

  .awards-project-card-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .awards-project-card strong {
    font-size: 17px;
  }

  .awards-proof-band {
    gap: 12px;
  }

  .awards-proof-band article {
    grid-template-columns: 46px 1fr;
    padding: 22px 18px;
  }

  .awards-proof-band span {
    width: 34px;
    height: 34px;
    font-size: 27px;
  }

  .awards-proof-band h2 {
    font-size: 24px;
    line-height: 1.05;
  }

  .awards-proof-band p {
    max-width: 260px;
    font-size: 14px;
    line-height: 1.42;
  }

  .awards-process-line {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .awards-process-line li {
    min-height: auto;
    padding: 12px 12px 20px;
  }

  .awards-process-line img {
    aspect-ratio: 1.9;
    margin-bottom: -4px;
  }

  .awards-process-line li:not(:last-child)::after {
    left: 50%;
    right: auto;
    top: auto;
    bottom: -18px;
    transform: translateX(-50%) rotate(90deg);
  }

  .awards-final-grid {
    padding: 26px 22px;
  }

  .woaw-awards-page .bottom-dock {
    position: fixed !important;
    left: 10px !important;
    right: 10px !important;
    bottom: 12px !important;
    z-index: 80 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 3px !important;
    padding: 6px !important;
    border: 1px solid rgba(246, 240, 232, .14) !important;
    border-radius: 24px !important;
    background: rgba(12, 9, 7, .88) !important;
    backdrop-filter: blur(16px) !important;
  }

  .woaw-awards-page .bottom-dock a {
    min-width: 0 !important;
    min-height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 2px !important;
    border-radius: 17px !important;
    color: rgba(246, 240, 232, .72) !important;
    font-size: clamp(7px, 2.05vw, 9px) !important;
    font-weight: 800 !important;
    letter-spacing: .035em !important;
    white-space: nowrap !important;
    text-align: center !important;
    text-decoration: none !important;
  }

  .woaw-awards-page .bottom-dock a.active {
    background: var(--awards-accent) !important;
    color: #140d07 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .woaw-awards-page *,
  .woaw-awards-page *::before,
  .woaw-awards-page *::after {
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1100px) {
  .woaw-awards-page header.nav .actions .awards-contact-link,
  .woaw-awards-page header.nav .actions > .btn-lime.awards-contact-link {
    display: none !important;
  }
}

@media (max-width: 1180px) {
  .awards-signature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .awards-signature-grid {
    padding: 24px 22px;
  }

  .awards-signature-grid .awards-btn {
    width: 100%;
  }
}
