.alert-bar {
    position: relative;
    top: -200px;
    width: 100%;
    height: auto;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    display: hidden;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--theme-color-5);
    flex-wrap: wrap;
    transition: 0.3s;
}

.alert-bar__contents {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 0.75rem;
}

.alert-bar__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-bar__label svg {
    stroke: var(--theme-color-50);
}

.alert-bar__link {
    color: var(--theme-color-50);
}

.alert-bar__link:hover {
    color: var(--theme-color-60);
}

.alert-bar__buttons {
    display: flex;
    gap: 0.75rem;
}

.alert-bar button {
    color: var(--button-text-default);
    cursor: pointer;
}

.alert-bar button:hover {
    color: var(--button-text-hover);
}

.alert-bar__close-button {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    padding-bottom: 2px;
    border: 1px solid var(--Border-normal);
    border-radius: 0.25rem;
}

.alert-bar__close-button:hover {
    border: 1px solid var(--Border-hover);
}

@media (min-width: 1024px) {
    .alert-bar {
        padding: 0.75rem 2rem;
    }
}

/**********************************************
    에디터
**********************************************/

/* 제목 태그 */
.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 ul {
    padding-left: 1.25rem;
}

.post-view__content ol {
    padding-left: 1.5rem;
}

.post-view__content li {
    margin-bottom: 0.5rem;
    color: var(--Text-Body);
}

.post-view__content li:first-child {
    margin-top: 0.5rem;
}

/* 인용 */
#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;
}

/**********************************************
    헤더
**********************************************/

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

.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;
    }
}

.header__logo-box {
    min-width: 180px;
}

.logo-box__title {
    font-size: 1.25rem;
    color: var(--Text-Body);
}

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

.header__nav {
    padding: 12px 4px;
    font-size: 1.25rem;
    display: none;
}

.header__nav a:hover {
    color: var(--theme-color-60);
}

@media (min-width: 1024px) {
    .header {
        min-height: 80px;
    }

    .header__nav {
        display: block;
    }
}

/* [##_blog_menu_##] */
.header__nav ul {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 4px 0;
}
.header__nav ul li {
    padding: 0 8px;
}

.header__nav ul li a {
    padding: 16px 12px;
    font-size: 19px;
    color: var(--Text-Title);
    line-height: 1;
}

/* 모바일 메뉴 */
.mobile-menu-buttonn {
    display: block;
    padding: 1rem;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-buttonn {
        display: none;
    }
}

/**********************************************
    컨테이너
**********************************************/

#container {
    display: flex;
    width: 100%;
    margin-top: -1px;
    margin-bottom: -1px;
    border-top: 1px solid var(--Border-normal);
    border-bottom: 1px solid var(--Border-normal);
}

/* 본문 구독하기 버튼 */
.container_postbtn .btn_menu_toolbar {
    display: none;
}

/******************************************
    사이드바
******************************************/

.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-normal);
    background: var(--background-base);
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 50;
    transition: 0.2s ease-out;
}

.sidebar-on {
    right: 0;
}

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

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

    .sidebar-left .sidebar {
        width: 320px;
    }

    .sidebar-right .sidebar {
        width: 320px;
        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 0.75rem 0;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    color: var(--blackFont);
}

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

/* 사이드바 - 링크 */
.sidebar-link li {
    width: 100%;
    padding: 8px 8px 8px 12px;
    border-radius: 0.375rem;
    overflow: hidden;
}

.sidebar-link a {
    margin-bottom: initial;
}

.sidebar-link li a {
    display: flex;
    font-family: Inter var, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji',
        'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: 14px;
    color: #374152;
    font-weight: 600;
}

.sidebar-link li:hover {
    background-color: var(--theme-color-70);
    cursor: pointer;
}

.sidebar-link li:hover a {
    color: #f9fafb;
}

/* 사이드바 - 프로필 */
.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-hover);
}

.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-Body);
    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;
}

