.prodotti-evidenza {
  padding-top: 64px;
  padding-bottom: 96px;
}
.prodotti-wrapper {
  display: grid;
  padding-bottom: 48px;
}
.download-button {
  text-decoration: none;
  justify-self: center;
  align-self: center;
  padding: 12px 32px;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 10px;
  color: currentColor;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  gap: 14px;
  font-family: "Gantari";
  cursor: pointer;
  transition: all 300ms;
}
.download-button.button-light {
  color: white;
}
.download-button svg {
  width: 14px;
  height: 15px;
}
.download-button:hover {
  background-color: var(--black);
  color: white;
  border-color: var(--black);
}
.download-button.button-light:hover {
  color: var(--black);
  background-color: white;
  border-color: white;
}
/* .download-button:hover svg path {
  stroke: white;
} */
/* RESPONSIVE */
@media (min-width: 768px) {
  .download-button {
    font-size: 14px;
    gap: 16px;
  }
  .download-button svg {
    width: 16px;
    height: 17px;
  }
  .prodotti-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .download-button {
    font-size: 16px;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}
