/**
 * All of the CSS for our public-facing functionality should be
 * included in this file.
 *
 * Considerations for screen sizes:
 * - Desktop (769px and above)
 * - Large Mobile Devices (426px to 768px)
 * - Mid-size Mobile Devices (376px to 425px)
 * - Small Mobile Devices (375px and below)
 *
 */
:root {
    --primary-color: #D74EA8;
    --text-color: white;
    /* Blue text color for header etc. */
    --text-color-secondary: #333459;
    --hover-color: #F6DAED;
    --primary-font: 'Ubuntu', sans-serif;
    --primary-font-weight: 500;
    --item-width: 294px;
    --grid-row-height: 5px;
    --grid-card-margin: 5px;
    /* Don't forget to update the function adjustChipSetWidth() in gs-galler-public-page.js when you change this calculation */
    --grid-card-width: calc(var(--item-width) + 2 * var(--grid-card-margin));
    --grid-columns: repeat(auto-fill, var(--grid-card-width));
}

/**
 * Large Mobile Devices (425px to 768px)
 * Values are designed to have a three column layout on devices with 425px screen width.
 */
@media (max-width: 768px) {
    :root {
        --item-width: 168px;
    }
}

/**
 * Mid-size Mobile Devices (375px to 424px)
 * Values are designed to have a two column layout on devices with 375px screen width.
 */
@media (max-width: 424px) {
    :root {
        --item-width: 148px;
    }
}

/**
 * Small Mobile Devices (Up to 374px) 
 * Values are designed to have a two column layout on devices with 320px screen width.
 * Devices with less than 320px will display a single column.
 */
@media (max-width: 374px) {
    :root {
        --item-width: 125px;
    }
}

/* -------------- Item Grid Styles -------------- */
#item-grid-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, var(--grid-card-width));
    grid-auto-rows: var(--grid-row-height);
    justify-content: center;
}

.item-grid-image {
    box-sizing: border-box;
    margin: 0 var(--grid-card-margin);
    border-radius: 1.25rem;
    /* 20px / 16 */
    background-color: var(--hover-color);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.item-grid-image img {
    width: 100%;
}

/* -------------- End: Item Grid Styles -------------- */


/* -------------- Detail Page Styles -------------- */
.gs-gallery-detail-page {
    margin: 0 auto;
    margin-bottom: 1rem;
    padding: 1.875rem;
    /* 30px / 16 */
    border-radius: 1.25rem;
    /* 20px / 16 */
    background: white;
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
    /* 0 2px 5px / 16 */
}

/**
 * Large Mobile Devices (425px to 768px)
 */
@media (max-width: 768px) {
    .gs-gallery-detail-page {
        padding: 1.5rem;
        /* 24px / 16 */
        border-radius: 1rem;
        /* 16px / 16 */
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
        /* 0 2px 4px / 16 */
    }
}

/**
  * Mid-size Mobile Devices (375px to 424px)
  */
@media (max-width: 424px) {
    .gs-gallery-detail-page {
        padding: 1.25rem;
        /* 20px / 16 */
        border-radius: 0.875rem;
        /* 14px / 16 */
        box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.2);
        /* 0 1px 3px / 16 */
    }
}

/**
  * Small Mobile Devices (Up to 374px) 
  */
@media (max-width: 374px) {
    .gs-gallery-detail-page {
        padding: 0.5rem;
        /* 16px / 16 */
        border-radius: 0.75rem;
        /* 12px / 16 */
        box-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2);
        /* 0 1px 2px / 16 */
    }
}

/* -------------- Back Button Styles -------------- */
.gs-gallery-back-button {
    width: "fit-content";
    /* 109px / 16 */
    height: 3rem;
    /* 48px / 16 */
    font-family: var(--primary-font);
    font-weight: var(--primary-font-weight);
    font-size: 1.125rem;
    line-height: 1.25rem;
    /* 18px / 16 */
    color: var(--primary-color);
    background-color: transparent;
    /* Assuming a white background */
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 0.625rem;
    /* 10px / 16 */
    cursor: pointer;
    outline: none;
}


/**
  * Small Mobile Devices (Up to 374px) 
  */
