.newest-auctions-section {
  padding: 60px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;

  a {
    color: #005fcc;
  }

  a:hover {
    color: var(--blue1);
  }

  .all-suggestions {
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 4px;
  }
}

@media (max-width: 768px) {
  .section-header a.all-suggestions {
    display: none;
  }

  .newest-auctions-section {
    padding: 50px 0 0;
  }

  .all-auctions-button {
    display: block;
    margin: 24px 0px;
  }

  .all-auctions-button svg {
    width: 18px;
    height: 18px;
    color: var(--blue1);
  }

  .all-auctions-button .btn-component {
    gap: 6px;
  }
}
