/* ===============================
   Global
=============================== */
html {
  scroll-behavior: smooth;
}

/* ===============================
   Shared Decorative Elements
=============================== */
.gold-underline {
  position: relative;
}

.gold-underline::after {
  content: "";
  display: block;
  width: 140px;
  max-width: 40%;
  height: 2px;
  margin-top: 14px;
  border-radius: 9999px;
  background: linear-gradient(
    90deg,
    rgba(180, 151, 90, 0.15),
    #b4975a,
    rgba(180, 151, 90, 0.15)
  );
}