/* Property detail page — weather widget */
.cdspg-property-sidebar-weather {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cdspg-property-weather {
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}

.cdspg-property-weather--sidebar {
  margin: 0;
  max-width: none;
}

.cdspg-property-weather__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d3b66 0%, #1a6b9e 48%, #47b0dc 100%);
  box-shadow: 0 8px 24px rgba(13, 59, 102, 0.22);
  color: #fff;
}

.cdspg-property-weather__icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.cdspg-property-weather__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.cdspg-property-weather__info {
  flex: 1;
  min-width: 0;
}

.cdspg-property-weather__town {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.2rem;
}

.cdspg-property-weather__temp {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cdspg-property-weather__desc {
  display: block;
  font-size: 0.95rem;
  margin-top: 0.25rem;
  opacity: 0.92;
  text-transform: capitalize;
}

.cdspg-property-weather--loading .cdspg-property-weather__temp {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
}

.cdspg-property-weather--error .cdspg-property-weather__card {
  background: linear-gradient(135deg, #4a5568 0%, #718096 100%);
}
