.gold-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #fed65b, transparent);
}

.gold-border-top {
  border-top: 1px solid #fed65b;
}

.gold-border {
  border: 1px solid #fed65b;
}

.ambient-shadow {
  box-shadow: 0 4px 20px rgba(128, 0, 0, 0.05);
}

.gold-divider.centered {
  position: relative;
  background-color: #fed65b;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.gold-divider.centered::after {
  content: "◆";
  position: absolute;
  color: #fed65b;
  font-size: 12px;
  background: #fdf9f4;
  padding: 0 10px;
}

.gold-divider.icon::before {
  content: "◆";
  color: #fed65b;
  font-size: 10px;
  background-color: #fdf9f4;
  padding: 0 8px;
}

.accordion-content {
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.accordion-content.active {
  opacity: 1;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.mobile-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}

.mobile-menu.is-open {
  max-height: 480px;
  opacity: 1;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