@media (max-width: 374px) {
    .gs-gallery-back-button {
        width: "fit-content";
        /* 96px / 16 */
        height: 2.75rem;
        /* 44px / 16 */
        font-size: 0.875rem;
        /* 16px / 16 */
        gap: 0.5rem;
        /* 8px / 16 */
        line-height: 1.25rem;
    }
}

.gs-gallery-back-button:hover,
.gs-gallery-back-button:focus {
    color: var(--text-color-secondary);
}

/* Hide hover-arrow by default, except on hover or focus when not disabled */
.gs-gallery-back-button .hover-arrow {
    display: none;
}

.gs-gallery-back-button .default-arrow,
.gs-gallery-back-button.disabled .default-arrow,
.gs-gallery-back-button:hover .hover-arrow,
.gs-gallery-back-button:focus .hover-arrow {
    display: block;
}

.gs-gallery-back-button.disabled .hover-arrow,
.gs-gallery-back-button.disabled:hover .hover-arrow,
.gs-gallery-back-button.disabled:focus .hover-arrow,
.gs-gallery-back-button:not(.disabled):hover .default-arrow,
.gs-gallery-back-button:not(.disabled):focus .default-arrow {
    display: none;
}

/* -------------- End: Back Button Styles -------------- */

.gs-gallery-title {
    font-family: var(--primary-font);
    font-weight: var(--primary-font-weight);
    font-size: 2.625rem;
    line-height: 3.4375rem;
    margin: 1.875rem 3.75rem !important;
    display: block;
    color: var(--text-color-secondary);
    text-align: center;
    overflow-wrap: break-word;
    hyphens: auto;
}

/**
 * Large Mobile Devices (425px to 768px)
 */
@media (max-width: 768px) {
    .gs-gallery-title {
        font-size: 1.75rem;
        line-height: 2.25rem;
        margin: 1rem 1rem !important;
    }
}

/**
 * Mid-size Mobile Devices (375px to 424px)
 */
@media (max-width: 424px) {
    .gs-gallery-title {
        font-size: 1.625rem;
        line-height: 2.25rem;
        margin: 1rem 1rem !important;
    }
}

/**
 * Small Mobile Devices (Up to 374px) 
 */
@media (max-width: 374px) {
    .gs-gallery-title {
        font-size: 1.625rem;
        /* 28px / 16 */
        line-height: 2.25rem;
        margin: 1rem 1rem !important;
        /* 24px / 16 */
    }
}

/* -------------- Image Styles -------------- */
.gs-gallery-detail-image-container {
    text-align: center;
    margin: 2.5rem 0 1.25rem;
    /* 40px 0 20px / 16 */
}

.gs-gallery-detail-image {
    max-width: 55%;
    height: auto;
    border-radius: 1.25rem;
    /* 20px / 16 */
}

/**
 * Large Mobile Devices (596px to 768px)
 */
@media (max-width: 768px) {
    .gs-gallery-detail-image-container {
        margin: 2rem 0 1rem;
        /* 32px 0 16px / 16 */
    }

    .gs-gallery-detail-image {
        max-width: 80%;
        border-radius: 1rem;
        /* 16px / 16 */
    }
}

/**
 * Large Mobile Devices (425px to 596px)
 */
@media (max-width: 596px) {
    .gs-gallery-detail-image-container {
        margin: 2rem 0 1rem;
        /* 32px 0 16px / 16 */
    }

    .gs-gallery-detail-image {
        max-width: 100%;
        border-radius: 1rem;
        /* 16px / 16 */
    }
}

/**
 * Mid-size Mobile Devices (375px to 424px)
 */
@media (max-width: 424px) {
    .gs-gallery-detail-image-container {
        margin: 1.5rem 0 0.75rem;
        /* 24px 0 12px / 16 */
    }

    .gs-gallery-detail-image {
        max-width: 100%;
        border-radius: 0.875rem;
    }
}

/**
 * Small Mobile Devices (Up to 374px) 
 */
