.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0px;
}

.gallery-item {
    background: rgb(133, 210, 63);
    padding: 5px;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
}

.gallery-item a {
    color: #000;
    text-decoration: none;
    font-size: 0.9em;
    display: block;
    margin-top: 0px;
}

.gallery-item a p {
    margin-top: 0px;
    margin-bottom: 0px;
}