.blogsNew-wrapp {
    
}

/*----------------------------------------------------------------------
pages
----------------------------------------------------------------------*/
.pages {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.pages .pages-item {
    width: 24px;
    height: 24px;
    line-height: 24px;
    margin: 0 5px;
    color: var(--color-textLight);
    text-align: center;
    cursor: pointer;
}

.pages .pages-item.active {
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: #fff;
}

.pages .pages-item.back,
.pages .pages-item.next {
    color: var(--color-secondary);
}

.pages .pages-item:hover {
    opacity: 0.7;
}

/*----------------------------------------------------------------------
blog-item-single
----------------------------------------------------------------------*/
.blog-item-single {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.blog-item-single:first-child {
    margin-bottom: 15px;
}

.blog-item-single::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--color-secondary), transparent);
    z-index: 3;
}

.blog-item-single img {
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.blog-item-single .item-content {
    position: absolute;
    width: 100%;
    left:0;
    bottom: 0;
    padding: 15px 30px 15px 0;
    display: inline-flex;
    flex-direction: column;
    color: #fff;
    z-index: 3;
}

.blog-item-single .item-content .item-content-title {
    font-size: 2rem;
    font-weight: 900;
}

.blog-item-single .item-content .item-content-date {
    font-size: 1rem;
}

@media screen and (max-width:1023px) {
    .blog-item-single {
        border-radius: 18px;
        margin-bottom: 0 !important
    }

    .blog-item-single::before  {
        height: 100px;
    }

    .blog-item-single .item-content .item-content-title {
        font-size: 1.5rem;
        font-weight: 700;
    }
}

@media screen and (max-width:767px) {
    .blog-item-single .item-content {
        padding: 10px;
    }

    .blog-item-single .item-content .item-content-title {
        font-size: 1.3rem;
        font-weight: bold;
    }
}

/*----------------------------------------------------------------------
blog-item-row
----------------------------------------------------------------------*/
.blog-item-row {
    display: flex;
    padding: 15px;
    margin-bottom: 15px;
}
.blog-item-row img {
    width: 174px;
    height: 134;
    object-fit: cover;
    border-radius: 18px;
    margin-left: 15px;
}
.blog-item-row .item-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px dashed var(--color-secondary);
}
.blog-item-row .item-content .item-content-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 25px;
}
.blog-item-row .item-content .item-content-description {
    font-size: 1rem;
    color: var(--color-textLight);
    margin-bottom: 5px;
}
.blog-item-row .item-content .item-content-info {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
    color: var(--color-textAlpha);
    font-size: 0.9rem;
}

@media screen and (max-width:767px) {
    .blog-item-row {
        padding: 15px 0;
    }
    .blog-item-row img {
        width: 96px;
        height: 96px;
        border-radius: 12px;
    }
}

/*----------------------------------------------------------------------
blogsNew-wrapp
----------------------------------------------------------------------*/
.blogsNew-wrapp .blogsNew-inner {
    display: flex;
    height: 616px;
}
.blogsNew-wrapp .blogsNew-inner-larg {
    width: 70%;
    height: 100%;
    padding-left: 15px;
}

.blogsNew-wrapp .blogsNew-inner-small {
    display: flex;
    flex-direction: column;
    width: 30%;
    height: 100%;
}

.blogsNew-wrapp .blogsNew-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
    margin-bottom: 0;
}
.blogsNew-wrapp .blogsNew-list .list-item {
    padding: 20px;
    width: 33.333%;
    height: 460px;
}
.blogsNew-wrapp .blogsNew-list .list-item .list-item-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
}

.blogsNew-wrapp .blogsNew-list .list-item .list-item-inner img {
    width: 100%;
    height: 100%;
   /* object-fit: cover;*/
    object-position: top center;
}

.blogsNew-wrapp .blogsNew-list .list-item .list-item-inner .item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50%;
    padding: 25px;
}

.blogsNew-wrapp .blogsNew-list .list-item .list-item-inner .item-content .item-content-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 5px;
    text-align: center;
}

.blogsNew-wrapp .blogsNew-list .list-item .list-item-inner .item-content .item-content-description {
    font-size: 1rem;
    color: var(--color-textLight);
    margin-bottom: 5px;
    text-align: center;
}

.blogsNew-wrapp .blogsNew-list .list-item .list-item-inner .item-content .item-content-link {
    color: var(--color-secondary);
    font-weight: bold;
}

.blogsNew-wrapp .blogsNew-list .list-item .list-item-inner .item-content .item-info {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    margin-bottom: 5px;
    color: var(--color-textAlpha);
    font-size: 0.9rem;
}

.blogsNew-wrapp .blogsNew-list .list-item .list-item-inner .item-content .item-info .icon {
    margin-left: 2px;
}

.blogsNew-wrapp .blogsNew-list .list-item .list-item-inner .item-tag {
    position: absolute;
    left:50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    height: 24px;
    line-height: 24px;
    color: #fff;
    background-color: var(--color-secondary);
    padding: 0 10px;
}

@media screen and (max-width:1023px) {
    .blogsNew-wrapp .blogsNew-inner {
        flex-direction: column;
        height: 516px;
    }

    .blogsNew-wrapp .blogsNew-inner-larg {
        width: 100%;
        height: 70%;
        height: 100%;
        padding-left: 0;
        padding-bottom: 15px;
    }
    
    .blogsNew-wrapp .blogsNew-inner-small {
        flex-direction: row;
        justify-content: space-between;
        height: 30%;
        width: 100%;
    }   
    
    .blogsNew-wrapp .blogsNew-inner-small .blog-item-single {
        width: 48%;
    }

    .blogsNew-wrapp .blogsNew-list .list-item {
        padding: 20px;
        width: 50%;
        height: 490px;
    }

    @media screen and (max-width:767px) {
        .blogsNew-wrapp .blogsNew-list .list-item {
            padding: 20px 0;
            width: 100%;
            height: 480px;
        }        
    }
}

/*----------------------------------------------------------------------
blogsFavorites-wrapp
----------------------------------------------------------------------*/
.blogsFavorites-wrapp {
    margin-left: 15px;
    margin-bottom: 0;
}
.blogsFavorites-wrapp .blogsFavorites-list {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 25px;
    border:2px dashed var(--color-secondary);
}

/*----------------------------------------------------------------------
blogsVisited-wrapp 
----------------------------------------------------------------------*/
.blogsVisited-wrapp  {
    display: flex;
    flex-direction: column;    
    margin-bottom: 0;
}

.blogsVisited-wrapp .blogsVisited-list {
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media screen and (max-width: 1023px) {
    .blogsVisited-wrapp .blogsVisited-list .blog-item-single {
        height: 300px;
        margin-bottom: 15px !important;
    }
}

@media screen and (max-width: 767px) {
    .blogsVisited-wrapp .blogsVisited-list .blog-item-single {
        height: 280px;
        margin-bottom: 15px !important;
    }
}