@media (max-width: 374px) {
    .gs-gallery-detail-image-container {
        margin: 1.25rem 0 0.625rem;
        /* 20px 0 10px / 16 */
    }

    .gs-gallery-detail-image {
        max-width: 90%;
        border-radius: 0.75rem;
        /* 12px / 16 */
    }
}

/* -------------- End: Image Styles -------------- */

/* -------------- Navigation Button Styles -------------- */
.gs-gallery-detail-navigation {
    max-width: 45.5rem;
    /* 728px / 16 */
    min-width: 15rem;
    /* 240px / 16 */
    width: 60%;
    height: 3rem;
    /* 48px / 16 */
    margin: 0 auto 1.25rem;
    /* 20px / 16 */
}

/**
 * Large Mobile Devices (425px to 768px)
 */
@media (max-width: 768px) {
    .gs-gallery-detail-navigation {
        height: 2.5rem;
        /* 40px / 16 */
        margin: 0 auto 1rem;
        /* 16px / 16 */
    }
}

/**
  * Mid-size Mobile Devices (375px to 424px)
  */
@media (max-width: 424px) {
    .gs-gallery-detail-navigation {
        height: 2.25rem;
        /* 36px / 16 */
        margin: 0 auto 0.75rem;
        /* 12px / 16 */
    }
}

/**
  * Small Mobile Devices (Up to 374px) 
  */
@media (max-width: 374px) {
    .gs-gallery-detail-navigation {
        height: 2rem;
        /* 32px / 16 */
        margin: 0 auto 0.625rem;
        /* 10px / 16 */
    }
}

#gs-gallery-previous {
    float: left;
    color: var(--primary-color);
}

#gs-gallery-next {
    float: right;
    justify-content: right;
    color: var(--primary-color);
}

#gs-gallery-previous.disabled,
#gs-gallery-next.disabled {
    cursor: not-allowed;
}

#gs-gallery-previous:not(.disabled):hover,
#gs-gallery-previous:not(.disabled):focus,
#gs-gallery-next:not(.disabled):hover,
#gs-gallery-next:not(.disabled):focus {
    color: var(--text-color-secondary);
}

/* -------------- End: Navigation Button Styles -------------- */

.gs-gallery-detail-description {
    font-family: var(--primary-font);
    font-weight: var(--primary-font-weight);
    color: var(--text-color-secondary);
    font-size: 1.5rem;
    /* 24px / 16 */
    line-height: 1.72375rem;
    /* 27.58px / 16 */
    margin: 2rem 3.75rem 2.5rem;
    /* 60px 40px / 16 */
    text-align: center;
}

/**
 * Large Mobile Devices (425px to 768px)
 */
@media (max-width: 768px) {
    .gs-gallery-detail-description {
        font-size: 1.375rem;
        /* 22px / 16 */
        line-height: 1.5625rem;
        /* 25px / 16 */
        margin: 1.5rem 0 2rem;
        /* 32px / 16 */
    }
}

/**
  * Mid-size Mobile Devices (375px to 424px)
  */
@media (max-width: 424px) {
    .gs-gallery-detail-description {
        font-size: 1rem;
        line-height: 1.2rem;
        margin: 1rem 0 1rem;
    }
}

/**
  * Small Mobile Devices (Up to 374px) 
  */
@media (max-width: 374px) {
    .gs-gallery-detail-description {
        font-size: 1.125rem;
        /* 18px / 16 */
        line-height: 1.375rem;
        /* 22px / 16 */
        margin: 0.75rem 0 1.25rem;
        /* 20px / 16 */
    }
}

/* -------------- Action Button Styles -------------- */
/* Action Buttons */
.gs-gallery-detail-actions {
    display: flex;
    flex-direction: column;
    /* Stack buttons vertically */
    align-items: center;
    /* Center align the buttons */
    gap: 1.25rem;
    /* 20px / 16 */
    /* Spacing between buttons */
}

/* Button Style */
.gs-gallery-button {
    /* necessary for the tooltip to work */
    position: relative;
    width: 18.125rem;
    min-height: 4.5rem;
    /* 290px / 16 */
    padding: 1.25rem;
    /* 20px / 16 */
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.625rem;
    /* 10px / 16 */
    font-family: var(--primary-font);
    font-weight: var(--primary-font-weight);
    font-size: 2rem;
    line-height: 2.298125rem;
    /* 36.77px / 16 */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
    /* Smooth transition for hover effect */
}