.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: var(--Text-Body);
    white-space: nowrap;
    overflow: hidden;
    padding: 4px 8px;
    border: 1px solid var(--Border-normal);
    border-radius: 0.25rem;
}

.box_tag a::before {
    content: '● ';
}

.box_tag a:hover {
    color: var(--Text-Title);
    border: 1px solid var(--Border-hover);
}

.box_tag .cloud1::before {
    color: #ef4444;
}

.box_tag .cloud2::before {
    color: #a855f7;
}

.box_tag .cloud3::before {
    color: #22c55e;
}

.box_tag .cloud4::before {
    color: #eab308;
}

.box_tag .cloud5::before {
    color: var(--Border-normal);
}

/* 사이드바 - 최근글과 인기글 */
.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;
}

.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;
    overflow: hidden;
}

.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;
    border-radius: 0.5rem;
    overflow: hidden;
}

.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: var(--Text-Body);
}

.sidebar .sidebar-trending .list-recent .sidebar-trending:hover {
    color: var(--Text-Title);
}

.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;
}

.sidebar .sidebar-trending .list-recent .thumbnail {
    border-radius: 0.5rem;
}

@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-Body);
}

.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-link strong::before {
    content: '❯ ';
}

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

.sidebar-reply .sidebar-widget-list p::after {
    content: ' 님';
}

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

.sidebar .sidebar-archive .sidebar-widget-list li:hover {
    color: var(--Text-Title);
}

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

.sidebar .sidebar-calendar .inner-calendar .cal_week {
    color: #999;
}
.sidebar .sidebar-calendar .inner-calendar .cal_week .cal_day {
    user-select: none;
    position: relative;
}

.sidebar .sidebar-calendar .inner-calendar .cal_week .cal_day a::before {
    content: '';
    background-color: var(--theme-color-20);
    opacity: 0.25;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.sidebar .sidebar-calendar .inner-calendar .cal_week .cal_day:has(a) {
    color: var(--theme-color-50);
}

.sidebar .sidebar-calendar .inner-calendar .cal_week .cal_day a:hover {
    font-weight: 700;
    color: var(--theme-color-60);
}

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

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

.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;
}

/* table */
table tr,
table td {
    border: 1px solid #ddd;
}

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

.sidebar .sidebar-visitor .text-total {
    margin: -10px 0 3px 0;
    line-height: 1.64;
    font-size: 24px;
    font-weight: 700;
    background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hue 10s infinite linear;
    -webkit-animation: hue 10s infinite linear;
}

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

@keyframes hue {
    from {
        -webkit-filter: hue-rotate(0deg);
    }
    to {
        -webkit-filter: hue-rotate(-360deg);
    }
}

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

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

.sidebar-search-input::placeholder {
    color: var(--Text-Body);
}

/* 사이드바 메뉴 */
.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-Body);
}

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

/******************************************
    메인
******************************************/

.main {
    width: 100%;
    justify-content: center;
    padding: 2rem 0 4rem;
}

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

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

@media (min-width: 1024px) {
    .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-normal);
    border-radius: 0.25rem;
}

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

.list-style-selector button svg {
    stroke: var(--Border-normal);
}

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

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

@media screen and (min-width: 2241px) {
    .area-size-lg .main__area {
        margin: initial;
        width: 100%;
        margin: 0 auto;
    }

    .main__area-container {
        display: flex;
        justify-content: center;
        gap: 2rem;
    }
}

/**************************************
    아티클 리스트 카드형
**************************************/
.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-normal);
    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-hover);
}

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

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

.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(--theme-color-60);
    border-radius: 4px;
    background-color: var(--theme-color-5);
}

.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) {
    .article-liststyle-card {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (min-width: 1280px) {
    .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 {
    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-normal);
    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-hover);
}

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

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

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

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

.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: none;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    word-break: break-word;
}

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

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

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

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

/**************************************
    게시물 본문
**************************************/

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

.main__post-view.post-size-lg {
    max-width: 1024px;
    padding: 0 1rem;
}

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

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

.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) {
    .post-view__category {
        font-size: 14px;
        font-weight: 600;
    }
}

