@media (min-width: 901px) {
  .action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(0, 1.35fr);
  }
}

.action-grid > a.secondhand-action {
  border-color: #f3c98b;
  background: linear-gradient(135deg, #fff, #fff7e8);
  min-height: 92px;
  padding-block: 21px;
}

.action-grid > a.secondhand-action > span {
  background: #fff0d2;
  color: #a65300;
}

.action-grid > a.secondhand-action i {
  color: #dc7200;
}

@media (max-width: 900px) {
  .action-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .action-grid > a:nth-child(1),
  .action-grid > a:nth-child(2) {
    grid-column: 1 / -1;
  }


  .action-grid > a.secondhand-action {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .action-grid > a.secondhand-action {
    min-height: 116px;
    padding: 15px 12px;
  }


  .action-grid > a.secondhand-action {
    grid-template-columns: auto 1fr auto;
  }

  .action-grid > a.secondhand-action > span {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }

  .action-grid > a.secondhand-action b {
    font-size: 18px;
  }

  .action-grid > a.secondhand-action small {
    line-height: 1.35;
  }
}
