:root {
    /* Primary Color - Primary color는 버튼, 활성 상태와 같은 UI 전체의 주요 구성 요소에 사용된다. */
    --Privary-5: #eff5ff;
    --Primary-50: #246beb;
    --Primary-60: #1d56bc;
    --Primary-70: #16408d;

    /* Secondary Color - • Secondary color는 필터, 칩과 같이 UI에서 보조적인 역할을 하는 구성 요소 전반에 사용된다 */
    --Secondary-5: #edf1f5;
    --Secondary-50: #003675;
    --Secondary-60: #002b5e;
    --Secondary-70: #002046;

    /* Grayscale - • Grayscale은 정보전달과 위계를 나타내는 중요한 역할을 한다. 주로 BG, Text, Line에 사용되며 특히 텍스트는 가독성을 고려해야 하므로 배경과의 명암비를 고려해야 한다. */
    --Gray-0: #ffffff; /* Background */
    --Gray-5: #f8f8f8; /* Background layer */
    --Gray-20: #e4e4e4; /* Disabled */
    --Gray-40: #c6c6c6; /* Border */
    --Gray-50: #8e8e8e; /* Text-disabled */
    --Gray-60: #717171; /* Text-detail */
    --Gray-70: #555555; /* Text-body */
    --Gray-90: #1d1d1d; /* Text-title */

    /* Point Color - Point color는 Primary와 Secondary의 균형을 맞추거나 요소에 대한 집중도 높이는 데 사용된다. */
    --Point-50: #e71825;
    --Point-60: #b9131e;
    --Point-70: #8b0e16;

    /* States */
    --states-normal: var(--Primary-50);
    --states-hover: var(--Primary-60);
    --states-ressed: var(--Primary-70);
    --states-disabled: var(--Gray-20);

    /* Background */
    --background-base: var(--Gray-0);
    --background-layer-1: var(--Gray-5);
    --background-layer-2: var(--Secondary-5);

    /* border */
    --border-contents: var(--Gray-40);
    --border-default: var(--Gray-60);
    --border-active: var(--Primary-50);

    /* Text */
    --text-logo: var(--Gray-70);
    --text-menu: var(--Gray-90);
    --text-title: var(--Gray-90);
    --text-body: var(--Gray-70);
    --text-detail: var(--Gray-60);

    /* ////////////////////////////////////////////////////////////////////////////////////////////////////
    System colors - Role color는 사용자에게 직관적으로 시스템 상태를 보여주는 색상으로, 텍스트와 모양(아이콘)을 함께 사용하는 것을 권장한다.
    //////////////////////////////////////////////////////////////////////////////////////////////////// */

    /* System Color - Danger: 오류, 금지, 위험, 삭제, 불가 등을 표시할 때 사용한다. */
    --Danger-5: #feecf0;
    --Danger-10: #fcd4de;
    --Danger-50: #eb003b;
    --Danger-60: #d50136;

    --danger-surface: var(--Danger-5);
    --danger-border: var(--Danger-10);
    --danger-base: var(--Danger-50);
    --danger-text: var(--Danger-60);

    /* System Color - Warning: 실수나 오류가 발생하지 않도록 주의 사항을 전달할 때 사용한다. */
    --Warning-5: #fff8e9;
    --Warning-10: #ffeac1;
    --Warning-50: #ffb724;
    --Warning-60: #98690a;

    --warning-surface: var(--Warning-5);
    --warning-border: var(--Warning-10);
    --warning-base: var(--Warning-50);
    --warning-text: var(--Warning-60);

    /* System Color - Success: 성공, 완료, 진행 등의 결과를 전달할 때 사용한다. */
    --Success-5: #eef7f0;
    --Success-10: #cee9d4;
    --Success-50: #008a1e;
    --Success-60: #006e18;

    --success-surface: var(--Success-5);
    --success-border: var(--Success-10);
    --success-base: var(--Success-50);
    --success-text: var(--Success-60);

    /* System Color - Information: 정보를 제공하거나 특별히 강조가 필요할 때 사용한다. */
    --Imformation-5: #e9f0ff;
    --Imformation-10: #d4e1ff;
    --Imformation-50: #2768ff;
    --Imformation-60: #1f53cc;

    --imformation-surface: var(--Imformation-5);
    --imformation-border: var(--Imformation-10);
    --imformation-base: var(--Imformation-50);
    --imformation-text: var(--Imformation-60);
}

/* 19 */
body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
        Arial, 'Noto Sans', sans-serif; */
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Apple SD Gothic Neo', Arial,
        sans-serif;
}

