.glidy--posts {
    ul, ol {
        padding: 0;
    }

    li {
        list-style: none;
    }

    svg {
        width: 1em;
        height: 1em;
    }

    .excerpt {
        padding-bottom: 10px;
    }

    .read-more {
        font-size: 16px;
        fill: #222;
        color: #222;

        &:hover {
            fill: #ED8914;
            color: #ED8914;
        }
    }

}

.glidy--post-category {
    gap: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;

    a {
        color: #222;
        font-size: 16px;
        transition: all 0.3s;
        text-transform: capitalize;

        &:hover {
            color: #ED8914;
        }
    }
}

.glidy--post-meta {
    gap: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;

    li {
        color: #222;
        font-size: 16px;
        text-transform: capitalize;
    }

    a {
        color: #222;
        font-size: 16px;
        transition: all 0.3s;
        text-transform: capitalize;

        &:hover {
            color: #ED8914;
        }
    }
}

.glidy--post .separator {
    position: relative;
    width: 10px;
}

.glidy--post .separator span {
    display: inline-block;
    background: #222;
    line-height: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.glidy--post .separator .line {
    width: 10px;
    height: 1px;
}

.glidy--post .separator .pipe {
    width: 1px;
    height: 10px;
}

.glidy--post .separator .dot {
    width: 8px;
    height: 8px;
    border-radius: 100px;
}

/* Default */
.glidy--posts {
    display: grid;

    .thumb {
        margin-bottom: 10px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .title {
        transition: all 0.3s;

        a {
            color: inherit;
        }
    }
}

/* Aside */
.glidy--posts.aside {
    .glidy--post {
        display: flex;
        gap: 30px;
    }

    .content {
        flex-basis: 0;
        flex-grow: 1;
    }

    .thumb {
        flex-basis: 250px;
        flex-shrink: 0;
    }


}

/* Overlay */
.glidy--posts.overlay {
    .glidy--post {
        position: relative;
        padding: 20px;
        overflow: hidden;
    }

    .title {
        color: #fff;
    }

    li, 
    a,
    .excerpt {
        fill: #ddd;
        color: #ddd;
    }

    .separator {
        color: #ddd;
    }

    .thumb {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;

        &::after {
            position: absolute;
            content: "";
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: #00000096;
        }
    }

    .content {
        position: relative;
        z-index: 1;
    }

}