.no-new-field {
  background-color: #fff;
}

.no-new-field .no-container-sm {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

.no-new-field__wrap {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.no-new-field__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 1.2rem;
}

.no-new-field--equal .no-new-field__row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.no-new-field__group--half {
  min-width: 0;
}

.no-new-field__title {
  padding-bottom: 1.4rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid #d8d3cc;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
  color: #c1bdb7;
}

.no-new-field__list {
  display: flex;
  flex-wrap: wrap;
}

.no-new-field__list > li {
  width: 33.3333%;
}

.no-new-field__list--single > li {
  width: 100%;
}

.no-new-field__list--two > li {
  width: 50%;
}

.no-new-field__list > li > a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.8rem 1.6rem 1.6rem;
  border-radius: 0.8rem;
  background-color: transparent;
  text-align: left;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.no-new-field__list > li > a img {
  display: block;
  width: 7.2rem;
  object-fit: contain;
  margin-bottom: 1.6rem;
}

.no-new-field__list > li > a h3 {
  margin: 0;
  line-height: 1.35;
  color: #3c4248;
  transition: color 0.25s ease;
}

.no-new-field__more {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #a5a19a;
  transition: color 0.25s ease;
}

.no-new-field__list > li > a:hover {
  background-color: #f5f5f5;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02);
  transform: translateY(-2px);
}

.no-new-field__list > li > a:hover h3,
.no-new-field__list > li > a:hover .no-new-field__more {
  color: var(--clr-secondary-500);
}

@media (max-width: 480px) {
  .no-new-field .no-container-sm {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .no-new-field__wrap {
    gap: 3.2rem;
  }

  .no-new-field__row {
    gap: 0.8rem;
  }

  .no-new-field__group--half {
    min-width: 0;
  }

  .no-new-field__title {
    padding-bottom: 1.2rem;
    margin-bottom: 1.6rem;
    font-size: 1.5rem;
  }

  .no-new-field__list {
    margin: 0 -0.4rem;
    row-gap: 1.2rem;
  }

  .no-new-field__list > li {
    padding: 0 0.4rem;
  }

  .no-new-field__list > li > a {
    min-height: 14.8rem;
    padding: 1.6rem 1.2rem 1.4rem;
  }

  .no-new-field__list > li > a img {
    width: 6.4rem;
    height: 6.4rem;
    margin-bottom: 1.2rem;
  }

  .no-new-field__more {
    font-size: 1.3rem;
  }
}