.gs-gallery-button img {
    width: 3rem;
    height: auto;
}

.gs-gallery-button-main {
    /* 600px / 16 */
    width: 37.5rem;
}


/**
 * Large Mobile Devices (425px to 768px)
 */
@media (max-width: 768px) {
    .gs-gallery-detail-actions {
        gap: 1rem;
        /* 16px / 16 */
    }

    .gs-gallery-button {
        padding: 0.875rem;
        min-height: 4rem;
        /* 16px / 16 */
        font-size: 1.125rem;
        /* 18px / 16 */
        line-height: 1.5rem;
        /* 24px / 16 */
        border-radius: 0.5rem;
        /* 8px / 16 */
    }

    .gs-gallery-button img {
        width: 2rem;
        /* 32px / 16 */
    }

    .gs-gallery-button-main {
        width: 95%;
    }

    .gs-gallery-button-group {
        gap: 0.875rem;
        /* 14px / 16 */
        width: 95%;
    }
}

/**
 * Mid-size Mobile Devices (375px to 424px)
 */
@media (max-width: 424px) {
    .gs-gallery-detail-actions {
        gap: 0.875rem;
        /* 14px / 16 */
    }

    .gs-gallery-button {
        min-height: 3.5rem;
        padding: 0.75rem;
        /* 12px / 16 */
        /* 14px / 16 */
        font-size: 1rem;
        /* 16px / 16 */
        line-height: 1.5rem;
        /* 24px / 16 */
        border-radius: 0.4375rem;
        /* 7px / 16 */
    }

    .gs-gallery-button img {
        width: 1.75rem;
        /* 28px / 16 */
    }

    .gs-gallery-button-main {
        width: 100%;
    }

    .gs-gallery-button-group {
        width: 100%;
        gap: 0.75rem;
        /* 12px / 16 */
    }
}

/**
 * Small Mobile Devices (Up to 374px) 
 */
@media (max-width: 374px) {
    .gs-gallery-detail-actions {
        gap: 0.625rem;
        /* 10px / 16 */
    }

    .gs-gallery-button {
        min-height: 3rem;
        padding: 0.7rem;
        font-size: 0.95rem;
        /* 15px / 16 */
        line-height: 1.25rem;
        /* 20px / 16 */
        border-radius: 0.375rem;
        /* 6px / 16 */
    }

    .gs-gallery-button img {
        width: 1.75rem;
        /* 28px / 16 */
    }

    .gs-gallery-button-group {
        gap: 0.625rem;
        /* 10px / 16 */
    }
}

/* Hide hover-arrow by default, except on hover or focus when not disabled */
.gs-gallery-button .hover-arrow,
.gs-gallery-button:hover .default-arrow,
.gs-gallery-button:focus .default-arrow {
    display: none;
}

.gs-gallery-button .default-arrow,
.gs-gallery-button:hover .hover-arrow,
.gs-gallery-button:focus .hover-arrow {
    display: inline-block;
}

.gs-gallery-button:hover {
    background-color: var(--hover-color);
    color: var(--primary-color);
}

.tooltip {
    position: absolute;
    background-color: rgba(246, 218, 237, 0.9);
    color: var(--primary-color);
    font-size: 1.25rem;
    /* 20px / 16 */
    text-align: center;
    border-radius: 0.375rem;
    /* 6px / 16 */
    padding: 0.3125rem 0.625rem;
    /* 5px 10px / 16 */
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    /* Shift it back by half its own width to center it */
    bottom: 105%;
    opacity: 0;
    /* Start with hidden tooltip */
}

/* -------------- End: Action Button Styles -------------- */

/* -------------- Store Badge Styles -------------- */
.gs-gallery-app-badges-title {
    font-family: var(--primary-font);
    font-weight: var(--primary-font-weight);
    font-size: 2rem;
    /* 32px / 16 */
    line-height: 2.298125rem;
    /* 36.77px / 16 */
    margin: 2.5rem 0 1.875rem;
    /* 40px 30px / 16 */
    text-align: center;
}

