.pdhb-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
  max-width: 1140px;
  margin: 24px auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.pdhb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.pdhb-button:hover,
.pdhb-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, .16);
}

.pdhb-style-primary {
  color: #fff !important;
  background: #171717;
  border-color: #171717;
}

.pdhb-style-primary:hover,
.pdhb-style-primary:focus {
  color: #fff !important;
  background: #000;
  border-color: #000;
}

.pdhb-style-gold {
  color: #171717 !important;
  background: #d8b56a;
  border-color: #d8b56a;
}

.pdhb-style-gold:hover,
.pdhb-style-gold:focus {
  color: #171717 !important;
  background: #e5c77f;
  border-color: #e5c77f;
}

.pdhb-style-outline {
  color: #171717 !important;
  background: transparent;
  border-color: #171717;
}

.pdhb-style-outline:hover,
.pdhb-style-outline:focus {
  color: #fff !important;
  background: #171717;
}

.pdhb-mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .pdhb-row {
    flex-direction: column;
    gap: 10px;
    margin: 18px auto;
  }

  .pdhb-button {
    width: 100%;
    max-width: 420px;
  }

  .pdhb-desktop-only {
    display: none;
  }

  .pdhb-mobile-only {
    display: inline-flex;
  }
}
