/* Wrap everything inside this parent */
.nighochem-download-section {
  max-width: 600px;
}

/* Row layout */
.nighochem-download-section .pdf-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}

/* Button (scoped — no global impact) */
.nighochem-download-section .gradient-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;

  background-image: linear-gradient(
    to right,
    #25aae1,
    #40e495,
    #30dd8a,
    #2bb673
  );
  background-size: 300% 100%;

  transition: all 0.4s ease-in-out;

  white-space: nowrap;
}

/* Hover (scoped) */
.nighochem-download-section .gradient-btn:hover {
  background-position: 100% 0;
}
