/** ===== Entry Post ===== **/
.entry-post {
    margin-bottom: 50px;

    .entry-summary {
        .entry-title {
            font-size: 32px;
            line-height: 1.3;
            margin-bottom: 20px;

            @include respond-below(lg) {
                font-size: 30px;
            }

            @include respond-below(md) {
                font-size: 26px;
            }

            @include respond-below(c480) {
                font-size: 22px;
            }
        }

        .entry-meta {
            display: flex;
            flex-wrap: wrap;
            padding: 0;
            list-style: none;
            font-size: 14px;
            line-height: 1;
            margin-bottom: 10px;

            li {
                display: flex;
                align-items: center;
                margin-bottom: 10px;

                &:not(:last-child) {
                    margin-right: 20px;
                }

                a {
                    color: $color-body;

                    &:hover {
                        color: $color-secondary;
                    }
                }

                i {
                    margin-right: 5px;
                    color: $color-secondary;
                }
            }
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            margin-top: 20px;
            padding: 18px 25px;
            font: {
                size: 14px;
                weight: 500;
            }
            text: {
                transform: capitalize;
                decoration: none;
            }
            line-height: 1;
            border-radius: 5px;
            color: $color-white;
            background-color: $color-primary;
            transition: 0.3s;

            @include respond-below(c480) {
                padding: 16px 20px;
            }

            i {
                margin-left: 10px;
            }

            &:hover {
                background-color: $color-secondary;
                color: $color-white;
            }
        }

        p {
            margin: 0;

            @include respond-below(c480) {
                font-size: 15px;
            }
        }
    }

    .entry-media {
        position: relative;
        z-index: 1;
        overflow: hidden;
        margin-bottom: 20px;

        img {
            border-radius: 5px;
        }

        .post-categories {
            display: flex;
            flex-wrap: wrap;
            position: absolute;
            left: 40px;
            top: 40px;
            z-index: 2;

            a {
                font-size: 14px;
                line-height: 1.2;
                padding: 8px 15px;
                border-radius: 5px;
                color: $color-white;
                background-color: $color-secondary;
                margin-right: 10px;
                margin-bottom: 10px;
            }
        }
    }
}
