.make-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;   /* ← this allows wrapping */
    gap: 5px;         /* spacing between items */
}


.make-list a {
    text-decoration: none;
    color: #bbbba6;
    font-weight: bold;
    position: relative;
}

.make-list a:not(:last-child)::after {
    content: '•';              /* separator symbol */
    margin-left: 10px;
    color: #888;
}