.another_category {
    display: none;
}

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

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

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

.post-view__tag-box a {
    position: relative;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    padding: 5px 12px;
    border: 1px solid var(--Border-normal);
    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-normal);
}

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

.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%;
}

/**********************************************
    게시물 푸터
**********************************************/

.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(--Grayscale-60);
}

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

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

.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;
    }
}

/**********************************************
    태그 페이지
**********************************************/
.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-normal);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    color: var(--Text-Body);
    text-align: center;
}

.main__tag-page .tag-page__tag-box a:hover {
    color: var(--Text-Title);
    border: 1px solid var(--Border-hover);
}

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

/**********************************************
    검색 결과 없음
**********************************************/
.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;
}

/**********************************************
    푸터
**********************************************/

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

.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;
}

/* 타입 1 */
.footer-type-1 .footer__title {
    color: var(--Text-Body);
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--Border-hover);
    margin-bottom: 2rem;
    text-align: center;
}

.footer-type-1 .footer-section {
    display: flex;
    flex-direction: column;
}

.footer-type-1 .footer-section__group {
    display: flex;
    flex-direction: column;
}

.footer-type-1 .footer-link-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--Text-Body);
}

.footer-type-1 .footer-link-item {
    display: inline-block;
    padding-right: 0.5rem;
    border-right: 1px solid var(--Border-hover);
    margin-right: 0.5rem;
}

.footer-type-1 .footer-link-item:last-child {
    border-right: none;
}

.footer-type-1 .footer-additional_text_box {
    display: none;
}

.footer-type-1 .copyright {
    color: var(--Text-Body);
    font-size: 0.75rem;
    padding-top: 1rem;
    text-align: center;
    order: 2;
}

.footer-type-1 .copyright a {
    font-weight: 700;
    color: var(--point-50);
}

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

/* 타입 2 */
.footer-type-2 .footer__title {
    color: var(--Text-Body);
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--Border-hover);
    margin-bottom: 2rem;
}

.footer-type-2 .footer-section {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    color: var(--Text-Body);
}

.footer-type-2 .footer-section__group {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.footer-type-2 .footer-link-items {
    justify-content: center;
    align-items: flex-end;
    order: 2;
    margin-top: 5px;
}

.footer-type-2 .footer-link-item {
    display: inline-block;
    white-space: nowrap;
    font-size: 0.875rem;
    padding-right: 0.5rem;
    border-right: 1px solid var(--Border-hover);
    margin-right: 0.5rem;
}

.footer-type-2 .footer-link-item:last-child {
    border-right: none;
}

.footer-type-2 .footer-additional_text_box {
    margin-top: 1rem;
    font-size: 12px;
    word-break: keep-all;
    order: 3;
}

.footer-type-2 .footer-additional_text_box span {
    padding-right: 0.5rem;
    border-right: 1px solid var(--Border-hover);
    margin-right: 0.5rem;
    white-space: nowrap;
    text-wrap: wrap;
}

.footer-type-2 .footer-additional_text_box span:last-child {
    border-right: none;
}

.footer-type-2 .copyright {
    order: 1;
    font-size: 0.875rem;
    margin: 5px 30px 0 0;
}

.footer-type-2 .copyright a {
    font-weight: 700;
    color: var(--point-50);
}

/* 타입 3 */
.footer-type-3 .footer__title {
    color: var(--Text-Body);
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--Border-hover);
    margin-bottom: 2rem;
}

.footer-type-3 .footer-section {
    display: flex;
    flex-direction: column;
}

.footer-type-3 .footer-section__group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-type-3 .footer-link-items {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0.25rem 0.5rem;
    color: var(--Text-Body);
}

.footer-type-3 .footer-link-item {
    font-weight: 700;
    display: flex;
    align-items: center;
}

.footer-type-3 .footer-link-item a {
    font-size: 0.875rem;
    font-weight: 400;
}

.footer-type-3 .footer-link-item:last-child {
    grid-column: 1/3;
}

