.plp-cms-block {
    position: relative;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.plp-cms-block-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: lightgray 50%;
}

.plp-cms-block-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: unset !important;
}

.plp-cms-block-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 40px;
}

.plp-cms-block-overlay {
    padding: 76px 56px;
    width: 100%;
    border-radius: 12px;
    text-align: left;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.15) 40%,
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: blur(6px) saturate(150%);
    -webkit-backdrop-: blur(6px) saturate(150%);
}
.plp-cms-block-overlay a {
    margin: auto;
    display: flex;
    height: 40px;
}

.plp-cms-block-title {
    color: #191818;
    text-align: center;
    font-family: "Ciron Classic", serif;
    font-size: 28px;
    font-weight: 650;
    line-height: 36px;
    margin-bottom: 8px;
}

.plp-cms-block-text {
    color: #191818;
    font-family: "Ciron Text", serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px; 
    margin-bottom: 24px;
    text-align: center;
}

/* When inserted in product grid */
.products .plp-cms-block-wrapper {
    width: 100%;
    padding: 0 16px;
    grid-column: span 2;
    .plp-cms-block {
        height: 100%;
    }

    @media (min-width: 992px) {
        padding-bottom: 30px;
    }
}

@media (max-width: 1200px) {
    .plp-cms-block-overlay {
        padding: 56px 36px;
    }
}

@media (max-width: 768px) {
    .products .plp-cms-block-wrapper  {
        margin-top: -30px;
    }

    .plp-cms-block-content {
        padding: 42px 16px;
    }
    
    .plp-cms-block-overlay {
        padding: 25px 15px;
        border: 1px solid white;
        border-radius: 8px;
    }
    
    .plp-cms-block-title {
        color: #191818;
        font-size: 20px;
        font-weight: 650;
        line-height: 28px;
        text-align: left;
    }
    
    .plp-cms-block-text {
        color: #191818;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        text-align: left;
    }
}
