.position_box {
    width: 100%;
    height: calc(20px + 5rem);
    background: url(../images/news_banner.jpg) no-repeat;
    background-size: cover;

    .position_main {
        max-width: 1500px;
        width: 85%;
        margin: auto;
        height: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: calc(1px + 0.2rem);

        p {
            font-family: Archivo, Archivo;
            font-weight: 400;
            font-size: calc(10px + 0.5rem);
            color: #FFFFFF;
            line-height: calc(10px + 1rem);
            letter-spacing: 1px;

        }
    }
}

.news_read_box {
    width: 100%;
    padding-top: calc(6px + 4rem);
    padding-bottom: calc(19px + 2rem);

    .news_read {
        max-width: 1500px;
        width: 85%;
        margin: auto;

        .news_read_title {
            font-family: Inter_Semi_Bold;
            font-weight: normal;
            font-size: calc(4px + 1rem);
            color: #333333;
            line-height: calc(10px + 2rem);
            letter-spacing: 1px;

        }

        .news_read_time {
            margin-top: calc(1px + 1rem);
            font-family: Inter_Medium;
            font-weight: 500;
            font-size: calc(6px + 0.5rem);
            color: #00A1E5;
            line-height: calc(10px + 0.5rem);
            letter-spacing: 2px;
        }

        .news_read_con {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: calc(5px + 1rem);
            margin-top: calc(10px + 0.5rem);

            p {
                font-family: Inter_Regular;
                font-weight: 400;
                font-size: calc(6px + 0.5rem);
                color: #666666;
                line-height: calc(8px + 1rem);

                img {
                    width: 47.4667%;
                    height: calc(84px + 15rem);
                    margin: calc(10px + 1.5rem) calc(6px + 0.5rem);
                }
            }

        }

        .news_prev_next {
            width: 100%;
            display: flex;
            justify-content: space-between;
            margin-top: calc(5px + 3rem);

            .news_prev {
                width: 48.8667%;
                height: calc(5px + 1.5rem);
                background: #FFFFFF;
                border-radius: 0px 0px 0px 0px;
                border: 1px solid #D9D9D9;
                display: flex;
                justify-content: flex-start;
                transition: .5s;

                p:nth-of-type(1) {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: calc(40px + 4rem);
                    height: 100%;
                    font-family: Inter_Regular;
                    font-weight: 400;
                    font-size: calc(4px + 0.5rem);
                    color: #666666;

                    padding: 0 calc(4px + 0.5rem);
                    border-right: 1px #D9D9D9 solid;
                }

                p:nth-of-type(2) {
                    font-family: Inter_Regular;
                    font-weight: 400;
                    font-size: calc(4px + 0.5rem);
                    color: #666666;
                    padding: 0 calc(4px + 0.5rem);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }
            }

            .news_prev:hover {
                border: 1px #104D8C solid;

                p {
                    color: #104D8C;
                }
            }


            .news_next {
                width: 48.8667%;
                height: calc(5px + 1.5rem);
                background: #FFFFFF;
                border-radius: 0px 0px 0px 0px;
                border: 1px solid #D9D9D9;
                display: flex;
                justify-content: space-between;
                transition: .5s;

                p:nth-of-type(2) {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: calc(20px + 4rem);
                    height: 100%;
                    font-family: Inter_Regular;
                    font-weight: 400;
                    font-size: calc(4px + 0.5rem);
                    color: #666666;
                    padding: 0 calc(4px + 0.5rem);
                    border-left: 1px #104D8C solid;
                }

                p:nth-of-type(1) {
                    font-family: Inter_Regular;
                    font-weight: 400;
                    font-size: calc(4px + 0.5rem);
                    color: #666666;
                    padding: 0 calc(4px + 0.5rem);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }
            }

            .news_next:hover {
                border: 1px #104D8C solid;

                p {
                    color: #104D8C;
                }
            }

        }
    }
}

@media (max-width: 800px){
    .news_read_box {
         .news_read {
            .news_read_title {
               font-size: calc(12px + 1rem);
               line-height: 1.5;
            }
            .news_read_time{
                font-size: calc(10px + 1rem);
            }
            .news_read_con {
                p {
                    font-size: calc(10px + 1rem);
                    line-height: 1.5;
                    img{
                        width: 100%;
                        height: calc(84px + 25rem);
                    }
                }
            }
            .news_prev_next{
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                gap: calc(10px + 1rem);
                .news_prev{
                    width: 100%;
                    height: calc(26px + 1.5rem);
                    p:nth-of-type(1){
                        width: calc(85px + 4rem);

                        font-size: calc(9px + 1rem);
                    }
                    p:nth-of-type(2){
                        font-size: calc(9px + 1rem);
                    }
                }
                .news_next{
                    width: 100%;
                    height: calc(26px + 1.5rem);
                    p:nth-of-type(1){
                      

                        font-size: calc(9px + 1rem);
                    }
                    p:nth-of-type(2){
                        width: calc(20px + 32rem);
                        font-size: calc(9px + 1rem);
                    }
                }
            }
        }
    }
}