.fm-featured-models {

}
.fm-models-grid {
display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: space-between;
  
}
.fm-model-item {
    flex: 1 1 calc(25% - 3px);
  margin: 0;
  min-width: 0;
}
.fm-model-item img {
width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.fm-expander {
    text-align: center;
    margin-top: 10px;
}
.fm-expander-arrow {
    display: inline-block;
    cursor: pointer;
	color: yellow;
}
.fm-expander-arrow .dashicons {
    font-size: 24px;
}
.fm-expander:has(.fm-expander-arrow) {
    margin-top: 10px;
}

/* Ensure no margin when .fm-expander is empty */
.fm-expander:empty {
    margin-top: 0;
}