.kyp2026-split {
  --kyp2026-split-bg: var(--kyp2026-bg, #141417);
  --kyp2026-split-surface: var(--kyp2026-surface, #1d1d22);
  --kyp2026-split-border: var(--kyp2026-border, rgba(255,255,255,0.18));
  --kyp2026-split-text: var(--kyp2026-text, #ffffff);
  --kyp2026-split-muted: var(--kyp2026-muted, #b9c0ca);
  --kyp2026-split-accent-1: var(--kyp2026-accent-1, #ffc400);
  --kyp2026-split-accent-2: var(--kyp2026-accent-2, #006fcf);
  position: relative;
  padding: 10px 0 34px;
  color: var(--kyp2026-split-text);
  background:
    radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--kyp2026-split-accent-1) 6%, transparent), transparent 34%),
    radial-gradient(circle at 82% 8%, color-mix(in srgb, var(--kyp2026-split-accent-2) 7%, transparent), transparent 36%),
    var(--kyp2026-split-bg);
  font-family: var(--kyp2026-font-main, Inter, Manrope, system-ui, sans-serif);
}

.kyp2026-split *, .kyp2026-split *::before, .kyp2026-split *::after {
  box-sizing: border-box;
}

.kyp2026-split__inner {
  width: min(1240px, calc(100% - 42px));
  margin: 0 auto;
}

.kyp2026-split__intro-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 14px;
  padding: 0 12px;
  color: var(--kyp2026-split-muted);
  border: 1px solid color-mix(in srgb, var(--kyp2026-split-border) 70%, transparent);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.014));
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.kyp2026-split__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.kyp2026-split__panel {
  position: relative;
  z-index: 1;
}

.kyp2026-split__panel-shell {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 22px;
  min-height: 258px;
  padding: 34px 42px;
  border: 1px solid color-mix(in srgb, var(--kyp2026-split-border) 84%, transparent);
  background:
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.012)),
    linear-gradient(180deg, color-mix(in srgb, var(--kyp2026-split-surface) 86%, transparent), color-mix(in srgb, var(--kyp2026-split-bg) 76%, transparent));
  box-shadow:
    0 22px 54px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.045);
  overflow: hidden;
}

.kyp2026-split__panel.is-left .kyp2026-split__panel-shell {
  padding-right: 76px;
  clip-path: polygon(0 0, calc(100% - 72px) 0, 100% 50%, calc(100% - 72px) 100%, 0 100%);
}

.kyp2026-split__panel.is-right .kyp2026-split__panel-shell {
  padding-left: 76px;
  clip-path: polygon(72px 0, 100% 0, 100% 100%, 72px 100%, 0 50%);
}

.kyp2026-split__panel-shell::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.045);
}

.kyp2026-split__panel.is-left .kyp2026-split__panel-shell::after {
  clip-path: polygon(0 0, calc(100% - 62px) 0, 100% 50%, calc(100% - 62px) 100%, 0 100%);
}

.kyp2026-split__panel.is-right .kyp2026-split__panel-shell::after {
  clip-path: polygon(62px 0, 100% 0, 100% 100%, 62px 100%, 0 50%);
}

.kyp2026-split__panel-shell::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  width: 4px;
  border-radius: 99px;
  z-index: 2;
}

.kyp2026-split__panel.is-left .kyp2026-split__panel-shell::before {
  left: 24px;
  background: var(--kyp2026-split-accent-1);
  box-shadow: 0 0 16px color-mix(in srgb, var(--kyp2026-split-accent-1) 42%, transparent);
}

.kyp2026-split__panel.is-right .kyp2026-split__panel-shell::before {
  right: 24px;
  background: var(--kyp2026-split-accent-2);
  box-shadow: 0 0 16px color-mix(in srgb, var(--kyp2026-split-accent-2) 42%, transparent);
}

.kyp2026-split__panel-icon {
  position: relative;
  z-index: 3;
  align-self: start;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background:
    radial-gradient(circle, color-mix(in srgb, currentColor 18%, transparent), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  border: 1px solid color-mix(in srgb, currentColor 42%, var(--kyp2026-split-border));
  box-shadow: inset 0 0 0 10px rgba(255,255,255,.018);
}

.kyp2026-split__panel.is-left .kyp2026-split__panel-icon {
  color: var(--kyp2026-split-accent-1);
}

.kyp2026-split__panel.is-right .kyp2026-split__panel-icon {
  color: var(--kyp2026-split-accent-2);
}

.kyp2026-split__panel-icon .kyp2026-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
}

