.matcher-results .match-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}

.matcher-results .match-card {
  grid-template-columns: 164px minmax(0, 1fr) 154px;
  gap: 20px;
  min-height: 0;
  align-items: center;
  padding: 14px 22px;
}

.matcher-results .match-card > img {
  width: 156px;
  height: 142px;
  object-fit: contain;
}

.matcher-results .match-card-body {
  min-width: 0;
  text-align: left;
}

.matcher-results .match-card h3 {
  margin: 7px 0 5px;
  font-size: 24px;
}

.matcher-results .match-reason {
  margin: 0;
  color: #526d73;
  font-size: 16px;
  line-height: 1.6;
}

.match-condition-title {
  margin: 15px 0 8px;
  color: #27474d;
  font-size: 14px;
  font-weight: 800;
}

.match-condition-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.match-condition-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  box-sizing: border-box;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f4f8f7;
  color: #405d62;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.match-condition-list li::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.match-condition-list .is-met {
  background: #e9f8f1;
  color: #147256;
}

.match-condition-list .is-met::before {
  content: "✓";
  background: #13a875;
}

.match-condition-list .is-pending {
  background: #fff5e5;
  color: #8b641e;
}

.match-condition-list .is-pending::before {
  content: "!";
  background: #dfa23a;
}

.matcher-results .match-actions {
  align-self: center;
  margin: 0;
}

.matcher-results .match-actions a {
  display: block;
  box-sizing: border-box;
  min-width: 145px;
  padding: 13px 18px;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .matcher-results .match-card {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .matcher-results .match-card > img {
    width: 90px;
    height: 90px;
    align-self: start;
  }

  .matcher-results .match-card h3 {
    font-size: 21px;
  }

  .matcher-results .match-actions {
    grid-column: 2;
    margin-top: 4px;
  }

  .matcher-results .match-actions a {
    display: inline-block;
    min-width: 132px;
  }

  .match-condition-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .match-condition-list li {
    border-radius: 12px;
  }
}
