/* 모바일 가로, 테블릿 세로 (해상도 ~ 479px)*/
@media (min-width: 717px) and (max-width: 1024px) {
    /*
    div, p, h1, h2, h3, h4, h5 {
        box-shadow: 0 0 0 3px #f00 inset;
    }
    */

    .content_wrap .content {
        background-color: transparent;
    }

    .content_wrap .content .container .media {
        width: initial;
        height: initial;
        padding: 20px;
        box-shadow: 0 0 0 1px #838082 inset;
        margin: initial;
        overflow: hidden;
        margin-top: 20px;
        background-color: rgba(0,0,0, 0.7);
    }

    .content_wrap .content .container .media:hover {
        box-shadow: 0 0 0 2px #4bfff8 inset;
    }

    .content_wrap .content .container .media h5 {
        font-weight: var(--font-weight-bold);
        font-family: Nanum Gothic;
        font-size: 2rem;
        color: #ffffff;
    }

    .content_wrap .content .container .media .date {
        font-weight: var(--font-weight-regular);
        font-family: Nanum Gothic;
        font-size: 1rem;
        color: #c2c2c2;
        margin-top: 12px;
    }

    .content_wrap .content .container .media .description {
        font-weight: var(--font-weight-regular);
        font-family: Nanum Gothic;
        font-size: 1.2rem;
        color: #ffffff;
        margin-top: 2.6vh;
    }


    .top_sub .email_and_next {
        position: fixed;
        display: flex;
        height: 64px;
        flex-direction: column;
        right: 15px;
        bottom: 15px;
    }

    .top_sub .email_and_next .btn_email {
        width: 64px;
        height: 64px;
        background-image: url(../img/common/btn_contact_nor_2.png);
        background-size: 64px 64px;
        background-color: transparent;
        border: 0px;
        cursor: pointer;
    }

    .top_sub .email_and_next .btn_email:hover {
        background-image: url(../img/common/btn_contact_nor.png);
    }

    .top_sub .email_and_next .btn_next {
        display: none;
    }

}