.footer-type-3 .footer-additional_text_box {
    display: none;
}

.footer-type-3 .copyright {
    color: var(--Text-Body);
    font-size: 1rem;
    order: 2;
}

.footer-type-3 .copyright a {
    font-weight: 700;
    color: var(--point-50);
}

@media (min-width: 1024px) {
    .footer-type-3 .copyright {
        padding-top: initial;
    }
}

/******************************************
    공통요소: 로딩 스피너
******************************************/

.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-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;
    }
}

/**********************************************
    자동 목차
**********************************************/

#toc {
    padding: 1rem;
    max-height: 1080px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: 0.3s;
    background-color: var(--theme-color-5);
    border: 1px solid var(--theme-color-10);
}

#toc.toc__collapsed {
    max-height: 64px;
}

.toc__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.25rem;
    margin-bottom: 0.5rem;
}

.toc__title {
    font-size: 1.125rem;
    color: var(--Text-Title);
    font-weight: 700;
}

.toc__toggle {
    color: var(--Text-Body);
    cursor: pointer;
}

.toc__toggle svg {
    transition: 0.3s;
}

.toc__item {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
    overflow: hidden;
    color: var(--Text-Body);
    margin-bottom: 0.125rem;
    cursor: pointer;
    transition: 0.3s;
}

.toc__item:hover {
    color: var(--Text-Title);
}

.toc__counter {
    color: var(--theme-color-50);
}

.toc__counter:hover {
    color: var(--theme-color-60);
}

.toc__item span {
    margin-right: 0.5rem;
}

.toc__level-2 {
    margin-left: 0.5rem;
}

.toc__level-3 {
    margin-left: 1rem;
}

.toc__level-4 {
    margin-left: 1.5rem;
}

.toc__collapsed .toc__header {
    padding: 0;
    margin: 0;
    border: none;
}

.toc__collapsed .toc__item {
    opacity: 0;
}

/**********************************************
    커버 스타일
**********************************************/
.cover-title:empty {
    display: none;
}

.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-normal);
}

.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;
}

/******************************************
    커버 타입 1
******************************************/
.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-normal);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: 0.3s;
}

.c1__list-content:hover {
    border: 1px solid var(--Border-hover);
    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-Body);
    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-Body);
    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-normal);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

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

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

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

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

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

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

/******************************************
    커버 타입 2
******************************************/
.cover-item__c2 {
    margin-bottom: 3rem;
}

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

.c2__item-thumbnail {
    flex: 0 0 36%;
    max-width: 36%;
    border-right: 1px solid var(--Border-normal);
}

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

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

.c2__list-content:hover {
    border: 1px solid var(--Border-hover);
    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-Body);
    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-Body);
    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-normal);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

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

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

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

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

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

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

/******************************************
    커버 타입 3
******************************************/
.cover-item__c3 {
    position: relative;
    margin-bottom: 3rem;
}

.c3__swiper {
    width: 100%;
    height: 480px;
}

.c3__swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--background-layer-1);
    border: 1px solid var(--Border-normal);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    overflow: hidden;
    transition: 0.3s;
}

.c3__swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    border-radius: 1rem;
}

.c3__autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--theme-color-50);
}

.c3__autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--theme-color-50);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.c3__item-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    padding: 1rem;
    border-radius: 1rem;
    color: var(--Grayscale-0);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.c3__item-title {
    font-size: 2rem;
    font-weight: 900;
    word-break: keep-all;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.c3__item-category {
    font-size: 0.875em;
    margin-top: 1rem;
}

.swiper-slide:hover img {
    scale: 1.05;
}

.swiper-pagination-bullet-active {
    background: var(--theme-color-50) !important;
}

/******************************************
    커버 타입 4
******************************************/
.cover-item__c4 {
    position: relative;
    margin-bottom: 3rem;
}

.c4__swiper {
    width: 100%;
    height: 480px;
}

.c4__swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--background-layer-1);
    border: 1px solid var(--Border-normal);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    overflow: hidden;
    transition: 0.3s;
}

