.product-download {
  display: block;
  padding-block-start: var(--section-spacing-block-start, 48px);
  padding-block-end: var(--section-spacing-block-end, 48px);
  color: rgba(var(--color-text));
  background-color: rgba(var(--color-background));
}

.product-download[hidden] {
  display: none !important;
}

.product-download__heading {
  margin: 0 0 40px;
  font-size: 40px;
  line-height: 49px;
  font-weight: 700;
  text-align: center;
  color: inherit;
}

.product-download__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

@media screen and (max-width: 991px) {
  .product-download__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-download__heading {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
  }
}

.product-download__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 40px;
  border-radius: 12px;
  background-color: #F9FAFB;
  color: #333;
}

@media screen and (max-width: 991px) {
  .product-download__card {
    padding: 20px;
    gap: 4px;
  }
}

.product-download__card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-download__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-text, 17 24 39));
  width: 32px;
  height: 32px;
}

@media screen and (max-width: 991px) {
  .product-download__icon {
    width: 24px;
    height: 24px;
  }
}

.product-download__icon svg {
  display: block;
}

.product-download__card-title {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .product-download__card-title {
    font-size: 16px;
    line-height: 24px;
  }
}

.product-download__file-name {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: #333333;
  font-weight: 400;
  word-break: break-word;
}

.product-download__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 8px;
  padding: 5px 16px;
  border-radius: 999px;
  border: 1px solid rgb(var(--color-entry-line, 221 221 221));
  background-color: rgb(var(--color-background, 255 255 255));
  color: rgb(var(--color-text, 17 24 39));
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

@media screen and (max-width: 991px) {
  .product-download__btn {
    margin-top: 12px;
    padding: 3px 16px;
  }
}

.product-download__btn:hover:not(:disabled) {
  background-color: rgba(14, 20, 36, 0.06);
}

.product-download__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.product-download__btn-icon {
  display: flex;
  flex-shrink: 0;
}
