.rfq-home-card {
  transition: all 0.3s ease;
}

.rfq-home-card:hover,
.rfq-home-card:focus {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.rfq-home-card .rfq-home-card__image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
}

.rfq-home-card .rfq-home-card__image-frame {
  background: #f4f5f7;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  min-width: 148px;
  min-height: 140px;
  align-self: center;
}

.rfq-home-card .rfq-home-card__image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.rfq-home-card:hover .rfq-home-card__image {
  transform: scale(1.1);
}

.rfq-home-card .rfq-home-card__content {
  flex: 1;
  padding: 8px 0;
  width: 100%;
}

.rfq-home-card .rfq-home-card__name {
  font-family: "KrungsriCondensed", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  line-clamp: 2;
  height: calc(1.6em * 2);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4px;
  margin-bottom: 4px;
  color: #222222;
}

.rfq-home-card .rfq-home-card__description {
  font-family: "KrungsriCondensed", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  line-clamp: 2;
  height: calc(1.6em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 20px;
  color: #222222;
}

.rfq-home-card .rfq-home-card__details {
  font-family: "KrungsriCondensed", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rfq-home-card .rfq-home-card__detail-row {
  font-family: "KrungsriCondensed", sans-serif;
  display: flex;
  flex-direction: row;
  line-height: 1.5;
}

.rfq-home-card .rfq-home-card__detail-label {
  font-family: "KrungsriCondensed", sans-serif;
  color: #626262;
  font-weight: 300;
  width: 100px;
  flex-shrink: 0;
  font-size: 14px;
}

.rfq-home-card .rfq-home-card__detail-sep {
  font-family: "KrungsriCondensed", sans-serif;
  color: #626262;
  font-weight: 300;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  font-size: 14px;
}

.rfq-home-card .rfq-home-card__detail-value {
  font-family: "KrungsriCondensed", sans-serif;
  color: #222222;
  font-weight: 300;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  .rfq-home-card {
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) {
  .rfq-home-card .rfq-home-card__image {
    width: 100%;
    height: 100%;
  }

  .rfq-home-card .rfq-home-card__content {
    padding: 8px 16px;
  }

  .rfq-home-card .rfq-home-card__name {
    margin-top: 0;
  }

  .rfq-home-card .rfq-home-card__description {
    margin-bottom: 12px;
  }
}

@media only screen and (min-width: 1300px) {
  .rfq-home-card {
    height: 280px;
  }

  .rfq-home-card .rfq-home-card__image-wrapper {
    width: 260px;
  }
}