.g-featuredvideos {
    margin: 0 -2.8rem;

    h2 {
        padding: 0 $content-padding;
        margin: 0;
    }

    h3 {
        font-size: $core-font-size;
        margin: $content-margin 0 $content-padding 0;

        .g-featuredvideos-item-count {
            float: right;
            display: inline-block;
            font-weight: $font-weight-regular;

            .dir-rtl & {
                float: left;
            }
        }
    }

    p {
        padding: 0 $content-padding;
        margin-bottom: $content-padding;
    }

    .g-featuredvideos-item-image {
        position: relative;
        cursor: pointer;
        img {
            box-shadow: 0 0 20px #000000;
            border-radius: 10px;
        }

        a {
            position: relative;
            width: 100%;
            height: 100%;
            display: block;
            color: $white;

            &:before {
                position: absolute;
                width: 100%;
                height: 100%;
                content: '';
                background: $accent-color-1;
                border-radius: 6px;
                opacity: 0;
                transition: opacity 0.5s ease-in-out;
            }
            &:hover {
                &:before {
                    opacity: 0.5;
                }
            }
        }

        i {
            width: 50px;
            height: 50px;
            font-size: 50px;
            margin: auto;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
        }
    }

    .first {
        h3 {
            font-size: $core-font-size + 0.2;
            margin-bottom: 0;
        }

        .g-featuredvideos-item-image {
            i {
                width: 60px;
                height: 60px;
                font-size: 60px;
            }
        }
    }

    .g-featuredvideos-item {
        padding: 0 $content-padding;
    }

    .g-featuredvideos-item-author-text {
        font-size: $core-font-size - 0.2;
        color: transparentize($base-text-color, 60%);

        &:hover {
            text-decoration: underline;
        }
    }

    .g-featuredvideos-item-avatar {
        margin-right: $content-margin;

        .dir-rtl & {
            margin-right: 0;
            margin-left: $content-margin;
        }

        img {
            max-width: 20px;
            border-radius: 100%;
        }
    }
}