code,
pre {
    font-family: Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
}

/* 21 */
.wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.no-scroll {
    overflow: hidden;
}

#tt-body-page blockquote[data-ke-style='style1'] {
    font-size: 18px;
}

#tt-body-page blockquote[data-ke-style='style2'] {
    border-color: #d0d0d0;
    border-width: 0 0 0 4px;
    border-style: solid;
    padding: 1px 0 0 12px;
    color: #666;
    line-height: 1.75;
    font-size: 1em;
    text-align: left;
}

/* /////////////////////////////////// /////////////////////////////////////////////////////////////////
    01. Body
//////////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    02. Wrap
//////////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    03. Header
//////////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    04. Container
//////////////////////////////////////////////////////////////////////////////////////////////////// */

#container {
    display: flex;
    width: 100%;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    04-01. Container > main
//////////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    04-01-01. Container > main > amin_area
//////////////////////////////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    05. 사이드바 / aside
//////////////////////////////////////////////////////////////////////////////////////////////////// */

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: calc(100% - 104px);
    max-width: 380px;
    height: 100%;
    padding: 20px 24px 40px;
    border-left: 1px solid var(--border-contents);
    background: var(--background-base);
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 50;
    transition: 0.2s ease-out;
}

.sidebar-on {
    right: 0;
    /* transition: 0.2s ease-out; */
}

@media (min-width: 1024px) {
    .sidebar {
        position: initial;
        z-index: 25;
    }

    .sidebar-none .sidebar {
        display: none;
    }

    .sidebar-left .sidebar {
        width: 320px;
        /* border-right: 1px solid var(--border-contents); */
        /* margin-right: 2rem; */
    }

    .sidebar-right .sidebar {
        width: 320px;
        /* border-left: 1px solid var(--border-contents); */
        /* margin-left: 2rem; */
        order: 2;
    }
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    transition: opacity 0.2s ease-out;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
}

.sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* 사이드바 - 공통 */
.sidebar .sidebar-widget-title {
    display: block;
    margin: 0 0 7px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    color: var(--blackFont);
}

.sidebar > div {
    margin-bottom: 40px;
}

/* 사이드바 - 프로필 */
.sidebar .sidebar-profile {
    border-left: none;
    border-right: none;
    margin-bottom: 40px;
}

.sidebar-profile__inner-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid var(--border-default);
}

.sidebar-profile-image {
    aspect-ratio: 1 / 1;
    margin: 3rem 0 1rem;
    border-radius: 0.5rem;
}

.sidebar-profile-image.profile-image-none {
    width: 0px;
    visibility: hidden;
}

.sidebar-profile-image.profile-image-xs {
    width: 40px;
}

.sidebar-profile-image.profile-image-sm {
    width: 80px;
}

.sidebar-profile-image.profile-image-md {
    width: 120px;
}

.sidebar-profile-image.profile-image-lg {
    width: 160px;
}

.sidebar-profile-image.profile-image-xl {
    width: 200px;
}

.sidebar-profile-info {
    padding-bottom: 40px;
}

.sidebar-profile-blogger {
    font-weight: bold;
    text-align: center;
}

.sidebar-profile-description {
    font-size: 0.75rem;
    padding-top: 0.75rem;
    color: var(--text-detail);
    text-align: center;
}

/* 사이드바 - 카테고리 */
.sidebar .sidebar-category {
    margin-bottom: 40px;
    padding-bottom: 33px;
    border-bottom: 1px solid #e8e8e8;
}

.sidebar .sidebar-category .tt_category a {
    display: block;
    text-decoration: none;
}

.sidebar .sidebar-category .tt_category .c_cnt {
    display: inline-block;
    font-size: 0.875rem;
    vertical-align: 1px;
}

.sidebar .sidebar-category .tt_category .link_tit,
.sidebar .sidebar-category .tt_category .category_list .link_item {
    margin-bottom: 11px;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.64;
    color: #777;
}

.sidebar .sidebar-category .tt_category .link_tit:hover,
.sidebar .sidebar-category .tt_category .category_list .link_item:hover {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333 !important;
    text-decoration: underline;
}

.sidebar .sidebar-category .tt_category .category_list .link_sub_item.selected,
.sidebar .sidebar-category .tt_category .category_list .link_item.selected {
    font-weight: 500;
    color: #333;
}

.sidebar .sidebar-category .tt_category .category_list .link_sub_item {
    position: relative;
    display: none;
    margin-bottom: 5px;
    margin-left: 22px;
    font-size: 0.75rem;
    line-height: normal;
    color: #999;
}

