.lp-image-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.lp-image-slot {
  overflow: hidden;
  padding: 14px;
  border: 1px solid #dce5f3;
  border-radius: 18px;
  background: #f8faff;
  cursor: pointer;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.lp-image-slot:hover,.lp-image-slot:focus-visible {
  transform: translateY(-3px);
  border-color: #687cff;
  box-shadow: 0 14px 30px #18315d1a;
  outline: none;
}
.lp-image-slot.is-selected {
  border-color: #526cff;
  box-shadow: 0 0 0 4px #526cff18, 0 14px 30px #18315d1a;
}
.lp-image-slot h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin: 0 0 12px;
  color: #111a38;
  font-size: 14px;
  line-height: 1.35;
}
.lp-image-slot h3 span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #e9efff;
  color: #526cff;
  font-size: 10px;
}
.lp-image-slot img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 2;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 26px #18315d17;
}
.lp-image-slot > small {
  display: block;
  padding: 12px 2px 2px;
  color: #526cff;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}
.lp-banner-image { height: auto !important; min-height: 0; background: var(--lp-bg); }
.lp-banner-image::after { display: none; }
.lp-banner-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 2;
  object-fit: cover;
}
@media (max-width: 1100px) {
  .lp-image-slots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .lp-image-slots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }
  .lp-image-slot {
    padding: 6px;
    border-radius: 11px;
  }
  .lp-image-slot h3 {
    display: block;
    min-height: 30px;
    margin: 2px 0 6px;
    font-size: 10px;
    line-height: 1.35;
    text-align: center;
  }
  .lp-image-slot h3 span { display: none; }
  .lp-image-slot img { border-radius: 7px; }
  .lp-image-slot > small { display: none; }
  .lp-image-slot:hover,.lp-image-slot:focus-visible { transform: none; }
}

.lp-media-tabs { display: flex; gap: 8px; margin: 12px 0 16px; }
.lp-media-tabs button { font: inherit; font-size: 18px; font-weight: 700; padding: 12px 20px; border: 1px solid #dce5f3; border-radius: 12px; background: #f8faff; color: #526079; cursor: pointer; }
.lp-media-tabs button.is-active { background: #526cff; color: white; border-color: #526cff; }
.lp-media-tabs button:focus-visible { outline: 3px solid #111a38; outline-offset: 3px; }
[data-media-panel][hidden] { display: none !important; }
.lp-video-slots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lp-video-slot { cursor: default; }
.lp-video-slot:not(.lp-video-slot-ready):hover { transform: none; box-shadow: none; border-color: #dce5f3; }
.lp-video-slot img { max-height: 300px; object-fit: contain; background: #e9efff; }
.lp-video-slot-ready { cursor: pointer; }
.video-thumb { position: relative; }
.video-thumb img { width: 100%; object-fit: cover; }
.video-thumb span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: rgba(11,22,54,.82);
  color: white;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(11,22,54,.28);
}
.lp-hero > video { display: none; width: 100%; height: auto; background: #071533; }
.lp-hero.is-video-mode > img { display: none; }
.lp-hero.is-video-mode > video { display: block; }
@media (min-width: 621px) {
  .lp-image-slots { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .lp-video-slots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .lp-media-tabs button { font-size: 16px; padding: 12px 18px; }
  .lp-image-slot h3 { font-size: 14px; min-height: 38px; overflow-wrap: anywhere; }
  .lp-video-slot > small { display: block; font-size: 14px; }
}
