/*---------------------
  Latest Blog
-----------------------*/
.latest {
    padding-bottom: 70px;
    padding-top: 160px;

    .section-title {
        margin-bottom: 45px;
    }
}

.latest__blog__item {
    margin-bottom: 30px;
}

.latest__blog__item__pic {
    height: 220px;
    position: relative;
    border-radius: 2px;

    ul {
        background: rgb(0, 0, 0, 0.5);
        padding: 8px 20px 10px;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        border-radius: 0 0 2px 2px;

        li {
            list-style: none;
            display: inline-block;
            font-size: 13px;
            color: $white-color;
            margin-right: 22px;
            position: relative;

            &:after {
                position: absolute;
                right: -14px;
                top: 1px;
                height: 17px;
                width: 1px;
                background: $white-color;
                content: '';
            }

            &:last-child {
                margin-right: 0;

                &:after {
                    display: none;
                }
            }
        }
    }
}

.latest__blog__item__text {
    padding-top: 25px;

    h5 {
        font-size: 20px;
        color: $heading-color-2;
        font-weight: 700;
        line-height: 28px;
        margin-bottom: 14px;
    }

    p {
        color: #8d8d8d;
        margin-bottom: 20px;
    }

    a {
        font-size: 15px;
        color: #8d8d8d;
        font-weight: 700;
        display: inline-block;

        i {
            color: $primary-color;
            margin-left: 6px;
        }
    }
}

/*---------------------
  Blog
-----------------------*/
.blog {

    .pagination__option {
        padding-top: 10px;
    }
}

.blog__item {
    margin-bottom: 35px;
}

.blog__item__pic {
    height: 220px;
    position: relative;
    border-radius: 2px;

    ul {
        background: rgb(0, 0, 0, 0.5);
        padding: 8px 22px 10px;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        border-radius: 0 0 2px 2px;

        li {
            list-style: none;
            display: inline-block;
            font-size: 13px;
            color: $white-color;
            margin-right: 28px;
            position: relative;

            &:after {
                position: absolute;
                right: -19px;
                top: 1px;
                height: 17px;
                width: 1px;
                background: $white-color;
                content: '';
            }

            &:last-child {
                margin-right: 0;

                &:after {
                    display: none;
                }
            }
        }
    }
}

.blog__item__text {
    padding-top: 28px;

    h5 {
        margin-bottom: 40px;

        a {
            font-size: 20px;
            color: $heading-color-2;
            font-weight: 700;
        }
    }

    p {
        color: #8d8d8d;
        margin-bottom: 0;
    }
}