.schild-section-divider {
  position: relative;
}

.schild-section-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Top-left */
.schild-section-corners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(148,163,184,0.7);
  border-left: 1px solid rgba(148,163,184,0.7);
}

/* Top-right */
.schild-section-corners::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(148,163,184,0.7);
  border-right: 1px solid rgba(148,163,184,0.7);
}

/* Bottom-left */
.schild-section-corners-bottom::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid rgba(148,163,184,0.7);
  border-left: 1px solid rgba(148,163,184,0.7);
}

/* Bottom-right */
.schild-section-corners-bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid rgba(148,163,184,0.7);
  border-right: 1px solid rgba(148,163,184,0.7);
}

.schild-section-corners-bottom {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.schild-section-corners::before,
.schild-section-corners::after,
.schild-section-corners-bottom::before,
.schild-section-corners-bottom::after {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
}

.schild-section-corners,
.schild-section-corners-bottom {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.schild-section-corners::before,
.schild-section-corners::after,
.schild-section-corners-bottom::before,
.schild-section-corners-bottom::after {
  z-index: 9999;
}

.schild-grid-lines::before,
.schild-grid-lines::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(148, 163, 184, 0.38);
  pointer-events: none;
}

.schild-grid-lines::before {
  top: 0;
}

.schild-grid-lines::after {
  bottom: 0;
}

.schild-inner-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(148, 163, 184, 0.38);
  top: 0;
  pointer-events: none;
}

/* Full-width horizontal line between inner sections */
.schild-inner-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(148, 163, 184, 0.38);
  bottom: 0;
  pointer-events: none;
}

.schild-vertical-rails {
  border-left: 1px solid rgba(148, 163, 184, 0.38);
  border-right: 1px solid rgba(148, 163, 184, 0.38);
}

.schild-metric-rails {
  box-shadow: inset 1px 0 0 rgba(148, 163, 184, 0.38), inset -1px 0 0 rgba(148, 163, 184, 0.38);
}

/* Outer wrapper — bleeding top/bottom lines + vertical rails */
.schild-alternating-outer {
  overflow: visible;
  border-left: 1px solid rgba(148, 163, 184, 0.38);
  border-right: 1px solid rgba(148, 163, 184, 0.38);
}

.schild-alternating-outer::before,
.schild-alternating-outer::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(148, 163, 184, 0.38);
  pointer-events: none;
}

.schild-alternating-outer::before { top: 0; }
.schild-alternating-outer::after  { bottom: 0; }

/* Bleeding horizontal divider between section rows */
.schild-alternating-section {
  position: relative;
}

.schild-alternating-section:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(148, 163, 184, 0.38);
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

/* Vertical divider between left and right columns */
.schild-col-left {
  border-right: 1px solid rgba(148, 163, 184, 0.38);
}

@media (max-width: 1023px) {
  .schild-col-left {
    border-right: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.38);
  }
}
