/* Awards list #nagrody */
.ax-awards {
  background: var(--ax-ink);
  color: var(--ax-paper);
  padding: var(--ax-sec-pad-l) 0;
  position: relative;
}

.ax-awards__inner {
  max-width: var(--ax-maxw);
  margin: 0 auto;
  padding: 0 var(--ax-gutter);
}

.ax-awards__band {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  margin-bottom: clamp(26px, 3.2vw, 46px);
}

.ax-awards__band-rule {
  flex: 0 0 clamp(40px, 6vw, 120px);
  height: 1px;
  background: rgba(244, 241, 235, 0.2);
}

.ax-awards__band-rule--grow {
  flex: 1;
}

.ax-awards__band-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 241, 235, 0.45);
  white-space: nowrap;
}

.ax-awards__intro {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2vw, 32px);
  align-items: end;
  margin-bottom: clamp(26px, 3.2vw, 46px);
}

.ax-awards__title {
  grid-column: 1 / span 7;
  margin: 0;
  font-size: clamp(38px, 4.6vw, 80px);
  line-height: 0.94;
  letter-spacing: -0.032em;
}

.ax-awards__lead {
  grid-column: 9 / span 4;
  margin: 0;
  color: rgba(244, 241, 235, 0.62);
  font-size: 15.5px;
  line-height: 1.62;
  text-wrap: pretty;
}

/* D5 / A5 — mouse vs touch lead copy */
.ax-awards__lead-coarse {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .ax-awards__lead-fine {
    display: inline;
  }
  .ax-awards__lead-coarse {
    display: none;
  }
}

@media not all and (hover: hover) {
  .ax-awards__lead-fine {
    display: none;
  }
  .ax-awards__lead-coarse {
    display: inline;
  }
}

.ax-awards__table {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(244, 241, 235, 0.14);
  margin-left: auto;
  width: min(100%, calc(100% - clamp(0px, 22vw, 420px)));
}

.ax-awards__head,
.ax-awards__row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) auto;
  gap: clamp(14px, 2.4vw, 40px);
  align-items: baseline;
}

.ax-awards__head {
  padding-bottom: 12px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 235, 0.4);
}

.ax-awards__row {
  border-top: 1px solid rgba(244, 241, 235, 0.14);
  padding: clamp(15px, 1.7vw, 22px) 0;
  transition: opacity 380ms ease;
  cursor: default;
}

.ax-awards__row.is-dim {
  opacity: 0.38;
}

.ax-awards__name {
  font-weight: 500;
  font-size: clamp(16px, 1.35vw, 19.5px);
  letter-spacing: -0.018em;
  line-height: 1.32;
}

.ax-awards__issuer,
.ax-awards__year {
  font-size: 14.5px;
  color: rgba(244, 241, 235, 0.5);
  line-height: 1.5;
}

.ax-awards__year {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.ax-awards__preview {
  position: fixed;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity 280ms ease;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(8, 11, 26, 0.42);
  border: 1px solid rgba(244, 241, 235, 0.14);
}

.ax-awards__preview.is-on {
  opacity: 1;
}

.ax-awards__preview img {
  display: block;
  width: min(280px, 36vw);
  height: auto;
}

@media (max-width: 900px) {
  .ax-awards {
    padding-top: 80px;
    padding-bottom: var(--ax-sec-pad-m);
  }

  .ax-awards__intro {
    grid-template-columns: 1fr;
  }

  .ax-awards__title,
  .ax-awards__lead {
    grid-column: auto;
  }

  .ax-awards__head {
    display: none;
  }

  .ax-awards__table {
    width: 100%;
  }

  .ax-awards__head,
  .ax-awards__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ax-awards__preview {
    display: none !important;
  }
}

.ax-awards__toggle {
  margin: clamp(18px, 2vw, 28px) 0 0 clamp(0px, 22vw, 420px);
  background: none;
  border: 1px solid rgba(244, 241, 235, 0.28);
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ax-paper);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  transition: background 340ms ease, border-color 340ms ease, color 340ms ease;
}

@media (hover: hover) and (pointer: fine) {
.ax-awards__toggle:hover {
  background: rgba(244, 241, 235, 0.12);
  border-color: var(--ax-paper);
}
}


.ax-awards__row--more {
  display: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) auto;
}

