.gallery-list {
    margin-top: 20px;
}

.gallery-row {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    text-decoration: none;
    color: #222;
    align-items: flex-start;   /* Svarīgākais! */
}


.gallery-thumb {
    width: 150px;
    height: 100px;
    flex-shrink: 0;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-row + .gallery-row {
    border-top: 1px solid #ddd;
}

.gallery-thumb {
    width: 150px;
    height: 100px;
    flex-shrink: 0;
    background: #eee;      /* pelēks fons, ja bilde nav */
    border-radius: 4px;
    overflow: hidden;
    display: block;
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
