/* --- Global / Container Fix --- */
.gsremote-container {
    width: 100%;
    margin: 0 auto;
}

/* --- Thumbs Layout (Grid) --- */
.gsgallery-thumbs-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.gsgallery-item {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f9f9f9;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.gsgallery-link {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
}

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

/* --- Single Image Layout --- */
.gsgallery-image-section {
    display: block;
    width: 100%;
}

.gsremote-single-image-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
    box-sizing: border-box;
}

.gsremote-single-image-wrapper img {
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 700px;
}

.gsremote-credit {
    text-align: right;
    font-size: 10px;
    color: #888;
    padding-top: 4px;
    padding-right: 0.5rem;
}

.gsremote-credit a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
}
