@charset "UTF-8";


.droppableElementArea.blogpost-funnel-element{
    margin: 0;
}

.blogpost-funnel-element .post-container,
.blogpost-funnel-element .post-container img{
    cursor: pointer;
}

figure.wp-block-image img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.blog-loading {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.bl-placeholder {
    background-color: #E6EDF1;
    position: relative;
    width: 100%;
    min-height: 20px;
    border-radius: 5px;
}


.bl-placeholder::after {
    content: "";
    position: absolute;
    left: -45%;
    height: 100%;
    width: 45%;
    background-image: linear-gradient(to left, rgba(251, 251, 251, .05), rgba(251, 251, 251, .3), rgba(251, 251, 251, .6), rgba(251, 251, 251, .3), rgba(251, 251, 251, .05));
    background-image: -moz-linear-gradient(to left, rgba(251, 251, 251, .05), rgba(251, 251, 251, .3), rgba(251, 251, 251, .6), rgba(251, 251, 251, .3), rgba(251, 251, 251, .05));
    background-image: -webkit-linear-gradient(to left, rgba(251, 251, 251, .05), rgba(251, 251, 251, .3), rgba(251, 251, 251, .6), rgba(251, 251, 251, .3), rgba(251, 251, 251, .05));
    animation: loading 1s infinite;
    z-index: 45;
}

.bl-title {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;

}
.bl-placeholder.bl-small {
    width: 160px;
}

.bl-placeholder.bg-title {
    height: 40px;
}

.bl-placeholder.bg-image {
    width: 100%;
    height: 100%;
}

.bl-image {
    width: 100%;
    height: 470px;
    display: flex;
    margin-bottom: 20px;
}

.bl-content {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bl-content .bl-placeholder:last-of-type {
    width: 80%;
}

@keyframes loading {
    0% {
        left: -45%;
    }

    100% {
        left: 100%;
    }
}