@font-face {
  font-family: "AES Header";
  src: url("fonts/HelveticaNeueLTCom-BlkCnO.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
:root {
  --font-header: "AES Header", "Helvetica Neue", Arial, sans-serif;

  --font-body: Arial, Helvetica, sans-serif;

  --aes-blue: #004da9;
  --aes-mid: #3085cc;
  --aes-light: #79ace4;
  --ink: #2a3b56;
  --muted: #5e6b79;
  --steel: #d9e0e7;
  --white: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #ffffff;
}
body {
  font-family: var(--font-body);
  margin: 0;
  line-height: 1.5;
  color: var(--ink);
}
.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: auto;
}
.site-header {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--aes-blue);
  padding: 12px 0 16px;
}
.header-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}
.header-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.header-icon line {
  stroke: var(--aes-blue);
  stroke-width: 2;
  stroke-linecap: round;
}
.sds-text {
  font-family: var(--font-header);
  font-size: 18px;
  font-weight: 900;
  fill: var(--aes-blue);
  letter-spacing: -0.5px;
}
.page-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
h1,
h2,
h3,
.section-kicker,
.eyebrow {
  font-family: var(--font-header);
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.02;
  margin: 0;
}
.intro {
  font-size: 1rem;
  max-width: 700px;
  margin: 14px 0 0;
  color: #e9f3ff;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  flex: 0 0 auto;
}

.aes-logo {
  width: 200px;
  height: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.brand-text h1 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--white);
}

.brand-text .intro {
  margin-top: 14px;
  max-width: 620px;
  color: var(--aes-light);
}
.header-mark {
  min-width: 126px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  padding: 14px 16px;
  text-align: center;
  transform: skew(-5deg);
  background: rgba(0, 0, 0, 0.12);
}
.header-mark span,
.header-mark strong {
  display: block;
  transform: skew(5deg);
}
.header-mark span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}
.header-mark strong {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}
main {
  padding: 34px 0 56px;
}
.search-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(300px, 1.3fr);
  gap: 28px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--steel);
  border-left: 8px solid var(--aes-blue);
  box-shadow: 0 8px 24px rgba(24, 34, 49, 0.08);
  padding: 24px;
}
.section-kicker {
  color: var(--aes-mid);
  font-size: 1rem;
}
.search-panel h2 {
  margin: 0;
  font-size: 1.8rem;
}
.search-label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.search {
  width: 100%;
  font-size: 1rem;
  padding: 14px 16px;
  border: 2px solid #b8c5d2;
  border-radius: 4px;
  background: #fff;
}
.search:focus {
  outline: 3px solid rgba(121, 172, 228, 0.45);
  border-color: var(--aes-blue);
}
.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin: 18px 2px;
}
.count {
  font-weight: 700;
  color: var(--aes-blue);
  margin: 0;
}
.help {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
}
.document-table {
  --document-columns: minmax(280px, 2fr) minmax(140px, 0.8fr)
    minmax(100px, 0.5fr) minmax(130px, 0.7fr) 120px;

  overflow: auto;
  background: #fff;
  border: 1px solid var(--steel);
  border-radius: 5px;
  box-shadow: 0 4px 14px rgba(24, 34, 49, 0.07);
}

.document-header,
.document-row {
  display: grid;
  grid-template-columns: var(--document-columns);
  column-gap: 20px;
  align-items: center;

  /* Must be identical on both */
  padding-left: 20px;
  padding-right: 20px;
}

.document-header {
  padding-top: 13px;
  padding-bottom: 13px;
  color: #fff;
  background: var(--aes-blue);
  font-family: var(--font-header);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.document-header > div:nth-child(2),
.document-header > div:nth-child(3),
.document-header > div:nth-child(4),
.document-value {
  justify-self: start;
}

.document-header > div:last-child,
.document-action {
  justify-self: end;
}

.document-row {
  position: relative;
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--steel);
  background: #fff;
}

.document-row:last-child {
  border-bottom: 0;
}

.document-row:hover {
  background: #f3f8fd;
}

.document-row::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: transparent;
}

.document-row:hover::before {
  background: var(--aes-mid);
}

.product-cell {
  min-width: 0;
}

.product-name {
  margin: 0;
  color: var(--aes-blue);
  font-family: var(--font-header);
  font-size: 1.15rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.product-skus {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.document-value {
  color: var(--ink);
  font-size: 0.95rem;
}

.document-value::before {
  display: none;
}

.document-action {
  justify-self: end;
}

.download {
  margin-top: 0;
  white-space: nowrap;
}
.card h2 {
  font-size: 1.22rem;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--aes-blue);
}
.meta {
  margin: 7px 0;
  color: var(--muted);
}
.meta strong {
  color: var(--ink);
}
.download {
  font-family: var(--font-header);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: var(--aes-blue);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
}
.download:after {
  content: "↗";
  font-size: 1rem;
}
.download:hover,
.download:focus {
  background: var(--aes-mid);
}
.empty {
  background: #fff;
  border: 1px solid var(--steel);
  border-left: 6px solid var(--aes-light);
  padding: 24px;
}
.site-footer {
  padding: 26px 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}
.site-footer p {
  margin: 4px 0;
}
.footer-contact {
  text-align: right;
}
.library-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.library-heading-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: var(--aes-blue);
}
@media (max-width: 1024px) {
  .header-grid,
  .search-panel {
    grid-template-columns: 1fr;
  }
  .header-mark {
    display: none;
  }
  .toolbar,
  .footer-grid {
    display: block;
  }
  .help {
    margin-top: 4px;
  }
  .footer-contact {
    text-align: left;
    margin-top: 14px;
  }
  .document-header {
    display: none;
  }

  .document-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .document-value {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 10px;
  }

  .document-value::before {
    content: attr(data-label);
    display: block;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.82rem;
  }

  .document-action {
    justify-self: stretch;
    margin-top: 6px;
  }

  .download {
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .header-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 24px;
  }

  .brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .aes-logo {
    width: 260px;
    max-width: 90%;
    height: auto;
  }

  .brand-text {
    width: 100%;
  }

  .brand-text h1 {
    font-size: 2.1rem;
    line-height: 1.05;
  }

  .brand-text .intro {
    margin: 12px auto 0;
    max-width: 420px;
  }

  .header-mark {
    display: none;
  }
}