.kyp2026-split__panel-icon svg {
  width: 100%;
  height: 100%;
}

.kyp2026-split__panel-body {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.kyp2026-split__mini {
  margin: 0 0 10px;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.kyp2026-split__panel.is-left .kyp2026-split__mini {
  color: var(--kyp2026-split-accent-1);
}

.kyp2026-split__panel.is-right .kyp2026-split__mini {
  color: var(--kyp2026-split-accent-2);
}

.kyp2026-split__title {
  margin: 0 0 12px;
  max-width: 480px;
  color: var(--kyp2026-split-text);
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.kyp2026-split__intro {
  margin: 0 0 16px;
  max-width: 500px;
  color: var(--kyp2026-split-muted);
  font-size: .96rem;
  line-height: 1.62;
}

.kyp2026-split__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.kyp2026-split__list li {
  position: relative;
  min-width: 0;
  padding-left: 22px;
  color: var(--kyp2026-split-text);
  font-size: .93rem;
  line-height: 1.35;
}

.kyp2026-split__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .43em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.kyp2026-split__panel.is-left .kyp2026-split__list li::before {
  background: var(--kyp2026-split-accent-1);
  box-shadow: 0 0 12px color-mix(in srgb, var(--kyp2026-split-accent-1) 44%, transparent);
}

.kyp2026-split__panel.is-right .kyp2026-split__list li::before {
  background: var(--kyp2026-split-accent-2);
  box-shadow: 0 0 12px color-mix(in srgb, var(--kyp2026-split-accent-2) 44%, transparent);
}

.kyp2026-split__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  text-decoration: none !important;
  font-weight: 950;
  letter-spacing: -.01em;
}

.kyp2026-split__panel.is-left .kyp2026-split__link {
  color: var(--kyp2026-split-accent-1);
}

.kyp2026-split__panel.is-right .kyp2026-split__link {
  color: var(--kyp2026-split-accent-2);
}

.kyp2026-split__link .kyp2026-icon {
  width: 20px;
  height: 20px;
}

.kyp2026-split__link svg {
  width: 100%;
  height: 100%;
}

.kyp2026-split__center-wrap {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  margin: 0 -24px;
}

.kyp2026-split__center {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  width: 126px;
  min-height: 126px;
  padding: 18px 10px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--kyp2026-split-border) 90%, transparent);
  background:
    radial-gradient(circle, color-mix(in srgb, var(--kyp2026-split-accent-1) 9%, transparent), transparent 60%),
    linear-gradient(180deg, color-mix(in srgb, var(--kyp2026-split-surface) 96%, transparent), color-mix(in srgb, var(--kyp2026-split-bg) 90%, transparent));
  clip-path: polygon(24% 5%, 76% 5%, 96% 50%, 76% 95%, 24% 95%, 4% 50%);
  box-shadow: 0 22px 50px rgba(0,0,0,.24);
}

.kyp2026-split__center::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255,255,255,.045);
  clip-path: polygon(24% 5%, 76% 5%, 96% 50%, 76% 95%, 24% 95%, 4% 50%);
}

.kyp2026-split__center-number,
.kyp2026-split__center-title,
.kyp2026-split__center-subtitle {
  position: relative;
  z-index: 1;
  display: block;
}

.kyp2026-split__center-number {
  color: var(--kyp2026-split-accent-1);
  font-size: 2.7rem;
  line-height: .9;
  font-weight: 950;
}

