/* Amanda's Picks — data-driven grid, styled to match the original page. */
.picks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 40px;
  row-gap: 52px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0 40px;
}
.picks-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.picks-card img,
.picks-card__noimg {
  width: 100%;
  height: 175px;
  object-fit: contain;
  display: block;
}
.picks-card__name {
  font-family: "Cormorant Garamond", Garamond, "Times New Roman", serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.35;
  color: #000;
  margin: 18px 0 16px;
  flex: 1 0 auto;
}
.picks-card__btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: #c79288;
  color: #fff;
  font-family: "Cormorant Garamond", Garamond, "Times New Roman", serif;
  font-weight: 400;
  font-size: 16.8px;
  letter-spacing: 0.336px;
  line-height: 1.4;
  padding: 11px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color .15s ease;
}
.picks-card__btn:hover { background: #b87f74; }
.picks-error { text-align: center; color: #8a8a8a; }
.picks-disclaimer {
  font-family: "Cormorant Garamond", Garamond, "Times New Roman", serif;
  text-align: center;
  color: #333;
  max-width: 1200px;
  margin: 34px auto 0;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .picks-grid { grid-template-columns: repeat(2, 1fr); column-gap: 30px; row-gap: 44px; max-width: 640px; }
}
@media (max-width: 575px) {
  .picks-grid { grid-template-columns: 1fr; max-width: 320px; }
}