.c4__swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    border-radius: 1rem;
}

.c4__item-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    padding: 1rem;
    border-radius: 1rem;
    color: var(--Grayscale-0);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.c4__item-title {
    font-size: 2rem;
    font-weight: 900;
    word-break: keep-all;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.c4__item-category {
    font-size: 0.875em;
    margin-top: 1rem;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: var(--theme-color-50);
}

/******************************************
    커버 타입 5
******************************************/

.c5__container {
    width: 100%;
    display: flex;
    overflow-x: scroll;
    gap: 3rem;
    padding: 1.5rem 1.5rem 3rem;
    cursor: grab;
}

.c5__container.active {
    cursor: grabbing;
}

.c5__list-content {
    flex: 0 0 240px;
    max-width: 240px;
    height: 240px;
    padding: 1rem;
    box-sizing: border-box;
    border: 1px solid black;
    text-align: center;
    background-color: var(--Grayscale-80);
    color: var(--Grayscale-0);
    transition: 0.3s;
    border-radius: 0.5rem;
}

.c5__list-content:nth-child(n) {
    transform: rotate(5deg);
}

.c5__list-content:hover {
    transform: scale(1.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.c5__item-header {
    width: 100%;
    display: flex;
    position: relative;
}

.c5__item-title {
    width: 70%;
    min-height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: auto-phrase;
}
.c5__item-header::before {
    content: '';
    height: 1.75rem;
    width: 1.75rem;
    border-radius: 50%;
    border: 3px solid var(--theme-color-50);
    box-shadow: inset 0 0 3px var(--theme-color-50);
    background-color: transparent;

    position: absolute;
    right: 0;
}

.c5__item-date {
    color: var(--theme-color-50);
    padding-bottom: 1.5rem;
}

.c5__item-summary {
    text-align: left;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    word-break: break-word;
}

.c5__item-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* 티스토리 아이콘 */
.menu_toolbar .btn_menu_toolbar {
    text-align: center;
}

.c5__container.active * {
    cursor: grabbing;
}

/******************************************
    커버 타입 6
******************************************/

.cover-item__c6 {
    margin-bottom: 3rem;
}

.cover-item__c6 .cover-title {
    margin-bottom: initial;
    border-bottom: initial;
}

.c6__item-info {
    display: flex;
    align-items: center;
    color: var(--Text-Body);
    border-bottom: 1px solid var(--Border-normal);
    font-size: 14px;
    padding: 0.5rem 0.5rem 0;
}

.c6__item-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    word-break: keep-all;
}

.c6__item-info:has(.c6__item-link:hover) {
    font-weight: 700;
    color: var(--Text-Title);
    background-color: var(--theme-color-5);
}

/******************************************
    커버 타입 7
******************************************/

.c7__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.c7__list-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: var(--background-layer-1);
    box-shadow: 0px 6px 10px -2px rgb(0 0 0 / 20%), 0px 4px 6px -2px rgb(0 0 0 / 20%);
}

.c7__item-title {
    /* font-size: 0.875rem; */
    color: var(--Text-Body);
    line-height: 1.625;
    font-weight: 700;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: auto-phrase;
    overflow: hidden;
}

.c7__item-thumbnail img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

@media (min-width: 768px) {
    .c7__container.col-span-3,
    .c7__container.col-span-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .c7__container.col-span-5,
    .c7__container.col-span-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .c7__container.col-span-3,
    .c7__container.col-span-4,
    .c7__container.col-span-5 {
        grid-template-columns: repeat(3, 1fr);
    }
    .c7__container.col-span-6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .c7__container.col-span-3,
    .c7__container.col-span-4 {
        grid-template-columns: repeat(3, 1fr);
    }
    .c7__container.col-span-5 {
        grid-template-columns: repeat(4, 1fr);
    }
    .c7__container.col-span-6 {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1920px) {
    .c7__container.col-span-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .c7__container.col-span-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .c7__container.col-span-5 {
        grid-template-columns: repeat(5, 1fr);
    }
    .c7__container.col-span-6 {
        grid-template-columns: repeat(6, 1fr);
    }
    .c7__container.col-span-7 {
        grid-template-columns: repeat(7, 1fr);
    }
    .c7__container.col-span-8 {
        grid-template-columns: repeat(8, 1fr);
    }
}

/******************************************
    컨텐츠 사이드 광고
******************************************/

.main__side-custom-banner {
    display: none;
    /* width: 300px; */
    max-width: 300px;
    min-height: 250px;

    position: sticky;
    top: 100px;
    flex-direction: column;
    gap: 1rem;
}

.custom-banner-left-area {
    align-items: flex-end;
}

.custom-banner-rightarea {
    align-items: flex-start;
}

.main__side-custom-banner img {
    padding: 0;
    margin: 0;
    object-fit: cover;
    transition: 0.3s;
}

.main__side-custom-banner img:hover {
    border: 4px solid var(--theme-color-50);
}

.area-size-full .main__side-custom-banner {
    display: none;
}

@media screen and (min-width: 1601px) {
    .area-size-md .single-custom-banner .main__area {
        margin: initial;
        width: 100%;
    }

    .area-size-md .single-custom-banner .main__container {
        display: flex;
        justify-content: center;
        gap: 2rem;
    }

    .area-size-md .single-custom-banner .main__side-custom-banner {
        display: flex;
    }
}

/* 컨텐츠 사이드 광고 테스트용 - 싱글 사이드 */
@media screen and (min-width: 1981px) {
    .area-size-md .double-custom-banner .main__area,
    .area-size-lg .single-custom-banner .main__area {
        margin: initial;
    }

    .area-size-md .double-custom-banner .main__container,
    .area-size-lg .single-custom-banner .main__container {
        display: flex;
        justify-content: center;
        gap: 2rem;
    }

    .area-size-md .double-custom-banner .main__side-custom-banner,
    .area-size-lg .single-custom-banner .main__side-custom-banner {
        display: flex;
    }
}

/* 컨텐츠 사이드 광고 테스트용 - 더블 사이드 */
@media screen and (min-width: 2241px) {
    .area-size-lg .double-custom-banner .main__area {
        margin: initial;
        width: 100%;
    }

    .area-size-lg .double-custom-banner .main__container {
        display: flex;
        justify-content: center;
        gap: 2rem;
    }

    .area-size-lg .double-custom-banner .main__side-custom-banner {
        display: flex;
    }
}

.et_mobile_menu li a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.et_mobile_menu {
    box-shadow: initial;
}

/* NEW 아이콘 색상 변경 (NEW 기간 변경하면 발생하는 티스토리 자체 버그) */
img[src*='new_ico_1'] {
    filter: sepia(100%) hue-rotate(315deg) saturate(500%) contrast(100%);
}

/* 댓글 영역 순서 변경 */
.tt-comment-cont {
    display: flex;
    flex-direction: column;
}

.tt-comment-cont .tt-box-total {
    order: 1;
    margin-bottom: 16px;
}

.secondary_domain_alert {
    display: flex;
    align-items: center;
    color: #fff;
    background-color: #222;
    width: 100%;
    padding: 1rem;
    order: 2;
    margin-bottom: 16px;
    border-radius: 8px;
    word-break: auto-phrase;
}

.secondary_domain_alert a:hover {
    color: #cfcfcf;
    text-decoration: underline;
}

.tt-comment-cont form {
    order: 3;
    padding-bottom: 16px;
}

.tt-comment-cont .tt-area-reply {
    order: 4;
}

.sidebar-menu {
    display: none;
}

.sidebar-menu ul {
    display: none;
}
@media screen and (max-width: 1023px) {
    .sidebar-menu {
        display: block;
    }

    .sidebar-menu ul:first-of-type {
        display: block;
    }
}

.footer-section__group {
    width: 100%;
}

.footer-link-items {
    word-break: keep-all;
}

.footer-additional_text_box {
    width: 100%;
}
.additional-text {
    word-break: keep-all;
}