.kyp2026-split__center-title {
  margin-top: 7px;
  font-size: .78rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kyp2026-split__center-subtitle {
  margin-top: 6px;
  color: var(--kyp2026-split-accent-2);
  font-size: .58rem;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: .065em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .kyp2026-split__inner {
    width: min(100% - 26px, 980px);
  }

  .kyp2026-split__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .kyp2026-split__center-wrap {
    order: 2;
    margin: -8px 0;
  }

  .kyp2026-split__panel.is-left { order: 1; }
  .kyp2026-split__panel.is-right { order: 3; }

  .kyp2026-split__panel-shell,
  .kyp2026-split__panel.is-left .kyp2026-split__panel-shell,
  .kyp2026-split__panel.is-right .kyp2026-split__panel-shell {
    padding: 30px 28px;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  }

  .kyp2026-split__panel-shell::after,
  .kyp2026-split__panel.is-left .kyp2026-split__panel-shell::after,
  .kyp2026-split__panel.is-right .kyp2026-split__panel-shell::after {
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  }

  .kyp2026-split__panel.is-left .kyp2026-split__panel-shell::before,
  .kyp2026-split__panel.is-right .kyp2026-split__panel-shell::before {
    left: 20px;
    right: auto;
  }
}

@media (max-width: 700px) {
  .kyp2026-split {
    padding: 8px 0 24px;
  }

  .kyp2026-split__inner {
    width: min(100% - 20px, 100%);
  }

  .kyp2026-split__panel-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kyp2026-split__panel-icon {
    width: 68px;
    height: 68px;
  }

  .kyp2026-split__panel-icon .kyp2026-icon {
    width: 30px;
    height: 30px;
  }

  .kyp2026-split__title {
    font-size: 1.45rem;
  }

  .kyp2026-split__list {
    grid-template-columns: 1fr;
  }

  .kyp2026-split__center {
    width: 108px;
    min-height: 108px;
  }
}


/* v0.1.2 — raccord sous le hero : fond hérité et jonction plus proche du V */
.kyp2026-split {
  padding-top: 0 !important;
  margin-top: -10px;
  background-color: transparent !important;
  background:
    radial-gradient(circle at 22% 8%, color-mix(in srgb, var(--kyp2026-split-accent-1) 5%, transparent), transparent 32%),
    radial-gradient(circle at 78% 8%, color-mix(in srgb, var(--kyp2026-split-accent-2) 6%, transparent), transparent 34%) !important;
}

.kyp2026-split__grid {
  margin-top: 0;
}

.kyp2026-split__panel-shell {
  background:
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.012)),
    linear-gradient(180deg, color-mix(in srgb, var(--kyp2026-split-surface) 78%, transparent), color-mix(in srgb, var(--kyp2026-split-bg) 52%, transparent)) !important;
  backdrop-filter: blur(8px);
}

.kyp2026-split__center-wrap {
  transform: translateY(-8px);
}

@media (max-width: 1120px) {
  .kyp2026-split {
    margin-top: 0;
    padding-top: 10px !important;
  }

  .kyp2026-split__center-wrap {
    transform: none;
  }
}


/* v0.1.3 — section plus large, trapèzes symétriques, fond sans halo propre */
.kyp2026-split {
  padding: 0 0 42px !important;
  margin-top: -18px !important;
  background: transparent !important;
}

.kyp2026-split__inner {
  width: min(96vw, 1560px) !important;
  max-width: none !important;
}

.kyp2026-split__grid {
  grid-template-columns: minmax(0, 1fr) 132px minmax(0, 1fr) !important;
  align-items: stretch !important;
  gap: 0 !important;
}

.kyp2026-split__panel {
  min-width: 0;
  display: grid;
}

.kyp2026-split__panel-shell {
  min-height: 336px !important;
  display: grid !important;
  grid-template-columns: 116px minmax(0, 1fr) !important;
  gap: 26px !important;
  align-items: center !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.012)),
    linear-gradient(180deg, color-mix(in srgb, var(--kyp2026-split-surface) 86%, transparent), color-mix(in srgb, var(--kyp2026-split-bg) 62%, transparent)) !important;
  border-color: color-mix(in srgb, var(--kyp2026-split-border) 88%, transparent) !important;
  backdrop-filter: blur(10px);
}

/* Miroir strict : même largeur, même pente, même profondeur */
.kyp2026-split__panel.is-left .kyp2026-split__panel-shell {
  padding: 42px 96px 42px 54px !important;
  clip-path: polygon(0 0, calc(100% - 84px) 0, 100% 50%, calc(100% - 84px) 100%, 0 100%) !important;
}

.kyp2026-split__panel.is-right .kyp2026-split__panel-shell {
  padding: 42px 54px 42px 96px !important;
  clip-path: polygon(84px 0, 100% 0, 100% 100%, 84px 100%, 0 50%) !important;
}

.kyp2026-split__panel.is-left .kyp2026-split__panel-shell::after {
  clip-path: polygon(0 0, calc(100% - 72px) 0, 100% 50%, calc(100% - 72px) 100%, 0 100%) !important;
}

