.pinterest-pins-widget {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Default: 4 columns for desktop */
    gap: 10px;
}
.pinterest-pins-widget .pin {
    box-sizing: border-box;
}

/* Uncomment these media queries to enable responsiveness if needed */

/* Tablet: 2 columns */
/* @media (max-width: 768px) {
    .pinterest-pins-widget {
        grid-template-columns: repeat(2, 1fr);
    }
} */

/* Portrait Mobile: 1 column */
/* @media (max-width: 480px) {
    .pinterest-pins-widget {
        grid-template-columns: repeat(1, 1fr);
    }
} */