.sidebar .sidebar-category .tt_category .category_list .link_sub_item:before {
    content: '';
    position: absolute;
    top: 10px;
    left: -13px;
    width: 7px;
    height: 1px;
    background: #999;
}

.sidebar .sidebar-category .tt_category .category_list .link_sub_item:hover {
    font-weight: 600;
    color: #333;
}

.sidebar .sidebar-category .tt_category .category_list .sub_category_list li:last-child a {
    margin-bottom: 10px;
}

.sidebar .sidebar-category-2depth .tt_category .category_list .link_sub_item {
    display: block;
}

/* 사이드바 - 태그 */

.sidebar .sidebar-tag a {
    position: relative;
    display: inline-block;
    max-width: 300px;
    margin-right: 4px;
    margin-bottom: 4px;
    font-size: 0.75rem;
    line-height: 1.69;
    text-decoration: none;
    text-overflow: ellipsis;
    color: #777;
    white-space: nowrap;
    overflow: hidden;
}

.sidebar .sidebar-tag a:last-child:after {
    content: '';
    position: absolute;
    top: 14px;
    right: -2px;
    width: 5px;
    height: 5px;
    background: #fff;
}

/* 사이드바 - 최근글과 인기글 */

.sidebar .sidebar-trending .tab-recent {
    display: flex;
    margin-bottom: 13px;
}

.sidebar .sidebar-trending .tab-recent li {
    position: relative;
    margin-right: 20px;
}

.sidebar .sidebar-trending .tab-recent li span {
    display: block;
}

.sidebar .sidebar-trending .tab-recent li:last-child {
    margin-right: 0;
}

.sidebar .sidebar-trending .tab-recent li:last-child:before {
    content: '';
    position: absolute;
    top: 9px;
    left: -10px;
    width: 2px;
    height: 10px;
    background: url(./images/bullet-tab.svg) no-repeat;
}

.sidebar .sidebar-trending .tab-recent li.on a {
    color: #333;
    font-weight: 500;
}

.sidebar .sidebar-trending .tab-recent li a {
    display: block;
    font-size: 14px;
    line-height: 1.64;
    color: #999;
    text-decoration: none;
}

.sidebar .sidebar-trending .list-recent li {
    margin-bottom: 20px;
}

.sidebar .sidebar-trending .list-recent li:last-child {
    margin-bottom: 0;
}

.sidebar .sidebar-trending .list-recent .link-recent {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    text-decoration: none;
}

.sidebar .sidebar-trending .list-recent .thumbnail {
    width: 64px;
    height: 64px;
    margin: 0 12px 0 0;
    background-size: cover;
    background-position: 50% 50%;
}

.sidebar .sidebar-trending .list-recent .thumbnail + .sidebar-trending {
    width: 70%;
}

.sidebar .sidebar-trending .list-recent .sidebar-trending {
    width: 100%;
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.54;
    color: #333;
}

.sidebar .sidebar-trending .list-recent .sidebar-trending strong {
    display: block;
    margin-bottom: 2px;
    font-weight: 400;
}

.sidebar .sidebar-trending .list-recent .sidebar-trending span {
    color: #999;
}

/** -- media query mobile -- **/
@media screen and (max-width: 1061px) {
    .sidebar .sidebar-trending .list-recent .sidebar-trending strong {
        display: -webkit-box;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        word-break: break-all;
        overflow: hidden;
    }

    .box-notice .sidebar-widget-link a,
    .sidebar-reply .sidebar-widget-link strong {
        display: -webkit-box;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        word-break: break-all;
        overflow: hidden;
    }
}

/* 사이드바 - 최근 댓글 */
.sidebar-reply .sidebar-widget-list li {
    margin-bottom: 8px;
    color: var(--text-detail);
}
.sidebar-reply .sidebar-widget-list li:hover {
    color: var(--text-title);
}
.sidebar-reply .sidebar-widget-link strong {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.54;
}

.sidebar-reply .sidebar-widget-list p {
    margin: 0;
    font-size: 0.75rem;
    color: #999;
}

/* 사이드바 - 아카이브 */
.sidebar .sidebar-archive .sidebar-widget-list {
    display: block;
    font-size: 0.75rem;
    line-height: 1.69;
    color: var(--text-detail);
    text-decoration: none;
    letter-spacing: 2px;
}

/* 사이드바 - 달력 */
.sidebar .sidebar-calendar .inner-calendar {
    padding: 23px 28px 24px 28px;
    border: 1px solid #e8e8e8;
    font-size: 13px;
}

