/*     1393845 : HTML 편집기      */
.talk {
    position: absolute;
    color: #00000052;
    font-size: clamp(1rem, 2vw, 3rem);
    top: 10%;
}

.sub_page {
    padding-bottom: var(--pdd-btt);
    position: relative;
}

.sub_page .inner:not(:last-child) {
    margin-bottom: clamp(4rem, 6vw, 8rem);
}

.sub_page ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


.sub_page ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub_page ul li:not(:last-child) {
    margin-bottom: clamp(2rem, 3vw, 4rem);
}

.sub_page ul li img {
    width: clamp(10rem, 15vw, 25rem);

    display: block;
    object-fit: cover;
    border: 1px solid #ddd;
}

.sub_page ul li .cap {
    width: 75%
}

.sub_page ul li .subj {
    font-size: clamp(1rem, 1.2vw, 2rem);
    font-weight: 700;
    margin-bottom: clamp(.3rem, 1vw, 3rem);
}

.sub_page ul li .cont {
    font-size: clamp(.85rem, .85vw, 2rem);
}

.sub_page ul li .exp {
    background: linear-gradient(0deg, #b92c2c0a 50%, transparent 50%);
    border: 1px solid #b92c2c4f;
    color: var(--prm-clr);
    font-weight: 700;
    padding: clamp(.1rem, .5vw, 1rem);
    width: fit-content;
    margin-top: clamp(1rem, 1vw, 2rem);
    border-radius: 10px;
}

.sub_page .detail .conts_area ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sub_page .detail .conts_area li {
    width: 48%;
}

.sub_page .detail .conts_area li .cap {
    width: 50%;
}

@media (max-width:1023px) {
    .sub_page ul li {
        flex-wrap: wrap;
    }

    .sub_page ul li>* {
        width: 100%;
    }

    .sub_page ul li img {
        width: 100%;
        margin-bottom: clamp(1rem, 1vw, 2rem);
    }

    .sub_page ul li .cap {
        width: 100%;
    }

    .sub_page .detail .conts_area li {

    	align-items: start;
    }

    .sub_page .detail .conts_area li .cap {
        width: 100%;
        height: clamp(8.9rem, 12vw, 15rem);
    }

}

