﻿
.title-split {
  --blue: #476268; /* Your preferred blue shade */

  font: 900 clamp(2.6rem, 6vw, 5rem) "Manrope", system-ui, sans-serif;
  letter-spacing: 0.015em;
  position: relative;
  display: inline-block;

  /* Apply solid blue text */
  background: var(--blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title-split::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 20%, rgba(255,255,255,0.25) 45%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 1600ms ease-in-out infinite;
}

@keyframes shine {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(70%);  }
}

@media (prefers-reduced-motion: reduce) {
  .title-split::after { animation: none; }
}

.main-panel>.container{
    margin-top: 120px;
}
