.housing-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(10px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.housing-modal {
  position: relative;

  width: 85vw;
  height: 85vh;

  max-width: 1700px;
  max-height: 1200px;

  background: #fff;
  border-radius: 24px;

  display: grid;

  grid-template-columns:
    320px
    1fr
    350px;

  overflow: hidden;

  box-shadow:
    0 20px 80px rgba(0,0,0,.15);
}

.housing-sidebar-left {
  border-right: 1px solid #e8e8e8;
  padding: 32px;
}

.housing-content {
  padding: 32px;
  overflow-y: auto;
}

.housing-sidebar-right {
  border-left: 1px solid #e8e8e8;
  padding: 32px;
}

.housing-close {
  position: absolute;
  top: 20px;
  right: 20px;

  width: 42px;
  height: 42px;

  border: none;
  background: transparent;

  cursor: pointer;

  font-size: 22px;
  line-height: 1;

  z-index: 10;
}

.housing-close:hover {
  opacity: .65;
}