.sidebar .sidebar-calendar .inner-calendar table caption a {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.57;
    color: #333;
    text-decoration: none;
}

.sidebar .sidebar-calendar .inner-calendar table th,
.sidebar .sidebar-calendar .inner-calendar table td {
    font-weight: 400;
    line-height: 1.81;
    color: #999;
    text-align: center;
}

.sidebar .sidebar-calendar .inner-calendar table th {
    margin-bottom: 10px;
}

.sidebar .sidebar-calendar .inner-calendar .cal_month a:nth-child(1),
.sidebar .sidebar-calendar .inner-calendar .cal_month a:nth-child(3) {
    display: none;
}

/* 사이드바 - 방문자수 */

.sidebar .sidebar-visitor .text-total {
    margin: -10px 0 3px 0;
    line-height: 1.64;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.sidebar .sidebar-visitor .item-visit {
    font-size: 13px;
    line-height: 1.71;
    color: #999;
}

/* 사이드바 - 검색 */
.sidebar-search {
    display: block;
}

.sidebar-search-input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border-contents);
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
}

.sidebar-search-input::placeholder {
    color: var(--text-detail);
}

/* 사이드바 - 링크 */
.sidebar-link a {
    margin-bottom: 11px;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.64;
    color: #777;
}

/* 사이드바 메뉴 */
.sidebar-menu li {
    margin-bottom: 11px;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.64;
    color: #777;
}

/* 사이드바 - 공지사항 */
.box-notice .sidebar-widget-link {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.54;
    color: var(--text-detail);
}

.box-notice .sidebar-widget-link:hover {
    color: var(--text-title);
}

/* 게시물 본문 마지막 구독하기 버튼 */
.container_postbtn .btn_menu_toolbar {
    display: none;
    /* display: flex; */
    /* justify-content: center; */
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    06. footer
//////////////////////////////////////////////////////////////////////////////////////////////////// */

.post-view__footer.old_first .tt-list-reply {
    display: flex;
    flex-direction: column;
}

.post-view__footer.new_first .tt-list-reply {
    display: flex;
    flex-direction: column-reverse;
}

/* 게시물 푸터 네임카드 */
.post-view__footer .tt_box_namecard {
    flex-direction: column-reverse;
    border-radius: 1rem;
}

.post-view__footer .tt_box_namecard .tt_wrap_thumb {
    margin: 2rem 2rem 0;
}
.post-view__footer .tt_box_namecard .tt_cont {
    padding: 1rem 2rem 2rem;
}

.post-view__footer .tt_box_namecard .tt_cont .tt_tit_cont {
    font-weight: 700;
}

@media (min-width: 1024px) {
    .post-view__footer .tt_box_namecard {
        flex-direction: row;
    }
    .post-view__footer .tt_box_namecard .tt_desc {
        padding-top: 12px;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    01. Header
//////////////////////////////////////////////////////////////////////////////////////////////////// */

/* 22 */
.header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 30;
    border-bottom: 1px solid var(--border-default);
    background-color: var(--background-base);
}

/* 23 */
.header .header__inner {
    width: 100%;
    max-width: 80rem;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .area-size-full .header .header__inner,
    .sidebar-left .header .header__inner,
    .sidebar-right .header .header__inner {
        max-width: 100%;
        padding: 0 2rem;
    }
}

/* 25 */
.logo-box__title {
    font-size: 1.25rem;
    color: var(--text-logo);
}

.title__logo-img {
    height: 3rem;
    object-fit: cover;
}

/* 53 */
.header__nav {
    font-size: 1.25rem;
    display: none;
}

@media (min-width: 1024px) {
    /* 53 */
    .header__nav {
        display: block;
    }
}

/* 54 - [##_blog_menu_##] */
.header__nav ul {
    display: flex;
}
.header__nav ul li {
    padding: 0 8px;
}

.header__nav ul li a {
    padding: 16px 12px;
    font-size: 19px;
    color: var(--text-menu);
    line-height: 1;
}
/* // 54 - [##_blog_menu_##] */

/* 56 */
.mobile-menu-buttonn {
    display: block;
    padding: 1rem;
    cursor: pointer;
}

/* 85 */
.common-area__util-search {
    display: none;
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .common-area__util-search {
        display: block;
    }
}

/* 86 */
.util-search__title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 24px;
}

/* 89 */
.util-search__search-input {
    position: relative;
    width: 100%;
    height: 56px;
    border: 1px solid var(--border-default);
    padding: 0 48px 0 16px;
    border-radius: 8px;
    font-size: 20px;
    color: var(--text-menu);
    transition: 0.3s ease-in-out;
}

/* 89 */
.util-search__search-input:focus {
    border: 1px solid var(--border-active);
}

@media (min-width: 768px) {
    /* 89 */
    .util-search__search-input {
        width: 70%;
    }
}

@media (min-width: 1024px) {
    /* 89 */
    .util-search__search-input {
        max-width: 680px;
    }
    .mobile-menu-buttonn {
        display: none;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    02. container > main > main__area > area-common - 기본 게시물 리스트
//////////////////////////////////////////////////////////////////////////////////////////////////// */

/* 77 */
.main {
    width: 100%;
    /* display: flex; */
    justify-content: center;
    padding: 2rem 0 4rem;
}

@media (min-width: 1024px) {
    .sidebar-left .main {
        border-left: 1px solid var(--border-contents);
        width: calc(100% - 320px);
    }
    .sidebar-right .main {
        width: calc(100% - 320px);
        border-right: 1px solid var(--border-contents);
    }
}

/* 79 */
.area-size-full .main__area {
    max-width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    /* 106 */
    .area-size-full .main__area {
        padding: 0 5rem;
    }
}

.area-size-lg .main__area {
    max-width: 1280px;
    padding: 0 1rem;
    margin: 0 auto;
}

.area-size-md .main__area {
    max-width: 880px;
    padding: 0 1rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .main__area {
        padding: 0 2rem;
    }
}

.post-list__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.75rem;
}

.list-style-selector {
    display: flex;
    gap: 0.5rem;
}

.list-style-selector button {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid var(--border-contents);
    border-radius: 0.25rem;
}

.list-style-selector button:hover {
    border: 1px solid var(--border-default);
}

.list-style-selector button svg {
    stroke: var(--border-contents);
}

.list-style-selector button:hover svg {
    stroke: var(--border-default);
}

.list-style-selector button.current svg {
    stroke: var(--text-title);
}

/* article-liststyle-card */
.article-liststyle-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
    width: 100%;
}

.article-liststyle-card .article-type-common {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-contents);
    box-shadow: 0px 9px 10px -2px rgb(0 0 0 / 10%);
    transition: 0.3s;
}

