

.divider-horizontal {
  position: absolute;
  width: 100vw;
  height: 22px;
  background: 
    linear-gradient(var(--accent), var(--accent)) left center / calc(50% - 18px) 3px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right center / calc(50% - 18px) 3px no-repeat;
}

.divider-horizontal.small {
  height: 16px;
  background: 
    linear-gradient(var(--accent), var(--accent)) left center / calc(50% - 14px) 3px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right center / calc(50% - 14px) 3px no-repeat;
}

.star-centered {
  position: absolute;
  width: 24px;
  height: 24px;
  background: #ffdb70;
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  box-shadow: 0 0 6px rgba(255,219,112,0.35);
}

.star-centered.small {
  width: 20px;
  height: 20px;
  background: #ffdb70;
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
}

.vertical-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 8px;
  background-color: var(--accent);
  border-radius: 9999px;
  opacity: 0.9;
  box-shadow: 0 0 20px rgba(162, 177, 255, 0.8), 0 0 40px rgba(162, 177, 255, 0.4);
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.ornament.small {
  gap: 0.5rem;
}

.ornament .line {
  height: 1px;
  background-color: var(--accent);
}

.ornament.small .line {
  width: 7rem;
}

.ornament.small .line.medium {
  width: 8rem;
}

.ornament.small .line.large {
  width: 9rem;
}

.ornament.small .line.wide {
  width: 13rem;
}

.ornament.small .line.xlarge {
  width: 11rem;
}

.ornament .star {
  fill: #ffdb70;
  stroke: #ffefb4;
  stroke-width: 2px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 6px rgba(255,219,112,0.35));
}

.ornament.footer-ornament {
  margin-bottom: 1.5rem;
}

.ornament.footer-ornament .line.full {
  flex: 1;
  max-width: 100%;
}

.ornament-mobile {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
}

.line-mobile {
  flex: 1;
  height: 1px;
  background-color: var(--accent);
}

.star-mobile {
  flex-shrink: 0;
  fill: #ffdb70;
  stroke: #ffefb4;
  stroke-width: 1.5px;
  width: 16px;
  height: 16px;
}
