<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Flexible Gallery Block Styles
 *
 * @package bluepencilcoll
 */

.wp-block-bluepencilcoll-flexible-gallery {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background-color: var(--wp--preset--color--plaster);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 540px;
    transition: all 0.3s ease;
}
.gallery-item img,.gallery-item picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-item.bg-type-background-logo img,.gallery-item.bg-type-background-logo picture {
    width: auto;
    height: auto;
    object-fit: unset;
    padding: 15px;
}

/* Width variations */
.gallery-item.width-25 {
    grid-column: span 1;
}

.gallery-item.width-50 {
    grid-column: span 2;
}

.gallery-item.width-75 {
    grid-column: span 3;
}

.gallery-item.width-100 {
    grid-column: span 4;
}

/* Height variations */
.gallery-item.height-1 {
    grid-row: span 1;
}

.gallery-item.height-2 {
    grid-row: span 2;
}

/* Overlay */
.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.has-background-dim-0 {
    opacity: 0;
}

.has-background-dim-10 {
    opacity: 0.1;
}

.has-background-dim-20 {
    opacity: 0.2;
}

.has-background-dim-30 {
    opacity: 0.3;
}

.has-background-dim-40 {
    opacity: 0.4;
}

.has-background-dim-50 {
    opacity: 0.5;
}

.has-background-dim-60 {
    opacity: 0.6;
}

.has-background-dim-70 {
    opacity: 0.7;
}

.has-background-dim-80 {
    opacity: 0.8;
}

.has-background-dim-90 {
    opacity: 0.9;
}

.has-background-dim-100 {
    opacity: 1;
}

/* Content */
.gallery-item-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item-title {
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 10px;
    line-height: 1.2;
}

.gallery-item-caption {
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

/* Caption styles */
.gallery-item.caption-overlay .gallery-item-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery-item.caption-below .gallery-item-content {
    position: relative;
    background-color: var(--wp--preset--color--plaster);
    padding: 15px;
}

.gallery-item.caption-below {
    flex-direction: column;
}

.gallery-item.caption-below .gallery-item-overlay {
    bottom: auto;
    height: calc(100% - 70px);
}

/* Link */
.gallery-item-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    text-decoration: none;
}

/* Hover effects */
.gallery-item.hover-zoom:hover {
    transform: scale(1.02);
}

.gallery-item.hover-zoom:hover .gallery-item-overlay {
    opacity: 0.8;
}

.gallery-item.hover-fade .gallery-item-content {
    opacity: 0;
}

.gallery-item.hover-fade:hover .gallery-item-content {
    opacity: 1;
}

.gallery-item.hover-fade:hover .gallery-item-overlay {
    opacity: 0.8;
}

.flexible_gallery_details {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s, transform 0.3s, background 0.3s;
}

h2.flexible-gallery-heading {
    color: #fff;
}
.full_height{
    height: 100%;
}
.gallery-item-link-wrapper:hover .flexible_gallery_details{
    opacity: 1;
    transform: translateY(0);
    background: #667ef596;
}

.gallery-item {
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

/* Responsive styles */
@media (min-width: 1921px) {
    .gallery-item {
    background-size: cover;
}
}

@media (max-width: 1440px) {
.gallery-item{
        min-height: 500px;
}
}
@media (max-width: 1360px) {
    .gallery-item {
    min-height: 300px;
    height: auto;
}
}
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item.width-75, 
    .gallery-item.width-100 {
        grid-column: span 3;
    }
    
    .gallery-item.width-50 {
        grid-column: span 2;
    }
    
    .gallery-item.width-25 {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    /* .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    } */
     .gallery-grid {
        grid-template-columns: 1fr;
    }
    /* .gallery-item.width-50,
    .gallery-item.width-75, 
    .gallery-item.width-100 {
        grid-column: span 2;
    }
    
    .gallery-item.width-25 {
        grid-column: span 1;
    } */
    .gallery-item.width-25, 
    .gallery-item.width-50, 
    .gallery-item.width-75, 
    .gallery-item.width-100 {
        grid-column: span 1;
    }

    .gallery-item-title {
        font-size: 1.2rem;
    }
    
    .gallery-item-caption {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.width-25, 
    .gallery-item.width-50, 
    .gallery-item.width-75, 
    .gallery-item.width-100 {
        grid-column: span 1;
    }
}
</pre></body></html>