/* Highlight the first item */
.display-posts-listing li:first-child {
    background: #fff8c4; /* soft highlight */
    padding: 12px;
    border-left: 4px solid #e6c200; /* gold accent */
    border-radius: 4px;
    font-weight: bold;
}

/* Add a Featured Today badge */
.display-posts-listing li:first-child::before {
    content: "Featured Today";
    display: inline-block;
    background: #e6c200;
    color: #000;
    padding: 4px 8px;
    margin-right: 8px;
    font-size: 0.8em;
    border-radius: 3px;
    font-weight: bold;
}


/* Lorraine’s Fridge Magnet */
.fridge-wrapper {
  position: relative;
  display: inline-block;
}

.fridge-image {
  width: 100%;
  height: auto;
  display: block;
}

.lorraine-magnet {
  position: absolute;
  top: 80px;   /* move up/down */
  left: 120px; /* move left/right */
  background: #fff8d9;
  border: 2px solid #d0d0d0;
  border-radius: 12px;
  padding: 16px;
  width: 260px;
  box-shadow: 3px 3px 6px rgba(0,0,0,0.25);
  font-family: "Trebuchet MS", sans-serif;
}

@media (max-width: 768px) {
  .lorraine-magnet {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    font-size: 0.95em;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .lorraine-magnet {
    left: 60px;
    top: 60px;
    width: 220px;
  }
}
@media (max-width: 768px) {
  .lorraine-magnet {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;            /* smaller magnet */
    padding: 12px;         /* tighter padding */
    font-size: 0.85em;     /* smaller text */
    border-radius: 10px;   /* slightly smaller corners */
    box-shadow: 2px 2px 4px rgba(0,0,0,0.25); /* softer shadow */
  }
}
@media (max-width: 768px) {
  .lorraine-magnet {
    top: 50px;
    left: 30%;
    transform: translateX(-50%);
    width: 35%;
    padding: 6px;
    font-size: 0.70em;
    border-radius: 6px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.25);
  }
	@media (max-width: 768px) {
  .lorraine-magnet {
    top: 50px;
    left: 30%;
    transform: translateX(-50%);
    width: 35%;
    padding: 6px;
    font-size: 0.65em; /* slightly smaller overall text */
    border-radius: 6px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.25);
  }

  .magnet-header {
    font-size: 0.75em; /* smaller header */
  }

  .magnet-feature-label,
  .magnet-feature {
    font-size: 0.65em; /* smaller body text */
  }
		.magnet-feature-name {
  font-weight: 600;
  font-size: 0.85em;
  color: #333;
  margin-top: 4px;
}
}

}
.magnet-thumbnail {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  float: left;
  margin-right: 10px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.25);
}