.article-liststyle-card .article-type-common:hover {
    transform: translateY(-4px);
    border: 1px solid var(--border-default);
}

/* 115 */
.article-liststyle-card .post-list__thumbnail {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* 119 */
.article-liststyle-card .post-list__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    padding: 24px;
}

/* 123 */
.article-liststyle-card .post-list__category-link {
    height: 24px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--Primary-60);
    border-radius: 4px;
    background-color: var(--Privary-5);
}

/* 134 */
.article-liststyle-card .post-list__title {
    margin-bottom: 12px;
    font-weight: 700;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.article-liststyle-card .post-list__content .summary {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    word-break: break-word;
}

@media (min-width: 768px) {
    /* 106 */
    .article-liststyle-card {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    /* 106 */
    .article-liststyle-card {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1280px) {
    /* 106 */
    .article-liststyle-card {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 1920px) {
    .area-size-full .article-liststyle-card {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

/* article-liststyle-simple */
.article-liststyle-simple {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
    width: 100%;
}

.article-liststyle-simple .article-type-common {
    display: flex;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-contents);
    box-shadow: 0px 9px 10px -2px rgb(0 0 0 / 10%);
    transition: 0.3s;
    max-height: 120px;
}

.article-liststyle-simple .article-type-common:hover {
    transform: translateY(-4px);
    border: 1px solid var(--border-default);
}

.article-liststyle-simple .article-type-common .link-article:first-child {
    flex: 0 0 30%;
    max-width: 30%;
}

/* 115 */
.article-liststyle-simple .post-list__thumbnail {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* 119 */
.article-liststyle-simple .post-list__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    padding: 1rem;
}

/* 123 */
.article-liststyle-simple .post-list__category-link {
    font-size: 0.75rem;
    color: var(--Primary-60);
}

/* 134 */
.article-liststyle-simple .post-list__title {
    margin-bottom: 12px;
    font-weight: 700;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.article-liststyle-simple .post-list__content .summary {
    /* display: -webkit-box; */
    display: none;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    word-break: break-word;
}

@media (min-width: 768px) {
    /* 106 */
    .article-liststyle-simple {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    /* 106 */
    .article-liststyle-simple {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1280px) {
    /* 106 */
    .article-liststyle-simple {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1920px) {
    .area-size-full .article-liststyle-simple {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    03. container > main > main__area > main__post-view - 게시물 본문
//////////////////////////////////////////////////////////////////////////////////////////////////// */

.main__post-view {
    max-width: 860px;
    margin: 0 auto;
}

.post-view__inner-header {
    width: 100%;
    margin: 0 auto 40px;
    padding-bottom: 20px;
    /* border-bottom: 2px solid var(--border-default); */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.post-view__inner-header .my_edit {
    display: none;
}

/* 199 */
.post-view__category {
    font-size: 0.75rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.post-view__title {
    color: #202020;
    padding-right: 30px;
    font-size: 1.75rem;
    width: 100%;
    max-width: 760px;
    margin: 0 0 8px 0;
    font-weight: 400;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    word-break: keep-all;
}

.post-view__notice-summary {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: 1rem;
}

.notice-list-article__inner-wrap {
    display: flex;
    gap: 2rem;
}

.notice-thumbnail {
    flex: 0 0 30%;
    max-width: 30%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.post-view__box-info {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
}

@media (min-width: 1024px) {
    /* 199 */
    .post-view__category {
        font-size: 14px;
        font-weight: 600;
    }
}

.post-view__tag {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.25rem;
    border-bottom: 2px solid var(--border-default);
    border-color: var(--border-contents);
}

.post-view__footer-title {
    font-size: 0.875rem;
    font-weight: 500;
}

.post-view__tag-box {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    max-width: 100%;

    /* margin-bottom: 5px;
    padding: 5px 12px;
    border: 1px solid var(--border-contents);
    border-radius: 50px;
    font-size: 0.75rem;
    line-height: 1.75;
    color: #777;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; */
}

.post-view__tag-box a {
    position: relative;
    display: inline-block;
    max-width: 100%;
    /* margin-right: 10px; */
    margin-bottom: 5px;
    padding: 5px 12px;
    border: 1px solid var(--border-contents);
    border-radius: 50px;
    font-size: 13px;
    line-height: 1.69;
    color: #777;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* 치환자 내부 클래스 */
.container_postbtn {
    margin-top: 1rem;
}

.post-view__page {
    margin-bottom: 2.75rem;
    border-bottom: 1px solid var(--border-contents);
}

.post-view__footer-title {
    margin-bottom: 0.75rem;
}

.post-view__page ul {
    margin-bottom: 2.5rem;
}

.post-view__page ul li {
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.69;
    color: var(--Gray-60);
}

.post-view__page ul li:nth-child(2) {
    color: var(--Gray-90);
}

.post-view__page ul li span {
    margin-right: 1.5rem;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    footer
//////////////////////////////////////////////////////////////////////////////////////////////////// */

/* 227 */
.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border-default);
    background-color: var(--background-layer-1);
}

/* 228 */
.footer__inner {
    width: 100%;
    max-width: 80rem;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-left .footer__inner,
.sidebar-right .footer__inner,
.area-size-full .footer__inner {
    max-width: 100%;
}

.footer__content {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__title {
    color: var(--text-logo);
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-default);
    margin-bottom: 2rem;
}

.footer-contents {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .footer-contents {
        align-items: flex-end;
    }
}

.footer-contents .contents-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-content-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
}

.footer-line-title {
    margin-bottom: 4px;
    font-weight: 700;
}

.copyright {
    font-size: 0.75rem;
    margin-top: 12px;
}
.copyright a {
    font-weight: 700;
    color: var(--Point-50);
}

@media (min-width: 1024px) {
    .footer-contents {
        flex-direction: row;
    }
    .copyright {
        font-size: initial;
        margin-top: initial;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    spinner
//////////////////////////////////////////////////////////////////////////////////////////////////// */

.area-paging-more {
    position: relative;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.paging-more-loading {
    color: #fff;
    pointer-events: none;
}

.paging-more-loading:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -15px;
    border-radius: 50%;
    border: 1px solid #ccc;
    border-top-color: #07d;
    animation: spinner 0.6s linear infinite;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    paging
//////////////////////////////////////////////////////////////////////////////////////////////////// */

.paging-more {
    display: block;
    width: 100%;
    height: 42px;
    border: 1px solid #e8e8e8;
    font-size: 13px;
    line-height: 42px;
    margin-top: 2rem;
    color: #777;
    text-align: center;
    text-decoration: none;
}

.paging__navigation {
    display: none;
    text-align: center;
    margin-top: 3rem;
}

.paging__navigation a {
    text-decoration: none;
}

.paging__navigation .link_page {
    display: inline-block;
    font-size: 24px;
    color: #000;
}

.paging__navigation .link_page:hover {
    color: #ef402f;
}

.paging__navigation .paging_num {
    display: inline-block;
    vertical-align: top;
}

.paging__navigation .paging__number span {
    display: inline-block;
    min-width: 26px;
    height: 26px;
    margin: 0 2px;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 400;
    font-family: Arial;
    line-height: 26px;
    text-align: center;
    letter-spacing: -0.3px;
    color: #333;
}

.paging__navigation .paging__number:hover span {
    border-radius: 999em;
    background: #ddd;
    color: #333;
}

.paging__navigation .selected {
    display: block;
    border-radius: 999em;
    background: #000;
    color: #fff !important;
    font-size: 13px;
    line-height: 32px;
}

.paging__navigation .paging__number:hover .selected {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.paging__navigation .paging_slash {
    display: none;
}

.paging__navigation .link_page.no-more-prev,
.paging__navigation .link_page.no-more-next {
    display: none;
}

@media screen and (min-width: 1024px) {
    .paging-more {
        display: none;
    }
    .paging__navigation {
        display: block;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    Post Style
//////////////////////////////////////////////////////////////////////////////////////////////////// */

/* 제목 태그 */
.post-view__content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.post-view__content h2 {
    font-size: 1.625rem;
    font-weight: normal;
    letter-spacing: -1px;
    line-height: 1.46;
    margin: 1.625rem 0 1.25rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.post-view__content h3 {
    font-size: 1.5rem;
    font-weight: normal;
    letter-spacing: -1px;
    line-height: 1.48;
    margin: 1.5rem 0 1.25rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.post-view__content h4 {
    font-size: 1.25rem;
    font-weight: normal;
    letter-spacing: -1px;
    line-height: 1.55;
    margin: 1.125rem 0 1.25rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.post-view__content h5 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.post-view__content h6 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.post-view__content h2 + h3,
.post-view__content h2 + h4,
.post-view__content h3 + h4 {
    margin-top: 10px;
}

/* 본문 텍스트 */
.post-view__content p {
    font-size: 1rem;
    line-height: 1.75;
    color: #333;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0;
}

.post-view__content p + p {
    margin: 1px auto 0;
}

/* 굵은 텍스트 */
.post-view__content b {
    font-weight: 900;
}

/* 이탤릭 텍스트 */
.post-view__content i {
    font-style: italic;
}

/* 밑줄 텍스트 */
.post-view__content u {
    text-decoration: underline;
}

/* 취소선 텍스트 */
.post-view__content s {
    text-decoration: line-through;
}

/* 링크 */
.post-view__content a {
    color: #007bff; /* 링크 색상은 블루 */
    text-decoration: none;
}

.post-view__content a:hover {
    color: #0056b3; /* 호버시 더 진한 블루 */
}

/* 리스트 */
.post-view__content ul,
.post-view__content ol {
    margin-bottom: 1rem;
}

.post-view__content li {
    margin-bottom: 0.5rem;
}

/* 태그 페이지 */

.main__tag-page .post-view__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e9e9e9;
}

.main__tag-page .tag-page__tag-box {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.main__tag-page .tag-page__tag-box a {
    padding: 8px 16px;
    border: 1px solid var(--border-contents);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-detail);
    text-align: center;
}

.main__tag-page .tag-page__tag-box a:hover {
    color: var(--text-title);
    border: 1px solid var(--border-default);
}

/* 방명록 */
.guestbook .tt-list-reply {
    display: flex;
    flex-direction: column-reverse;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    게시물 하단 - 관련글 위젯
//////////////////////////////////////////////////////////////////////////////////////////////////// */

.page-view__related-post {
    margin-bottom: 42px;
}

.page-view__related-post a {
    text-decoration: none;
}

.page-view__related-post .page-view__related-post-title {
    margin-bottom: 16px;
}

.page-view__related-post .page-view__related-list {
    display: flex;
    list-style: none;
    margin: 0 -10px;
    padding: 0;
    border: none;
    box-sizing: border-box;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.page-view__related-post .page-view__related-item {
    width: 33.3%;
}

.page-view__related-post .page-view__related-item:last-child {
    display: none;
}

.page-view__related-post .page-view__related-thumnail {
    display: block;
    width: 100%;
    height: 120px;
    margin-bottom: 10px;
    background-size: cover;
    background-position: 50% 50%;
}

.page-view__related-post .page-view__related-link {
    display: block;
    margin: 0 10px;
}

.page-view__related-post .page-view__related-link strong {
    display: block;
    max-height: 40px;
    margin: 0 0 3px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
    color: var(--blackFont);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    word-break: keep-all;
}

.page-view__related-post .page-view__related-date {
    display: block;
    font-size: 12px;
    line-height: 1.83;
    color: #999;
}

/* ----- media query - mobile ----- */
@media screen and (max-width: 760px) {
    .page-view__related-post {
        margin-bottom: 34px;
    }
    .page-view__related-post .page-view__related-post-title {
        margin-bottom: 11px;
    }
    .page-view__related-post .page-view__related-item {
        min-width: 145px;
    }
    .page-view__related-post .page-view__related-link {
        margin: 0 5px;
    }
    .page-view__related-post .page-view__related-thumnail {
        margin-bottom: 8px;
    }
    .page-view__related-post .page-view__related-link strong {
        margin-bottom: 0;
        font-size: 13px;
    }
}

.page-view__related-post .page-view__related-thumnail {
    height: auto;
    padding-top: 60%;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    검색 결과 없음
//////////////////////////////////////////////////////////////////////////////////////////////////// */
.archives + span {
    color: #ef402f;
}

#tt-body-search .archives:before {
    content: "'";
}

#tt-body-search .archives:after {
    content: "'의 검색결과";
}

.box-no-search {
    display: none;
    margin-bottom: 40px;
    font-size: 14px;
    color: rgba(51, 51, 51, 0.5);
}

#tt-body-category .type-category,
#tt-body-tag .type-tag,
#tt-body-search .type-search,
#tt-body-archive .type-archive {
    display: block;
}

.box-no-search span {
    position: relative;
    display: block;
    padding-left: 7px;
    line-height: 2;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
    커버 스타일
//////////////////////////////////////////////////////////////////////////////////////////////////// */

.cover-title {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-contents);
}

.cover-more-button {
    display: block;
    width: 100%;
    height: 42px;
    border: 1px solid #e8e8e8;
    font-size: 13px;
    line-height: 42px;
    margin-top: 2rem;
    color: #777;
    text-align: center;
    text-decoration: none;
}

/* C1 */
.cover-item__c1 {
    margin-bottom: 3rem;
}

.c1__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.c1__item-thumbnail img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.c1__list-content {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-contents);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: 0.3s;
}

.c1__list-content:hover {
    border: 1px solid var(--border-default);
    box-shadow: 0px 9px 10px -2px rgb(0 0 0 / 10%);
    scale: 1.01;
}

.c1__item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.c1__item-link {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.c1__item-title {
    font-size: 1rem;
    color: var(--text-title);
    font-weight: 700;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
    overflow: hidden;
}

.c1__item-summary {
    font-size: 0.875rem;
    color: var(--text-detail);
    line-height: 1.625;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    word-break: break-all;
    overflow: hidden;
}

.c1__item-summary {
    word-break: break-all;
}

.c1__item-meta {
    padding: 1rem;
    font-size: 0.875rem;
    color: var(--text-detail);
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
    overflow: hidden;
    border-top: 1px solid var(--border-contents);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.c1__item-category:hover {
    color: var(--Point-50);
}

.c1__item-date {
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    /* 106 */
    .c1__container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    /* 106 */
    .c1__container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1280px) {
    /* 106 */
    .c1__container {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 1920px) {
    .area-size-full .c1__container {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

/* C2 */
.cover-item__c2 {
    margin-bottom: 3rem;
}

.c2__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.c2__item-thumbnail {
    flex: 0 0 30%;
    max-width: 30%;
}

.c2__item-thumbnail img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.c2__list-content {
    display: flex;
    /* flex-direction: column; */
    border: 1px solid var(--border-contents);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: 0.3s;
    max-height: 160px;
}

.c2__list-content:hover {
    border: 1px solid var(--border-default);
    box-shadow: 0px 9px 10px -2px rgb(0 0 0 / 10%);
    scale: 1.01;
}

.c2__item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.c2__item-link {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.c2__item-title {
    font-size: 1rem;
    color: var(--text-title);
    font-weight: 700;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
    overflow: hidden;
}

.c2__item-summary {
    font-size: 0.875rem;
    color: var(--text-detail);
    line-height: 1.625;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
    overflow: hidden;
}

.c2__item-summary {
    word-break: break-all;
}

.c2__item-meta {
    padding: 1rem;
    font-size: 0.875rem;
    color: var(--text-detail);
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
    overflow: hidden;
    border-top: 1px solid var(--border-contents);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.c2__item-category:hover {
    color: var(--Point-50);
}

.c2__item-date {
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    /* 106 */
    .c2__container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    /* 106 */
    .c2__container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1280px) {
    /* 106 */
    .c2__container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1920px) {
    .area-size-full .c2__container {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
