/*
    ======================================
    + Article Style CSS
        - Create : 2023. 07. 20
    ======================================
*/

/* Import */
@font-face {
    font-family: 'CWDangamAsac-Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/CWDangamAsac-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/* // Import */

/* Header */
.header-button + label[for="header-button"] > span {
    background: #fdfdfd;
}
/* // Header */

/* 1024 ~ Resolution */ /* == Common *?
/* Container */
.container {
    background: #0d0e12;
}
/* // Container */

/* Contents Section */
.contents-section {
    display: table;
    width: 100%;
    height: 100vh;
}

/* If 1024 ~ Resolutionn, Adjust Conetents Section's Width */
@media (min-width: 1024px) {
    .contents-section {
        width: 90%;
        margin: 0 auto;
    }
}
/* // If 1024 ~ Resolutionn, Adjust Conetents Section's Width */

/* // Information */
.title-wrap {
    display: table;
    width: 90%;
    height: 10vh;
    margin: 6.5% auto;
}

.information {
    color: #c5c5c5;
    font-size: 1.15rem;
    font-family: 'Pretendard-Regular';
    margin-bottom: 2.5px;
}

.information > span {
    color: #c5c5c5;
    font-family: 'Pretendard-Regular';
    margin-left: 25px;
}

.title {    
    color: #fff;
    font-size: 4.5rem;
    font-family: 'CWDangamAsac-Bold';
}

.title-line {
    width: 120px;
    border: 1px solid #4fffbe;
    margin-top: 15px;
}
/* Information */

/* Contents */
.article-contents {
    display: table;
    width: 85%;
    height: 50vh;
    margin: -3.5% auto 0;
}

.article-contents-wrap p {
    color: #fff;
    font-family: 'Pretendard-Regular';
    font-size: 1.18rem;
}

.article-contents-wrap strong {
    color: #fff;
    font-size: 1.25rem;
}

.article-contents-wrap a {
    color: #4fffbe;
    font-family: 'Pretendard-Regular';
    font-size: 1.18rem;
}

.article-contents-wrap a:hover {
    color: #44dda5;
}

.article-contents-wrap p:not(:last-child) {
    margin-bottom: 21px;
}
/* // Contents */

/* Button */
.btn-wrap {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 10vh;
}

.list-btn {
    position: relative;
    width: 120px;
    height: 42px;
    background: #4263f7;
    border: none;
    border-radius: 5px 5px 0 5px;
    box-shadow: 5px 5px 0 #fff;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s;
    margin-right: 65px;
}

.btn-text {
    position: relative;
    color: #fff;
    font-size: 1.15rem;
}

.btn-gage {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 5px 5px 0 5px;
    background: linear-gradient(to left, #4263f7, #4f6fff);
    transition: all 0.5s;
}

.list-btn:hover {
    border-radius: 0 5px 5px 5px;
    box-shadow: -5px -5px 0 #fff;
}

.list-btn:hover > .btn-gage {
    width: 100%;
    border-radius: 0 5px 5px 5px;
    transition-delay: 0.4s;
}
/* // Button */
/* // Contents Section */
/* // 1024 ~ Resolution */

/* ~ 480 Mobile Resolution */
@media (min-width: 320px) and (max-width: 480px) {
    /* Contents Section */
    /* // Information */
    .title-wrap {
        margin: 25% auto 7.5%;
    }

    .information {
        display: flex;
        flex-direction: column;
        font-size: 1.08rem;
        margin-bottom: 10px;
    }

    .information > span {
        margin-top: 2.5px;
        margin-left: 0;
    }

    .title {
        font-size: 2rem;
    }

    .title-line {
        margin-top: 10px;
    }
    /* Information */

    /* Contents */
    .article-contents-wrap > p {
        font-size: 1.08rem;
    }
    /* // Contents */

    /* Button */
    .list-btn {
        width: 110px;
        height: 42px;
        margin-right: 35px;
    }

    .btn-text {
        line-height: 42px;
    }
    /* // Button */
    /* // Contents Section */
}

