


/*===========================
    26.BLOG POST PAGE css 
===========================*/


.sing-blog-post{
    & .blog-post-image{
        & img{
            width: 100%;
						max-height: 400px;
        }
    }
    & .blog-post-content{
        margin-top: 20px;
        
        & .blog-meta{
            & li{
                display: inline-block;
                
                & + li{
                    margin-left: 30px;
                    
                    @media #{$xs}{
                        margin-left: 15px;
                    }
                    @media #{$sm}{
                        margin-left: 30px;
                    }
                }
                
                & a{
                    font-size: 16px;
                    color: $body-color;
                    @include transition(0.3s);
                    
                    @media #{$xs}{
                        font-size: 14px;
                    }
                    @media #{$sm}{
                        font-size: 15px;
                    }
                    
                    & i{
                        margin-right: 3px;
                    }
                    
                    &:hover{
                        color: $theme-color-2;
                    }
                }
            }
        }
        & .post-title{
            & a{
                font-size: 32px;
                font-weight: 700;
                color: $heading-color;
                @include transition(0.3s);
                margin-top: 15px;
                
                @media #{$xs}{
                    font-size: 20px;
                }
                @media #{$sm}{
                    font-size: 28px;
                }
                
                &:hover{
                    color: $theme-color-2;
                }
            }
        }
        & .author{
            margin-top: 10px;
            color: $theme-color-2;
            font-size: 16px;
            
            & a{
                color: $theme-color-2;
            }
        }
        & p{
            margin-top: 10px;
        }
        & .main-btn{
            margin-top: 30px;
            
            & i{
                margin-left: 5px;
            }
            
            &:hover{
                background-color: $theme-color;
                color: $white;
            }
        }
    }
    
    & .blog-audio-url{
        & iframe{
            padding: 0;
            border: 0;
            border-radius: 0;
        }
    }
    
    &.blog-quota{
        padding: 50px 70px;
        border: 5px solid $theme-color-2;
        position: relative;
        z-index: 5;
        
        @media #{$xs}{
            padding: 30px;
        }
        @media #{$sm}{
            padding: 40px;
        }
        
        &::before{
            position: absolute;
            content: '';
            width: 150px;
            height: 130px;
            background-color: $theme-color-2;
            top: 0;
            left: 0;
            z-index: -1;
            
            @media #{$xs}{
                width: 70px;
                height: 70px;
            }
            @media #{$sm}{
                width: 100px;
                height: 100px;
            }
        }
        
        & .blog-quota-content{   
            padding-bottom: 40px;
            
            @media #{$xs}{
                padding-bottom: 10px;
            }
            
            & .blog-quota-icon{
                & i{
                    font-size: 50px;
                    color: $white;
                    
                    @media #{$xs}{
                        font-size: 26px;
                    }
                    @media #{$sm}{
                        font-size: 40px;
                    }
                }
            }
            & .blog-quota-title{
                padding-left: 50px;
                
                @media #{$xs}{
                    padding-left: 30px;
                }
                @media #{$sm}{
                    padding-left: 40px;
                }
                
                & .title{
                    font-size: 18px;
                    font-weight: 700;
                    color: $heading-color;
                    
                    @media #{$xs}{
                        font-size: 16px;
                    }
                }
                & span{
                    & a{
                        color: $theme-color;
                        font-weight: 700;
                        color: $theme-color-2;
                        margin-top: 5px;
                        font-size: 16px;
                        
                        @media #{$xs}{
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }
    
    &.blog-video{
        & .blog-post-video{
            position: relative;
            
            & img{
                width: 100%;
            }
            & .play{
                width: 80px;
                height: 80px;
                background-color: $white;
                border-radius: 50%;
                line-height: 80px;
                text-align: center;
                font-size: 20px;
                color: $theme-color-2;
                position: absolute;
                top: 50%;
                left: 50%;
                @include transform(translate(-50%, -50%));

            }
        }
    }
}













