/* =========================================
   기본 설정
========================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #ffffff;

    color: #181818;

    font-family:
        "Times New Roman",
        "Noto Serif KR",
        serif;

    line-height: 1.8;
}


/* =========================================
   전체 페이지
========================================= */

.post-page {
    width: 100%;

    min-height: 100vh;

    padding:
        50px 30px
        100px;
}


/* =========================================
   미술관으로 돌아가기
========================================= */

.back-link {
    position: fixed;

    top: 30px;
    left: 35px;

    color: #222;

    font-size: 12px;

    letter-spacing: 1.5px;

    text-decoration: none;

    z-index: 100;
}

.back-link:hover {
    text-decoration: underline;
}


/* =========================================
   전시 영역
========================================= */

.exhibition {
    width: min(700px, 100%);

    margin: 0 auto;

    padding-top: 40px;

    text-align: center;
}


/* =========================================
   전시 번호
========================================= */

.exhibition-number {
    margin:
        0 0
        35px;

    font-size: 11px;

    letter-spacing: 4px;

    color: #777;
}


/* =========================================
   대표 작품
========================================= */

.main-artwork {
    width: 420px;

    max-width: 100%;

    margin:
        0 auto
        40px;

    padding: 14px;

    background: #111;

    box-shadow:
        0 10px 20px
        rgba(0, 0, 0, 0.18);
}

.main-artwork img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================
   제목 + 날짜
========================================= */

.post-header {
    margin-bottom: 35px;
}

.post-header h1 {
    margin:
        0 0
        8px;

    font-size: 24px;

    font-weight: normal;

    letter-spacing: 1px;
}

.post-header time {
    font-size: 12px;

    letter-spacing: 2px;

    color: #777;
}


/* =========================================
   구분선
========================================= */

.divider {
    width: 80px;
    height: 1px;

    margin:
        0 auto
        45px;

    background: #333;
}


/* =========================================
   게시글 본문
========================================= */

.post-content {
    width: min(620px, 100%);

    margin: 0 auto;

    text-align: left;

    font-size: 15px;
}

.post-content p {
    margin:
        0 0
        28px;
}


/* =========================================
   본문 사진
========================================= */

.post-image {
    display: block;

    max-width: 100%;

    height: auto;

    margin:
        45px auto;
}


/* =========================================
   게시글 끝
========================================= */

.post-footer {
    margin-top: 90px;

    padding-top: 25px;

    border-top: 1px solid #bbb;

    font-size: 10px;

    letter-spacing: 4px;

    color: #999;
}


/* =========================================
   모바일
========================================= */

@media (max-width: 600px) {

    .post-page {
        padding:
            80px 20px
            80px;
    }

    .back-link {
        position: absolute;

        top: 25px;
        left: 20px;
    }

    .main-artwork {
        width: 85%;
    }

    .post-header h1 {
        font-size: 20px;
    }

}