/*
============================================================================
ASKCARBI REAL ESTATE V2
============================================================================
*/

.cres-v2-results-content {
  width: min(100%, 700px);
  max-width: 100% !important;
}

.cres-v2-summary {
  margin-bottom: 12px;
}

.cres-v2-grid {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 100%;
}

.cres-v2-card {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border:
    1px solid #cfe0ec;
  border-radius: 20px;
  color: #183f5c;
  background: #ffffff;
  box-shadow:
    0 10px 25px
    rgba(22, 70, 103, 0.12);
}

.cres-v2-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      #dff3ff,
      #ecfaf6
    );
}

.cres-v2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cres-v2-no-photo {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  font-size: 45px;
}

.cres-v2-no-photo small {
  color: #71879a;
  font-size: 11px;
}

.cres-v2-number {
  position: absolute;
  top: 10px;
  left: 10px;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    rgba(13, 78, 124, 0.86);
  font-size: 12px;
  font-weight: 900;
}

.cres-v2-card-body {
  padding: 15px;
}

.cres-v2-price {
  color: #0877c9;
  font-size: 23px;
}

.cres-v2-card h3 {
  margin: 8px 0 2px;
  color: #173e5b;
  font-size: 17px;
  line-height: 1.3;
}

.cres-v2-location {
  margin: 0;
  color: #6c8293;
  font-size: 12px;
}

.cres-v2-facts,
.cres-v2-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.cres-v2-facts {
  margin-top: 13px;
}

.cres-v2-facts span,
.cres-v2-secondary span {
  border-radius: 999px;
  padding: 6px 9px;
  background: #edf7fd;
  font-size: 11px;
  font-weight: 750;
}

.cres-v2-secondary {
  margin-top: 8px;
}

.cres-v2-secondary span {
  color: #667f91;
  background: #f4f8fb;
  font-weight: 650;
}

.cres-v2-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.cres-v2-actions a,
.cres-v2-actions button {
  min-height: 42px;
  padding: 8px;
  border:
    1px solid #b7d5e7;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #116fa8;
  background: #f0f9ff;
  text-align: center;
  text-decoration: none;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
  touch-action: manipulation;
}

.cres-v2-provider {
  margin: 11px 3px 0;
  color: #7c8e9b;
  font-size: 9px;
  line-height: 1.45;
}

@media (max-width: 520px) {
  .cres-v2-results-message
  .csc-message-content {
    max-width: calc(100vw - 62px) !important;
  }

  .cres-v2-card-body {
    padding: 13px;
  }

  .cres-v2-price {
    font-size: 21px;
  }

  .cres-v2-actions {
    grid-template-columns: 1fr;
  }
}
