/* CSS Document */

.collectables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 900px;      /* controls the “square” shape */
    margin: 0 auto;        /* centers the whole grid */
    padding: 20px 0;
    text-align: center;
}

.collectable-item img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.collectable-item h3 {
    margin-top: 10px;
    font-size: 18px;
}

.collectable-item a {
    text-decoration: none;
    color: #5a3e1b;
    font-weight: bold;
}

.collectable-item a:hover {
    color: #a06b2c;
}
