.oew-widget-blogs {
    //== [ Layout Default ]
    .oew-blog-layout-default & {
        .oew-row {
            margin: 0;
        }

        .column-left, .column-right {
            padding: 0;
        }

        .column-left {
            @media (min-width: 1200px) {
                margin-left: 16.66666667%;
            }

            .inner-column-content {
                padding: 30px 15px;
                @media (min-width: 576px) {
                    padding-top: 50px;
                    padding-bottom: 50px;
                }
                @media (min-width: 768px) {
                    padding-top: 70px;
                    padding-bottom: 70px;
                }
                @media (min-width: 992px) {
                    padding-top: 90px;
                    padding-bottom: 90px;
                }
                @media (min-width: 1200px) {
                    padding-top: 110px;
                    padding-bottom: 110px;
                }
            }
        }

        .oew-slick {
            font-size: 0;
            height: 100%;

            &:hover .slick-arrow {
                opacity: 1;
                visibility: visible;
            }

            .slick-list {
                height: 100%;
            }

            .slick-track {
                height: 100%;
            }

            .slick-slide > div{
                height: 100%;
            }

            .slick-arrow {
                width: 30px;
                height: 50px;
                margin-top: -20px;
                padding: 0;
                border: none;
                border-radius: 0;
                background-color: #ffffff;
                font-size: 20px;
                color: #363636;
                opacity: 0;
                visibility: hidden;
                position: absolute;
                top: 50%;
                z-index: 2;

                &:focus {
                    outline: none;
                }

                &.slick-prev {
                    left: 0;
                }

                &.slick-next {
                    right: 0;
                }
            }
        }

        .oew-section-title {
            .oew-heading-title {
                margin: 0;
                color: #092035;
                font-weight: bold;
                letter-spacing: 0.01em;
                font-size: 42px;
                font-style: normal;
                position: relative;
                @media (max-width: 1024px) {
                    font-size: 34px;
                }
                @media (max-width: 767px) {
                    font-size: 26px;
                }

                & + .oew-description {
                    margin-top: 25px;
                }
            }

            .oew-description {
                margin-bottom: 0;
                font-size: 16px;
                color: #707070;
            }
        }

        .oew-default-btn {
            margin-top: 30px;
            @media (min-width: 576px) {
                margin-top: 40px;
            }
            @media (min-width: 768px) {
                margin-top: 50px;
            }
            @media (min-width: 992px) {
                margin-top: 60px;
            }
            @media (min-width: 1200px) {
                margin-top: 70px;
            }

            a {
                display: inline-flex;
                align-items: center;
                padding-left: 30px;
                padding-right: 20px;
                font-size: 16px;
                position: relative;
                color: #2e3192;
                transition: all 0.4s ease;

                &:before {
                    content: '';
                    width: 25px;
                    height: 1px;
                    margin-top: -.5px;
                    position: absolute;
                    top: 50%;
                    left: 0;
                    background: currentColor;
                    transition: all 0.4s ease;
                }

                &:hover {
                    color: #ef4444;

                    &:before {
                        width: calc(100% - 2px);
                    }
                }

                .icon.right {
                    order: 2;
                    margin-top: -8px;
                    font-size: 16px;
                    line-height: 1;
                    position: absolute;
                    top: 50%;
                    right: 0;
                }
            }
        }

        .item {
            position: relative;
            height: 100%;

            &:hover {
                .item-content {
                    background-color: #ef4444;
                }

                .inner-content * {
                    color: #ffffff;
                }
            }

            .item-image {
                height: 100%;
                img {
                    max-width: 645px;
                    width: 100%;
                    height: 100%;
                    margin: auto;
                    object-fit: cover;
                }
            }

            .item-content {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                padding: 20px 25px;
                background: rgba(0, 0, 0, 0.7);
                position: absolute;
                right: 0;
                bottom: 0;
                left: 0;
                transition: all 0.4s ease;

                .inner-content {
                    width: 73%;
                    margin-right: 10px;
                }
            }

            .item-title {
                margin-bottom: 5px;
                line-height: normal;

                a {
                    display: block;
                    width: 100%;
                    font-size: 20px;
                    color: #fff;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    transition: all 0.4s ease;
                }
            }

            .item-meta {
                font-size: 14px;
                line-height: 1.5;
                color: #acacac;
                letter-spacing: 0.01em;
                transition: all 0.4s ease;

                span {
                    color: #707070;
                    transition: all 0.4s ease;
                }
            }

            .item-action-more {
                a {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    max-width: 55px;
                    max-height: 55px;
                    border: 2px solid currentColor;
                    border-radius: 50%;
                    font-size: 20px;
                    color: #ffffff;
                    padding: 15px;
                }
            }
        }
    }

    //== [ Layout List ]
    .oew-blog-layout-list & {
        .oew-section-title {
            margin-bottom: 50px;

            .oew-heading-title {
                margin: 0;
                font-size: 38px;
                font-weight: bold;
                color: #9ac100;

                & + .oew-description {
                    margin-top: 11px;
                }
            }

            .oew-description {
                margin-bottom: 0;
                font-size: 15px;
            }
        }

        .column {
            margin-bottom: 25px;
            @media (min-width: 768px) {
                margin-bottom: 30px;
            }
        }

        .item {
            display: flex;
            margin-left: -15px;
            margin-right: -15px;

            &.reverse {
                flex-direction: row-reverse;
            }

            > div {
                max-width: 50%;
                flex: 0 0 50%;
                padding-left: 15px;
                padding-right: 15px;
            }

            .item-image {
                font-size: 0;
                overflow: hidden;

                &:hover img {
                    transform: scale(1.15);
                    -webkit-transform: scale(1.15);
                }

                img {
                    transition: all 0.4s ease;
                    -webkit-transition: all 0.4s ease;
                }
            }

            .item-title {
                margin-top: 5px;
                margin-bottom: 11px;
                overflow: hidden;
                transition: all 0.4s ease;
                -webkit-transition: all 0.4s ease;

                a {
                    display: block;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    font-size: 22px;
                    color: #333333;

                    &:hover {
                        color: #9ac100;
                    }
                }
            }

            .item-meta {
                margin-bottom: 20px;
                font-size: 14px;
                font-style: italic;
                color: #999999;

                a {
                    color: currentColor;
                    transition: all 0.4s ease;
                    -webkit-transition: all 0.4s ease;

                    &:after {
                        content: '.';
                        margin: 0 6px;
                    }

                    &:hover {
                        color: #9ac100;
                    }
                }
            }

            .item-desc {
                display: block;
                display: -webkit-box;
                overflow: hidden;
                text-overflow: ellipsis;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                font-size: 15px;
                color: #716f6c;
            }

            .item-action-more {
                margin-top: 20px;
                position: relative;

                a {
                    display: inline-flex;
                    align-items: center;
                    font-size: 13px;
                    font-weight: bold;
                    text-transform: uppercase;
                    color: #b3b3b3;
                    transition: all 0.4s ease;
                    -webkit-transition: all 0.4s ease;

                    &:hover {
                        color: #9ac100;
                    }
                }

                i {
                    margin-left: 5px;
                    font-size: 14px;
                }
            }
        }
    }
}
