/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/style.scss to edit this template
*/
/*
    Created on : Apr 8, 2023, 4:28:20 PM
    Author     : User
*/

@import 'config';
.content-sidebar{
    background: #fff;
    .sidebar{
        width: 435px;
        margin-right: 0px;
        float: right;  
        &.fixed{
            right: 0;
        }
        &.mobile{
            display: none;
        }
        .editor{
            .editor-inner{
                padding-top: 46px;
                padding-bottom: 46px;
                .image{
                    width: 190px;
                    height: 246px !important;
                    overflow: hidden;
                    margin-bottom: 19px;
                    img{
                        width: 100%;
                        min-height: 100%;
                    }
                }
                span {
                    display: block;
                    &.name {
                        font-weight: 700;
                        color: $clr_3;
                        font-size: 16px;
                        line-height: 16px;
                        margin-bottom:8px;
                    }
                    &.title {
                        line-height: 16px;
                        color: #4d4d4d;
                        font-size: 13px;
                        margin-bottom: 3px;
                    }
                }
            }
        }
        .magazine {
            margin-bottom: 0;
        }
    }
    .content{
        float: left;
        width: calc(100% - 435px);
        .inner{
            padding-right: 0;
            .editor{
                display: none;
                .image{
                    width: 190px;
                    height: 246px !important;
                    overflow: hidden;
                    margin-bottom: 19px;
                    img{ 
                        width: 100%; 
                        min-height: 100%;
                    }
                }
                span {
                    display: block;
                    &.name {
                        font-weight: 700;
                        color: $clr_3;
                        font-size: 16px; 
                        line-height: 16px;
                        margin-bottom: 8px;
                    }
                    &.title {
                        line-height: 16px;
                        color: #4d4d4d;
                        font-size: 13px; 
                        margin-bottom: 3px;
                    }
                }
            }
            .issue-no{
                float: right;
                color: #0c93ff; 
                text-decoration: underline;
            }
            .issue-date{
                float: left; 
            }

            h1{
                font-size: 26px;
                font-weight: bold; 
                text-transform: uppercase;
                color: #001c43;
                margin-top: 87px;
            }
            p{
                   font-weight: 300;
    line-height: 24px;
    font-size: 14px;
    margin: 21.5px 0;
            }
            .direction{
                margin-top: 69px;
                a{
                    display: inline-block;
                }
                .previous{
                    margin-top: 0;
                    float: right;
                    .readmore{
                        padding-right: 0;
                    }
                }
                .next{
                    float: left;
                    font-weight: 500;
                }
            }
        }

    }
}

@media screen and (max-width: 700px){
    .content-sidebar{
        .sidebar{
            &.pc{
                display: none;
            }
            &.mobile{
                display: block;
            }
        }
        .content .inner{
            padding-right: 20px;
            h3{
                margin-top: 40px;
            }
            .editor{
                display: block;
                margin-top: 40px;
            }
        }
    }
}