.datasheet-downloads {
  --datasheet-accent: #9e5c3f;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 30px;
}

.datasheet-downloads--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.datasheet-download-link {
  min-width: 0;
  min-height: 82px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  border: 1px solid rgba(42, 46, 49, .14);
  border-radius: 14px;
  color: #2a2e31;
  background: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.datasheet-download-link:hover {
  border-color: rgba(158, 92, 63, .46);
  background: #fff;
  transform: translateY(-2px);
}

.datasheet-download-link:active { transform: translateY(0); }

.datasheet-download-link:focus-visible,
.technical-download-link:focus-visible {
  outline: 3px solid rgba(158, 92, 63, .36);
  outline-offset: 3px;
}

.datasheet-pdf-icon,
.technical-download-icon {
  position: relative;
  display: grid;
  place-items: end center;
  color: #fff;
  background: var(--datasheet-accent, #9e5c3f);
  box-shadow: 0 8px 18px rgba(87, 43, 25, .16);
}

.datasheet-pdf-icon {
  width: 42px;
  height: 52px;
  padding-bottom: 8px;
  border-radius: 6px;
  font: 800 10px/1 Montserrat, Inter, Arial, sans-serif;
  letter-spacing: .05em;
}

.datasheet-pdf-icon::after,
.technical-download-icon::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 11px;
  height: 11px;
  border-radius: 0 0 0 4px;
  background: rgba(255, 255, 255, .72);
}

.datasheet-download-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.datasheet-download-copy strong {
  font: 750 14px/1.28 Montserrat, Inter, Arial, sans-serif;
  letter-spacing: -.02em;
}

.datasheet-download-copy span {
  color: rgba(42, 46, 49, .66);
  font-size: 12px;
  line-height: 1.35;
}

.datasheet-download-action {
  color: var(--datasheet-accent, #9e5c3f);
  font: 750 12px/1 Montserrat, Inter, Arial, sans-serif;
}

.compact-spec-card .datasheet-download-link {
  margin-top: 18px;
  background: rgba(255, 255, 255, .58);
}

.technical-materials .technical-download-list {
  --datasheet-accent: #9e5c3f;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 12px;
}

.technical-download-link {
  min-width: 0;
  padding: 6px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  border-radius: 9px;
  color: #2a2e31;
  background: rgba(255, 255, 255, .52);
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.technical-download-link:hover {
  background: #fff;
  transform: translateY(-1px);
}

.technical-download-icon {
  width: 28px;
  height: 34px;
  padding-bottom: 5px;
  border-radius: 4px;
  font: 800 7px/1 Montserrat, Inter, Arial, sans-serif;
  letter-spacing: .04em;
}

.technical-download-icon::after {
  width: 8px;
  height: 8px;
  border-radius: 0 0 0 3px;
}

.technical-download-link > span:last-child {
  min-width: 0;
  font: 700 11px/1.25 Montserrat, Inter, Arial, sans-serif;
}

@media (min-width: 761px) {
  .technical-download-link {
    padding: 2px 6px;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 7px;
  }

  .technical-download-icon {
    width: 20px;
    height: 24px;
    padding-bottom: 4px;
    border-radius: 3px;
    font-size: 6px;
  }

  .technical-download-icon::after {
    width: 6px;
    height: 6px;
    border-radius: 0 0 0 2px;
  }
}

@media (max-width: 980px) {
  .datasheet-downloads--three { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .datasheet-downloads { grid-template-columns: 1fr; }
  .datasheet-download-link { min-height: 76px; }
  .technical-download-link > span:last-child { font-size: 12px; }
}

@media (max-width: 430px) {
  .datasheet-download-link { grid-template-columns: 42px minmax(0, 1fr); }
  .datasheet-download-action { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .datasheet-download-link,
  .technical-download-link { transition: none; }
  .datasheet-download-link:hover,
  .technical-download-link:hover { transform: none; }
}