.gs-gallery-app-badges-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    /* 20px / 16 */
    gap: 2.25rem;
}

/**
 * Large Mobile Devices (425px to 768px)
 */
@media (max-width: 768px) {
    .gs-gallery-app-badges-title {
        font-size: 1.75rem;
        /* 28px / 16 */
        line-height: 2rem;
        /* 32px / 16 */
        margin: 2rem 0 1.5rem;
        /* 32px 24px / 16 */
    }

    .gs-gallery-app-badges-container {
        margin-bottom: 1rem;
        /* 16px / 16 */
        gap: 1.5rem;
        /* 32px / 16 */
    }
}

/**
  * Mid-size Mobile Devices (375px to 424px)
  */
@media (max-width: 424px) {
    .gs-gallery-app-badges-title {
        font-size: 1.5rem;
        /* 24px / 16 */
        line-height: 1.75rem;
        /* 28px / 16 */
        margin: 1.5rem 0 1.25rem;
        /* 28px 20px / 16 */
    }

    .gs-gallery-app-badges-container {
        margin-bottom: 0.875rem;
        /* 14px / 16 */
        gap: 1rem;
        /* 24px / 16 */
    }
}

/**
  * Small Mobile Devices (Up to 374px) 
  */
@media (max-width: 374px) {
    .gs-gallery-app-badges-title {
        font-size: 1.25rem;
        /* 20px / 16 */
        line-height: 1.5rem;
        /* 24px / 16 */
        margin: 1.5rem 0 1rem;
        /* 24px 16px / 16 */
    }

    .gs-gallery-app-badges-container {
        margin-bottom: 0.75rem;
        /* 12px / 16 */
        gap: 0.65rem;
    }
}

/* -------------- End: Store Badge Styles -------------- */


/* --------------  Share Button Styles -------------- */
.social-share {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin: 1.25rem 0;
    /* 20px / 16 */
}

.social-share button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.3125rem;
    /* 5px / 16 */
    border: none;
    cursor: pointer;
    border-radius: 0.3125rem;
    /* 5px / 16 */
    width: 10.5rem;
    /* 84px / 16 */
    height: 4rem;
    /* 64px / 16 */
    padding: 0;
}

