.list-widget {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 5px;
}

.list-widget.last {
  border-bottom: 1px solid #ddd;
}
.lazy-bg {
  background-size: cover;
  background-position: center;
  filter: blur(5px); /* Initially blurred */
  transition: filter 0.5s ease-in-out;
}

.lazy-bg.loaded {
  filter: blur(0); /* Remove blur when high-res image loads */
}

.widget-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.widget-title-city {
  display: flex;
  flex-direction: column;
}

.widget-title-city a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 18px;
}

.widget-title-city a:hover {
  text-decoration: underline;
}

.widget-price p {
  font-size: 20px;
  font-weight: bold;
  color: #ed6969;
}
