.home-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.home-social a {
    text-decoration: none;
}

.gallery-grid {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 40%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 0.75rem;
    row-gap: 0.25rem;
    margin-top: 1.5rem;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    background: #fff;
    padding: 8px 8px 32px 8px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.25);
    /*transition: box-shadow 0.2s;*/
}

.gallery-grid a:hover {
    /*box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.35);*/
}

.polaroid-caption {
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    margin: 6px 0 0 0;
    min-height: 1em;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
    border: none;
    border-radius: 0;
    outline: none;
}
