/** SECCION DE BLOGS */
.ds-blogs-section {
    width: 100%;
    min-height: 720px;
    padding: 12px;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.ds-blogs-section::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    margin: auto;
    background-image: linear-gradient(#fff, rgba(255, 255, 255, .4), #fff), url('../IMAGENES/Lustkar_Blog.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1
}

.ds-blogs-section::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    margin: auto;
    background-image: linear-gradient(90deg, #fff, rgba(255, 255, 255, .4), #fff);
    background-size: cover;
    background-position: center;
    z-index: -1
}

.ds-flex-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center
}

.ds-title-blogs .avl-title-section {
    width: auto;
    font-size: 2.75rem !important;
    margin-top: 33px;

}

.ls-blog-item {
    width: 600px;
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    /* backdrop-filter:blur(16px); */
    border-radius: 6px;
    box-shadow: 0 0 28px rgb(0 0 0 / 30%);
    margin: 28px 0;
    background-color: rgb(255 255 255);
    height: 296px;
}

.ls-blog-item .ls-image-item {
    width: 100%;
    position: static;
    z-index: 0
}

.ls-image-item img:not(.ls-image-ground) {
    width: 100%;
    height: 100%;
    background-color: rgb(24 24 24);
    animation: slide-in-right .25s cubic-bezier(.25, .46, .45, .94) both;
    object-fit: contain;
}

.ls-image-box {
    overflow: hidden;
    position: static;
    width: 100%;
    height: 100%;
    z-index: 1;
    --image-ground: attr(data-src)
}

.ls-image-item .ls-image-box:not(.ds-active) {
    display: none !important;
}

.ls-blog-item .ls-data-item {
    width: 100%;
    padding: 21px;
    position: relative;
    background-color: rgb(255 255 255 / 60%);
}

.ls-data-perfil {
    width: 100%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(0, 0, 0, .8);
    font-size: 1.25rem;
    font-family: "Bebas Neue";
    margin: 0
}

.ls-data-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-size: 1.1rem;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #3e93cc;
    font-family: "Bebas Neue"
}

.ls-blog-item .ls-data-preview {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    font-size: 1rem;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "Bebas Neue"
}

.lfp-boton-ss {
    min-width: 160px;
    position: relative;
    height: 42px;
    border-radius: 8px;
    padding: 6px 12px;
    left: 17px;
    font-family: "Bebas Neue";
    font-size: 1rem;
    transition: all .2s ease-in;
    background-image: linear-gradient(45deg, var(--ds-lila), var(--ds-orange), var(--ds-orange));
    border: 0;
    outline: 0;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center
}

.lfp-date-text {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, .5);
    font-family: "Bebas Neue";
    display: block;
    font-weight: 500;
    margin-top: 8px
}

.ds-blogs-inner {
    padding: 29px 16px
}

.ds-font-alt {
    font-family: "Bebas Neue" !important
}

@media(max-width: 575.98px) {
    .ls-blog-item {
        width: calc(100% - 48px);
        flex-wrap: wrap;
        margin: 24px;
        height: 600px;
    }
}

@media(min-width: 576px) and (max-width:767.98px) {
    .ls-blog-item {
        width: calc(100% - 48px);
        flex-wrap: nowrap;
        margin: 24px
    }
}

@media(min-width: 768px) and (max-width:1199.98px) {
    .ls-blog-item {
        width: 400px;
        flex-wrap: nowrap
    }
}

@media(min-width: 1200px) {
    .ls-blog-item {
        width: 520px;
        flex-wrap: nowrap
    }
}

.ds-blogs-progress {
    width: 33.6px;
    height: 67.2px;
    animation: progress-sze6ck 2s infinite backwards;
    background: linear-gradient(0deg, #d72638, #d72638 50%, transparent 50%, transparent);
    background-size: 100% 200%;
    background-repeat: no-repeat;
    border: 6.7px solid #212121;
    border-radius: 16.8px
}

@keyframes progress-sze6ck {
    0% {
        background-position: 0 0;
        transform: rotate(0)
    }

    25% {
        background-position: 0 100%;
        transform: rotate(0)
    }

    50% {
        background-position: 0 100%;
        transform: rotate(180deg)
    }

    75% {
        background-position: 0 200%;
        transform: rotate(180deg)
    }

    100% {
        background-position: 0 200%;
        transform: rotate(360deg)
    }
}

.ds-blogs-loading {
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px
}

.ds-lifeand-pen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.slide-in-right {
    -webkit-animation: slide-in-right .5s cubic-bezier(.25, .46, .45, .94) both;
    animation: slide-in-right .5s cubic-bezier(.25, .46, .45, .94) both
}

@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}

.ds-timer-image {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: #000000;
    animation: key-timer-image 5s ease-in;
    animation-fill-mode: forwards;
    z-index: 3;
    display: inline-block;
}

@keyframes key-timer-image {
    from {
        width: 0%
    }

    to {
        width: 100%
    }
}

.ls-image-ground {
    content: '';
    width: 100%;
    height: 100%;
    background-size: cover;
    position: absolute;
    inset: 0;
    margin: auto;
    filter: blur(24px);
    z-index: -2;
}