/* Shared primary CTA for hero sections, based on the Careers hero button. */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 16px 30px;
  border: none;
  border-radius: 4px;
  background: #173630;
  color: #ffffff;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.hero-cta:hover {
  background: #0f2b26;
  transform: translateY(-1px);
}
