/*
 * style sheet + design inspiration from R. Lin https://rebeccayelin.github.io/
 */

.scroll-gallery {
    overflow-x: auto;
    white-space: nowrap;
}

.scroll-container img {
    display: inline-block;
    height: 225px;
    width: auto;
    margin-right: 8px;
}

.scroll-container img:hover {
    transform: scale(1.03);
}

.scroll-gallery::-webkit-scrollbar {
    height: 5px;
}

.scroll-gallery::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.scroll-gallery::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* --- grid gallery --- */
.grid-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.artwork-container {
    position: relative;
    overflow: hidden;
}

.square-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.artwork-details {
    margin-top: 8px;
    font-size: 0.8em;
}

.artwork-description {
    margin-top: 4px;
    font-size: 0.9em;
    color: #666;
    display: block;
}