.property-card{
  width: 100%;
  background: #fff;
}

.property-card__image-link{
  display: block;
  text-decoration: none;
}

.property-card__image img{
  display: block;
  height: auto;
  max-width: 100%; /* không ép width 100% */
}

/* TEXT */
.property-card__text{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 0 30px 0;
}

/* TITLE */
.line--title{
  font-weight: 700;
  line-height: 1.1;
}

/* ICON LINES: cố định cột icon 24px => text line2/3 luôn thẳng hàng */
.line--with-icon{
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 8px;
  align-items: center;
}

/* ICON */
.line__icon{
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.line__icon svg{
  width: 24px;
  height: 24px;
  display: block;
}

/* icon luôn xanh */
.line__icon{
  color:#011EBE; /* currentColor */
}

/* RULER: chỉ FILL, không stroke => không bị dày */
.line--ruler .line__icon svg path{
  fill: currentColor !important;
  stroke: none !important;
}

/* TRAIN: chỉ STROKE, không fill => đúng nét */
.line--train .line__icon svg path{
  stroke: currentColor !important;
  fill: none !important;
}

}

/* TEXT */
.line__text{
  display: block;
  line-height: 1.2;
}