.kyp2026-split__panel.is-right .kyp2026-split__panel-shell::after {
  clip-path: polygon(72px 0, 100% 0, 100% 100%, 72px 100%, 0 50%) !important;
}

/* Renforts graphiques, sans halo de fond */
.kyp2026-split__panel-shell::after {
  inset: 14px !important;
  border-color: rgba(255,255,255,.055) !important;
}

.kyp2026-split__panel.is-left .kyp2026-split__panel-shell::before,
.kyp2026-split__panel.is-right .kyp2026-split__panel-shell::before {
  top: 34px !important;
  bottom: 34px !important;
  width: 5px !important;
}

.kyp2026-split__panel.is-left .kyp2026-split__panel-shell::before {
  left: 28px !important;
  right: auto !important;
  background: var(--kyp2026-split-accent-1) !important;
}

.kyp2026-split__panel.is-right .kyp2026-split__panel-shell::before {
  right: 28px !important;
  left: auto !important;
  background: var(--kyp2026-split-accent-2) !important;
}

.kyp2026-split__panel-icon {
  width: 104px !important;
  height: 104px !important;
}

.kyp2026-split__panel-icon .kyp2026-icon {
  width: 42px !important;
  height: 42px !important;
}

.kyp2026-split__title {
  max-width: 560px !important;
  font-size: clamp(1.85rem, 2.35vw, 2.55rem) !important;
}

.kyp2026-split__intro {
  max-width: 620px !important;
}

.kyp2026-split__center-wrap {
  margin: 0 -38px !important;
  transform: translateY(-10px);
}

.kyp2026-split__center {
  width: 138px !important;
  min-height: 138px !important;
}

.kyp2026-split__center-number {
  font-size: 3rem !important;
}

@media (max-width: 1120px) {
  .kyp2026-split {
    margin-top: 0 !important;
    padding-top: 16px !important;
  }

  .kyp2026-split__inner {
    width: min(calc(100% - 24px), 980px) !important;
  }

  .kyp2026-split__grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .kyp2026-split__panel.is-left .kyp2026-split__panel-shell,
  .kyp2026-split__panel.is-right .kyp2026-split__panel-shell {
    min-height: 0 !important;
    padding: 30px 28px !important;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%) !important;
  }

  .kyp2026-split__center-wrap {
    margin: -8px 0 !important;
    transform: none;
  }
}

@media (max-width: 700px) {
  .kyp2026-split__panel-shell {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .kyp2026-split__panel-icon {
    width: 72px !important;
    height: 72px !important;
  }

  .kyp2026-split__panel-icon .kyp2026-icon {
    width: 32px !important;
    height: 32px !important;
  }

  .kyp2026-split__title {
    font-size: 1.55rem !important;
  }
}


/* v0.1.4 — bloc entier cliquable */
.kyp2026-split__panel {
  cursor: pointer;
}

.kyp2026-split__panel-hit {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: block;
  text-decoration: none !important;
}

.kyp2026-split__panel-shell {
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    filter .22s ease;
}

.kyp2026-split__panel:hover .kyp2026-split__panel-shell {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, currentColor 36%, var(--kyp2026-split-border)) !important;
  box-shadow:
    0 28px 68px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.055);
  filter: brightness(1.035);
}

.kyp2026-split__panel.is-left:hover .kyp2026-split__panel-shell {
  color: var(--kyp2026-split-accent-1);
}

.kyp2026-split__panel.is-right:hover .kyp2026-split__panel-shell {
  color: var(--kyp2026-split-accent-2);
}

.kyp2026-split__panel:hover .kyp2026-split__link .kyp2026-icon {
  transform: translateX(4px);
}

.kyp2026-split__link .kyp2026-icon {
  transition: transform .22s ease;
}

/* Le lien visible reste décoratif, le clic est géré par l’overlay accessible */
.kyp2026-split__link {
  pointer-events: none;
}


/* v0.1.6 — responsive desktop large, sans casser les trapèzes */

/* pleine largeur comme les autres sections, avec limite ultra-wide propre */
.kyp2026-split{
  width:100vw !important;
  max-width:100vw !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  overflow:hidden;
}

.kyp2026-split__inner{
  width:min(calc(100vw - 32px), 1720px) !important;
  max-width:none !important;
  margin:0 auto !important;
}