.social-share svg {
    width: 1.5rem;
    /* 24px / 16 */
    height: 1.5rem;
    /* 24px / 16 */
    fill: var(--icon-color, #FFFFFF);
}

/**
 * Large Mobile Devices (425px to 768px)
 */
@media (max-width: 768px) {
    .social-share {
        margin: 1rem 0;
        /* 16px / 16 */
    }

    .social-share button {
        width: 9rem;
        /* 72px / 16 */
        height: 3.5rem;
        /* 56px / 16 */
    }

    .social-share svg {
        width: 1.25rem;
        /* 20px / 16 */
        height: 1.25rem;
        /* 20px / 16 */
    }
}

/**
  * Mid-size Mobile Devices (375px to 424px)
  */
@media (max-width: 424px) {
    .social-share {
        margin: 0.875rem 0;
        /* 14px / 16 */
    }

    .social-share button {
        width: 8rem;
        /* 64px / 16 */
        height: 3rem;
        /* 48px / 16 */
        margin: 0.25rem;
        /* 4px / 16 */
    }

    .social-share svg {
        width: 1.125rem;
        /* 18px / 16 */
        height: 1.125rem;
        /* 18px / 16 */
    }
}

/**
  * Small Mobile Devices (Up to 374px) 
  */
@media (max-width: 374px) {
    .social-share {
        margin: 0.75rem 0;
        /* 12px / 16 */
    }

    .social-share button {
        width: 5rem;
        /* 40px / 16 */
        height: 2.5rem;
        /* 40px / 16 */
        margin: 0.25rem;
        /* 2px / 16 */
    }

    .social-share svg {
        width: 1rem;
        /* 16px / 16 */
        height: 1rem;
        /* 16px / 16 */
    }
}

/* Specific styles for different social media buttons */
.social-share-facebook {
    background-color: #5D7DB7;
}

.social-share-twitter {
    background-color: #000000;
}

.social-share-pinterest {
    background-color: #DA615F;
}

.social-share-telegram {
    background-color: #4B9BCA;
}

.social-share-whatsapp {
    background-color: #74B770;
}

/* -------------- End: Share Button Styles -------------- */

/* -------------- End: Detail Page Styles -------------- */

/* -------------- "Veröffentlicht in" Styles -------------- */

.gs-gallery-blog-link {
    /* Auto layout */
    margin: auto;
    margin-top: 3px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;

    width: "auto";
    max-width: "fit-content";
    height: 104px;

    background: var(--hover-color);
    border-radius: 12px;

    font-family: var(--primary-font);
    font-weight: var(--primary-font-weight);
    color: var(--text-color-secondary);
    font-size: 1.1rem;
    line-height: 1.5rem;
    text-align: center;
}

.gs-gallery-blog-link p {
    margin: 0;
}

.gs-gallery-blog-link :hover {
    color: var(--text-color-secondary);
}

/**
 * Large Mobile Devices (425px to 768px)
 */
@media (max-width: 768px) {
    .gs-gallery-blog-link {
        font-size: 1.0rem;
        line-height: 1.5rem;
    }
}

/**
  * Mid-size Mobile Devices (375px to 424px)
  */
@media (max-width: 424px) {
    .gs-gallery-blog-link {
        font-size: 1.0rem;
        line-height: 1.5rem;
    }
}

/**
  * Small Mobile Devices (Up to 374px) 
  */
@media (max-width: 374px) {
    .gs-gallery-blog-link {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }
}

/* -------------- End: "Veröffentlicht in" Styles -------------- */

/* -------------- Gallery Text Styles -------------- */

.gallery-text {
    font-family: var(--primary-font);
    font-weight: var(--primary-font-weight);
    color: var(--text-color-secondary);
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.5rem;
    text-align: center;
}

.gallery-text-div {
    left: 16px;
    top: 218px;
}



/**
 * Large Mobile Devices (425px to 768px)
 */
@media (max-width: 768px) {
    .gallery-text {
        font-size: 1.0rem;
        line-height: 1.5rem;
    }
}

/**
  * Mid-size Mobile Devices (375px to 424px)
  */
@media (max-width: 424px) {
    .gallery-text {
        font-size: 1.0rem;
        line-height: 1.5rem;
    }
}

/**
  * Small Mobile Devices (Up to 374px) 
  */
@media (max-width: 374px) {
    .gallery-text {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }
}

/* -------------- End: Gallery Text Styles -------------- */


/* -------------- Gallery Card Styles -------------- */
.gs-gallery-card {
    margin: 0 auto;
    margin-bottom: 1rem;
    padding: 1.125rem 1rem 1.125rem;
    /* 30px / 16 */
    border-radius: 1.25rem;
    /* 20px / 16 */
    background: white;
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
    /* 0 2px 5px / 16 */
}

/**
 * Large Mobile Devices (425px to 768px)
 */
@media (max-width: 768px) {
    .gs-gallery-card {
        padding: 0.563rem 0.5rem 0.563rem;
        /* 24px / 16 */
        border-radius: 1rem;
        /* 16px / 16 */
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
        /* 0 2px 4px / 16 */
    }
}

/**
  * Mid-size Mobile Devices (375px to 424px)
  */
@media (max-width: 424px) {
    .gs-gallery-card {
        padding: 0.563rem 0.35rem 0.563rem;
        /* 20px / 16 */
        border-radius: 0.875rem;
        /* 14px / 16 */
        box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.2);
        /* 0 1px 3px / 16 */
    }
}

/**
  * Small Mobile Devices (Up to 374px) 
  */
@media (max-width: 374px) {
    .gs-gallery-card {
        padding: 0.563rem 0.35rem 0.563rem;
        /* 16px / 16 */
        border-radius: 0.75rem;
        /* 12px / 16 */
        box-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2);
        /* 0 1px 2px / 16 */
    }
}

/* -------------- End: Gallery Card Styles -------------- */