.project-card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: scale(1.02);
}

.house-card__image {
  width: 100%;
  height: 340px;
  background-size: cover;
  background-position: center;
}

.project-card__body {

}

.project-card__title {
color: #000000;
    font-size: 22px;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    margin-top: 25px;
}

.project-card__line {
  border-top: 5px solid #d9d9d9;
  margin: 10px 0;
}

.project-card__desc{
display: flex;
    justify-content: space-between;
}

.project-card__text {
    color: #565656;
    font-size: 16px;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    background-position: center center;
    border-color: transparent;
    border-style: solid;

}

.project-card__price {
font-size: 22px;
    font-weight: 400;
    font-family: 'NeueMachina', Arial, sans-serif;
    color: #000000;

}