/* desktop : on garde bien les 2 trapèzes côte à côte */
.kyp2026-split__grid{
  width:100% !important;
  grid-template-columns:minmax(0,1fr) 136px minmax(0,1fr) !important;
  gap:18px !important;
  align-items:center !important;
}

.kyp2026-split__panel{
  min-width:0 !important;
}

.kyp2026-split__panel-shell{
  min-height:282px !important;
  width:100% !important;
}

.kyp2026-split__panel.is-left .kyp2026-split__panel-shell{
  padding-right:84px !important;
  clip-path:polygon(0 0, calc(100% - 80px) 0, 100% 50%, calc(100% - 80px) 100%, 0 100%) !important;
}

.kyp2026-split__panel.is-right .kyp2026-split__panel-shell{
  padding-left:84px !important;
  clip-path:polygon(80px 0, 100% 0, 100% 100%, 80px 100%, 0 50%) !important;
}

.kyp2026-split__panel.is-left .kyp2026-split__panel-shell::after{
  clip-path:polygon(0 0, calc(100% - 68px) 0, 100% 50%, calc(100% - 68px) 100%, 0 100%) !important;
}

.kyp2026-split__panel.is-right .kyp2026-split__panel-shell::after{
  clip-path:polygon(68px 0, 100% 0, 100% 100%, 68px 100%, 0 50%) !important;
}

.kyp2026-split__center-wrap{
  width:136px !important;
  justify-self:center !important;
}

/* grand desktop */
@media (min-width: 1500px){
  .kyp2026-split__inner{
    width:min(calc(100vw - 44px), 1780px) !important;
  }
  .kyp2026-split__grid{
    grid-template-columns:minmax(0,1fr) 148px minmax(0,1fr) !important;
    gap:20px !important;
  }
  .kyp2026-split__panel-shell{
    min-height:300px !important;
  }
}

/* desktop moyen : on reste encore en 2 colonnes, mais on compacte légèrement */
@media (max-width: 1280px){
  .kyp2026-split__inner{
    width:min(calc(100vw - 28px), 1240px) !important;
  }
  .kyp2026-split__grid{
    grid-template-columns:minmax(0,1fr) 120px minmax(0,1fr) !important;
    gap:14px !important;
  }
  .kyp2026-split__panel-shell{
    min-height:260px !important;
    padding-top:30px !important;
    padding-bottom:30px !important;
  }
  .kyp2026-split__panel.is-left .kyp2026-split__panel-shell{ padding-right:70px !important; }
  .kyp2026-split__panel.is-right .kyp2026-split__panel-shell{ padding-left:70px !important; }
}

/* on n'empile plus aussi tôt : seulement quand ça devient vraiment trop serré */
@media (max-width: 980px){
  .kyp2026-split__inner{
    width:min(calc(100vw - 24px), 920px) !important;
  }

  .kyp2026-split__grid{
    grid-template-columns:1fr !important;
    gap:18px !important;
  }

  .kyp2026-split__center-wrap{
    order:2 !important;
    width:auto !important;
    margin:-6px 0 !important;
    justify-self:center !important;
  }

  .kyp2026-split__panel.is-left{ order:1 !important; }
  .kyp2026-split__panel.is-right{ order:3 !important; }

  .kyp2026-split__panel-shell,
  .kyp2026-split__panel.is-left .kyp2026-split__panel-shell,
  .kyp2026-split__panel.is-right .kyp2026-split__panel-shell{
    min-height:0 !important;
    padding:30px 28px !important;
    clip-path:polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%) !important;
  }

  .kyp2026-split__panel-shell::after,
  .kyp2026-split__panel.is-left .kyp2026-split__panel-shell::after,
  .kyp2026-split__panel.is-right .kyp2026-split__panel-shell::after{
    clip-path:polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%) !important;
  }

  .kyp2026-split__panel.is-left .kyp2026-split__panel-shell::before,
  .kyp2026-split__panel.is-right .kyp2026-split__panel-shell::before{
    left:20px !important;
    right:auto !important;
  }
}

@media (max-width:700px){
  .kyp2026-split__inner{
    width:min(calc(100vw - 18px), 100%) !important;
  }
  .kyp2026-split__panel-shell{
    grid-template-columns:1fr !important;
    gap:16px !important;
  }
}
