/* Shared Premium Divider CSS */
.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 10px;
  gap: 20px;
}

.title-line-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.line-jewel {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, #fa831d);
}

.title-line-wrap.right .line-jewel {
  background: linear-gradient(to left, transparent, #fa831d);
}

.jewel-diamond {
  width: 10px;
  height: 10px;
  border: 1.5px solid #fa831d;
  transform: rotate(45deg);
  position: relative;
}

.jewel-diamond::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #fa831d;
}

.jewel-dot {
  width: 5px;
  height: 5px;
  background: #fa831d;
  border-radius: 50%;
}

.logo-rotate-wrap {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-rotate-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px dashed #0295ca;
  border-radius: 50%;
  animation: rotateSlow 12s linear infinite;
}

.title-logo-center {
  width: 30px;
  height: auto;
  position: relative;
  z-index: 5;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
