.our-picks-wrapper {
  margin-bottom: 3rem;
}

.our-picks-wrapper li {
  background-image: none;
}

.our-picks-items {
  list-style: none;
  margin: 0;
}

.our-picks-item {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 0.125rem dotted #ddddde;
  background-image: none;
  margin: 0 !important;
}

.our-picks-item:first-child {
  border-top: 0.125rem dotted #ddddde;
}

.our-picks-item-header {
  grid-column: span 7;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.our-picks-image a {
  display: block;
}

.our-picks-image img {
  width: 3.75rem;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.our-picks-details a {
  text-decoration: none;
}

.our-picks-details .badge {
  padding: 0;
  margin: 0.25rem 0;
  text-align: left;
}

.our-picks-details h2,
.our-picks-details h3 {
  margin-bottom: 0;
}

.our-picks-details h2 {
  font-size: 1rem;
  font-weight: 700;
}

.our-picks-details h3 {
  font-size: 14px;
  font-weight: 500;
  margin-top: 3px;
}

.our-picks-buttons {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.button {
  border-radius: 0.3rem;
}

.our-picks-buttons .button-amazon {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  padding: 0.5rem 1rem;
  background: var(--wepc-acf-primary-red);
  color: white;
}

.our-picks-buttons .button-amazon:hover {
  background: var(--wepc-acf-primary-red-hover);
}

.our-picks-buttons i {
  font-size: 12px;
}

.our-picks-buttons .button-others-wrapper {
  gap: 0.5rem;
  margin: 0;
  margin-top: 0.5rem !important;
}

.our-picks-buttons .button-others-wrapper li {
  margin: 0;
  padding: 0;
  text-align: center;
}

.our-picks-buttons .button-others-wrapper a {
  font-size: 14px;
  font-weight: 600;
}

.our-picks-buttons .jump-anchor {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #0c0c0c;
  padding: 2px 12px;
  margin-top: 0.5rem;
}

.our-picks-item {
  visibility: visible;
  opacity: 1;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
}

.our-picks-item.hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  padding: 0;
}

.show-more-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: 2px solid var(--primary-blue-200);
  background-color: transparent;
  color: var(--wepc-acf-primary-red);
  padding: 10px 20px;
  margin-top: 1rem;
  cursor: pointer;
}

.show-more-button:hover {
  border: 2px solid var(--primary-blue-300);
}

.show-more-button svg {
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
}

.show-more-button svg.rotated {
  transform: rotate(180deg);
}

@media (min-width: 0) and (max-width: 767px) {
  .our-picks-item-header,
  .our-picks-buttons {
    grid-column: 1 / span 12;
  }
}
