  .star-links {
    display: flex;
    flex-wrap: wrap; /* Allow the items to wrap if necessary */
    justify-content: center; /* Centers the items */
    align-items: center; /* Aligns the items vertically in the middle */
  }

  .star-links a,
  .star-links img {
    display: inline-block; /* Keeps the image and link on the same line */
    vertical-align: middle; /* Aligns the image and text vertically in the middle */
    margin: 0 5px; /* Adds space between the images and links */
  }

  .star-links a {
    text-decoration: none; /* Removes underline from the links */
    color: inherit; /* Ensures the link color matches the surrounding text */
  }

  @media (max-width: 480px) {
    .star-links {
      justify-content: center; /* Keeps the items centered even on small screens */
    }

    .star-links a,
    .star-links img {
      margin-bottom: 5px; /* Adds space between items when stacked */
    }

    .star-links a {
      white-space: nowrap; /* Prevents the links from breaking */
    }
  }