/* Raster illustrations for the home control block: 2x source for a 416x330 viewport. */
.home-control .control-visual {
  aspect-ratio: auto;
  height: 100%;
  align-self: stretch;
  min-height: 0;
  border: 1px solid #e6ebf2;
  background: #fff !important;
  box-shadow: 0 18px 48px rgba(23, 49, 84, .08);
  color: inherit;
}
.home-control .control-visual::after {
  display: none !important;
}
.home-control .control-visual-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 980px) {
  .home-control .control-visual {
    height: clamp(260px, 66vw, 420px);
    min-height: 260px;
    align-self: auto;
  }
}
@media (max-width: 640px) {
  .home-control .control-visual {
    height: clamp(230px, 70vw, 300px);
    min-height: 230px;
    border-radius: 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-control .control-visual {
    transition: none;
  }
}
