.match-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.match-avatar {
  text-align: center;
}
.match-avatar__circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #e9f1ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.match-avatar__label {
  font-weight: 600;
  color: #212529;
}
.match-avatar__name {
  font-size: 0.875rem;
  color: #6c757d;
}

.match-handshake {
  width: 120px;
}

.rent-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.rent-card h5 {
  color: #0d6efd;
  font-weight: 700;
}
.rent-card .rent-item {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.rent-card .rent-item__icon {
  font-size: 1.5rem;
  color: #0d6efd;
}
.rent-card .rent-item__title {
  font-weight: 600;
}
.rent-card .rent-item__desc {
  font-size: 0.875rem;
  color: #6c757d;
}
.rent-card .rent-highlight {
  background: #fff3cd;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

.real-estate-card {
  position: relative;
  border-radius: 14px;
  border: none;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.real-estate-card:hover {
  transform: translateY(-2px);
}
.real-estate-card img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.real-estate-card .card-title {
  font-size: 0.95rem;
  font-weight: 600;
}
.real-estate-card .price {
  font-size: 0.85rem;
  color: #555;
}
.real-estate-card .badge-box {
  font-size: 0.75rem;
}
.real-estate-card .rent-badge {
  background-color: #e7f0ff;
  color: #0d6efd;
  font-weight: 600;
  padding: 0.35em 0.6em;
  border-radius: 8px;
}
.real-estate-card .redeem {
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
}
.real-estate-card .distance {
  font-size: 0.75rem;
  color: #999;
}
.real-estate-card .arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
  font-size: 1.2rem;
}/*# sourceMappingURL=stili.css.map */