/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */



 .custom-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
}

.custom-image-item {
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-image-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
