/* 4-across on desktop, responsive on smaller screens. Keep styles light so theme rules win. */
.fc-featured-cards{
  display:grid;
  grid-template-columns:repeat(4, minmax(200px,1fr));
  gap: var(--wp--style--block-gap, 2rem);
  justify-items:center;
  margin:0 auto var(--wp--preset--spacing--60, 2rem);
  max-width: 1100px;
}
.fc-card{ text-align:center; width:100%; max-width:240px; }
.fc-card img{ width:100%; height:auto; border-radius:8px; display:block; }

@media (max-width: 900px){
  .fc-featured-cards{ grid-template-columns:repeat(2, minmax(200px,1fr)); max-width: 560px; }
}
@media (max-width: 500px){
  .fc-featured-cards{ grid-template-columns:1fr; max-width: 320px; }
}
