.cek-facades-slide {
  --cek-slide-blue: #1672e8;
  position: fixed;
  z-index: 100020;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: min(390px, calc(100vw - 48px));
  padding: 12px;
  border: 1px solid rgba(21, 42, 67, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 14px 38px rgba(19, 37, 59, .2);
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .28s ease, transform .28s ease, left .2s ease, right .2s ease;
}

.cek-facades-slide[hidden] { display: none; }
.cek-facades-slide.is-visible { opacity: 1; transform: translateX(0); }
.cek-facades-slide.is-safe-left { right: auto; left: 24px; transform: translateX(-32px); }
.cek-facades-slide.is-safe-left.is-visible { transform: translateX(0); }
.cek-facades-slide.is-inline {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  max-width: 100%;
  margin: 18px 0 0;
  transform: translateY(12px);
}
.cek-facades-slide.is-inline.is-visible { transform: translateY(0); }
.cek-facades-slide__image {
  width: 84px;
  height: 88px;
  border-radius: 11px;
  object-fit: cover;
  object-position: center;
}
.cek-facades-slide__content { min-width: 0; padding-right: 22px; }
.cek-facades-slide__title {
  margin: 0 0 4px;
  color: #172331;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 750;
}
.cek-facades-slide__text {
  margin: 0 0 9px;
  color: #526273;
  font-size: 13px;
  line-height: 1.3;
}
.cek-facades-slide__cta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--cek-slide-blue);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
}
.cek-facades-slide__close {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #eef3f8;
  color: #435363;
  cursor: pointer;
  font-size: 18px;
  line-height: 22px;
}
@media (prefers-reduced-motion: reduce) {
  .cek-facades-slide { transition: none; }
}
@media (max-width: 980px) {
  .cek-facades-slide {
    right: 14px;
    bottom: 14px;
    width: min(360px, calc(100vw - 28px));
  }
  .cek-facades-slide.is-safe-left { right: 14px; left: auto; }
}
