@charset "UTF-8";  
/* ------------------------------------------------- */
/* 웹폰트 */   
/* ------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Coustard:wght@400;900&display=swap');
@font-face {
    font-family: 'Rimgul';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2601-4@1.1/Limgul12.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}
:root { 
    /* 한국어 */  
    --font-ko: 'Rimgul';
    /* 일본어 */ 
    --font-jp: 'DotGothic16'; 
    /* def */
    --font-def: var(--font-ko), var(--font-jp), Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
html, body, textarea, button, code {
  font-family: var(--font-def);
}
nav a { 
  font-size: var(--fs-nav);
}
.grid_4 span {
  font-family: var(--font-def);
}
/* ------------------------------------------------ */



/* ------------------------------------------------- */
/* 스타일 관리 */
/* ------------------------------------------------- */
:root { 
    /* 색상 */ 
    --color-point: #ff826d;
    --color-red: #e82e1a;
    --color-outline: #c0c0c0;

    --color-def: #30322f;
    --color-line: #30322f;
    --color-line-gray: #a5a5a5;
    --color-gray: #706c6c;
    --color-bgGray: #dbdbdb;
    --color-bgGray-hover: #c1c1c1;

    /* 컨테이너 사이즈 */
    --content-size: 650px;
    --side-container-size: 260px;
    --left-container-size: 320px;

    /* 전체 스타일 */
    --border-width: 1px;
    --border-radius: 2px;
    --transition: .25s ease-in-out;

    /* 내부 스타일 */
    --inline-line-width: 1px;

    /* 갤러리 썸네일 모서리 라운드 */
    --border-radius-gal: 15px;

    /* 
        기본 폰트 사이즈를 조절 원할 시 --fs-def 의 수치를 조절하세요.
        본문에서만 폰트 사이즈를 조절 원할 시 --fs-article 의 수치를 조절하세요.
        ★웹폰트 변경시 bold 처리가 안 되는 경우가 있습니다. --fw-bold, --fw-boldEx 를 bold 로 변경해주세요.★
    */
    --fs-xs: 9px; 
    --fs-s: 10px; 
    --fs-def: 12px; /* 기본 */
    --fs-article: 12px; /* 본문 전용 */
    --fs-nav: 14px; /* 카테고리 전용 */
    --fs-m: calc(var(--fs-def) + 1.5px); 
    --fs-l: calc(var(--fs-def) + 3px); 
    --fs-xl: calc(var(--fs-def) + 6px); 
    --line-height: 1.8; /* 글줄 */
    --font-icon: 'tabler-icons';
    --fw-def: 500;
    --fw-bold: 700;
    --fw-boldEx: 900;
}
/* 본문 글, 이미지 처리 */
.article_content > .contents_style {
  font-size: var(--fs-article);
}
.article_content.keep > .contents_style {
  word-break: keep-all !important;
}
.article_content.justify > .contents_style {
  text-align: justify;
}
.article_content.break > .contents_style {
  word-break: break-all !important;
}
figure.imageblock,
figure.imagegridblock { 
	margin: 20px auto !important;
} 
figure.imageslideblock div.image-container {
  max-width: 100% !important;
  min-width: auto;
}
figure.imageslideblock div.image-container,
figure.imageblock img,
figure.imagegridblock img {
  border-radius: var(--border-radius-img); 
  overflow: hidden;
  vertical-align: top;
} 
/* 타플랫폼글 업로드시 본문 박스를 넘어가는 현상 방지 */
div[class*='sheet-coc-rol'] {
  max-width: 100%;
}
/* 본문이미지 흑백 전환 */
.article_content.img-filter figure.imageslideblock div.image-container:hover img,
.article_content.img-filter figure.imageblock:hover img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity:0.7;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* 마우스 커서 & 스크롤바 & 드래그 */
/* ------------------------------------------------- */
/* - cursor - */
*, *:focus {
    cursor: url(./images/kuma.cur), progress !important;
}

/* Windows XP 스크롤바 */
::-webkit-scrollbar {
    width: 17px;
}
::-webkit-scrollbar-corner {
    background: #d6d6d6;
}
::-webkit-scrollbar-track:vertical {
    background-image: url('./images/scroll-background2.svg');
}
::-webkit-scrollbar-track:horizontal {
    background-image: url('./images/scroll-background-horizontal.svg');
}
::-webkit-scrollbar-thumb {
    background-position: center; 
    background-repeat: no-repeat;
    background-color: #d6d6d6;
    background-size: 7px;
    border: 1px solid #8e8d8b;
    border-radius: 2px;
    box-shadow: inset -3px 0 #d6d6d6, inset 1px 1px #fff;
}
::-webkit-scrollbar-thumb:vertical {
    background-image: url('./images/scroll-thumb.svg');
}
::-webkit-scrollbar-thumb:horizontal {
    background-size: 8px;
    background-image: url('./images/scroll-thumb-horizontal.svg');
}
::-webkit-scrollbar-button:single-button:vertical:decrement {
    height: 17px;
    background-image: url('./images/scroll-arrow-up00.svg');
}
::-webkit-scrollbar-button:single-button:vertical:increment {
    height: 17px;
    background-image: url('./images/scroll-arrow-down00.svg');
}
::-webkit-scrollbar-button:single-button:horizontal:decrement {
    width: 17px;
    background-image: url('./images/scroll-arrow-left00.svg');
}
::-webkit-scrollbar-button:single-button:horizontal:increment {
    width: 17px;
    background-image: url('./images/scroll-arrow-right00.svg');
}

/* - drag color - */
::selection {
    color: transparent;
    background: #fff;
    text-shadow: 0 0 2px var(--color-point);
    transition: all 250ms ease-in;
}
::-moz-selection {
    color: transparent;
    background: #fff;
    text-shadow: 0 0 2px var(--color-point);
    transition: all 250ms ease-in;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* reset */
/* ------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}
body, button, dd, dl, dt, fieldset, form, 
h1, h2, h3, h4, h5, h6, input, 
legend, li, ol, p, select, table, td, textarea, th, ul {
    margin: 0;
    padding: 0
}
button, textarea, input {
    outline: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button {
    border: 0;
    color: inherit;
    cursor: pointer;
    -webkit-appearance:none; 
    -moz-appearance:none; 
    appearance:none; 
}
input {
    -webkit-appearance:none; 
    -moz-appearance:none; 
    appearance:none; 
}
#tistorytoolbarid {
    display: none;
}
iframe, video, embed, object, img, table {
    max-width: 100%;
}
a, a:link, a:visited, a:hover, a:active, a:focus {
    text-decoration: none;
}
a {
    color: var(--color-def);
}
a:hover {
    color: var(--color-point);
}
body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
ul, li {
    list-style: none;
}

.ti {
    font-size: 18px;
}
.ti-s {  
    font-size: 16px;
}
.ti-xs {
    font-size: 12.5px;
}
.ti-l {
    font-size: 36px;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- body ---------- */
/* ------------------------------------------------- */
body {
  font-size: var(--fs-def);
  color: var(--color-def);
  line-height: var(--line-height);
  word-wrap: break-word;
  font-weight: var(--fw-def);
  overflow-y: scroll;
  background-image: url(./images/bg2.png);
  background-size: 70px auto;
  background-repeat: repeat;
}
body.prevent-scroll {
  overflow: hidden;
}
.content_inner { 
    animation: fadein 1.65s; 
    -moz-animation: fadein 1.65s;
    -webkit-animation: fadein 1.65s;
    -o-animation: fadein 1.65s;
}
@keyframes fadein {
    from { opacity:0; }
    to { opacity:1; }
}
@-moz-keyframes fadein {
    from { opacity:0; }
    to { opacity:1; }
}
@-webkit-keyframes fadein {
    from { opacity:0; }
    to { opacity:1; }
}
@-o-keyframes fadein {
    from { opacity:0; }
    to { opacity: 1; }
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- components ---------- */
/* ------------------------------------------------- */
/* - button - */
.xp_btn {
  border-radius: var(--border-radius);
  border: 1px solid var(--color-def);
  background-color: var(--color-bgGray);
}
.side_call .xp_btn {
  font-size: 13px;
  width: 30px;
  height: 30px;
}
#pre_year,
#pre_month {
  padding-right: 6px;
}
#next_year,
#next_month {
  padding-left: 6px;
}
.side_call .xp_btn:hover {
  background-color: var(--color-bgGray-hover);
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- layout ---------- */
/* ------------------------------------------------- */
.wrap {
    position: relative;
    min-height: 100dvh;
}
.dim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    overflow: hidden;
    opacity: 0; 
    z-index: 9996;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity var(--transition);
    pointer-events: none;
}
.dim.visible {
    opacity: 1;
    pointer-events: auto;
}
/* - 2단레이아웃 - */
.layout_wrap { 
  width: 100%;
  display: flex; 
  align-items: flex-start; 
}
/* container */
.center_container {
  display: flex;
  width: calc(95% - var(--left-container-size));
  margin-left: var(--left-container-size);
}
.side_container {
  width: var(--side-container-size);
  padding: 35px 15px 65px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.side_container > div {
  width: 100%;
}
#container {
  padding: 35px 15px;
  width: calc(100% - var(--side-container-size));
  position: relative;
}
/* content */
#content { 
  max-width: 90%;
  width: var(--content-size);
  background-color: #fff;
  border-top: 2px solid #dfdfdf;
  border-left: 2px solid #dfdfdf;
  border-bottom: 2px solid #808080;
  border-right: 2px solid #808080;
  position: relative;
  margin: 0 auto;
}
#tt-body-category #content:has(.content_inner .list#list_gal_1) .pagination {
  justify-content: center;
  padding-top: 15px;
}
#tt-body-guestbook .pagination {
  padding-top: 15px;
}
#tt-body-category #content:has(.content_inner .list#list_gal_1) {
 width: 1000px;
}
#tt-body-category #content:has(.content_inner .list#list_gal_1),
body#tt-body-index #content,
#content.no_box {
  border: 0;
  background: none;
}
.content_inner {
  position: relative;
  padding: 15px;
  border-radius: var(--border-radius);
}
/* left_container */
.left_container { 
  position: fixed;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--left-container-size);
  height: 100%;
  min-height: 100dvh;
  padding: 35px 15px;
  overflow-y: scroll;
  overflow-x: hidden;
  background-image: url(./images/dott_bg.png);
}
.left_container > div {
  max-width: 240px;
}
.left_search,
.left_container nav {
  width: 200px;
}
/* banner */
.side_banner {
  position: relative;
  width: 100%;
}
.banner_list_btn {
  text-align: center;
  width: 100%;
  position: relative;
} 
.banner_list_btn img {
  width: 100%;
  max-width: 100%;
  vertical-align: top;
}
.side_banner_list {
  display: none;
  position: absolute;
  z-index: 99;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  max-height: 150px;
  overflow-y: auto;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #fff; 
  border-top: 2px solid #dfdfdf;
  border-left: 2px solid #dfdfdf;
  border-bottom: 2px solid #808080;
  border-right: 2px solid #808080;
}
.side_banner_list li:not(:last-child) {
  margin-bottom: 5px;
}
.side_banner_list li a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.side_banner_list li a img {
  max-width: 100%;
  vertical-align: top;
}
/* search box */
.left_search {
  display: flex;
  gap: 2px;
}
#search_input {
  width: calc(100% - 40px);
  background-color: #fff;
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-bottom: 2px solid #dfdfdf;
  border-right: 2px solid #dfdfdf;
  padding: 0 5px;
}
#search_btn {
  position: relative;
  width: 40px;
  border: 2px solid #fff;
  box-shadow: 1px 1px #808080;
  background-color: var(--color-bgGray);
  border-radius: 2px;
  padding-top: 2px;
  color: var(--color-def);
} 
#search_btn:hover {
    box-shadow: -1px -1px #bababa;
    top: 1px;
}
/* left_clap */
.left_clap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.left_clap img.clap_img {
  max-width: 120px;
}
.left_clap > a { 
  display: flex;
}
.left_clap > img,
.left_clap > a > img {
  vertical-align: top;
}
/* imgbox */
.left_imgbox {
  margin-top: 25px;
  width: 100%;
  background-color: #fff;
  border-top: 2px solid #dfdfdf;
  border-left: 2px solid #dfdfdf;
  border-bottom: 2px solid #808080;
  border-right: 2px solid #808080;
}
.side_imgbox {
  width: 100%;
  background-color: #fff;
  border-top: 2px solid #dfdfdf;
  border-left: 2px solid #dfdfdf;
  border-bottom: 2px solid #808080;
  border-right: 2px solid #808080;
}
.left_imgbox.nobox,
.side_imgbox.nobox {
  border: 0;
  background: none;
  height: auto;
}
.left_imgbox.nobox img,
.side_imgbox.nobox img {
  max-width: 100%;
  vertical-align: top;
}
.content_scroll {
  width: 100%;
  min-height: 160px;
  max-height: 300px;
  overflow: scroll;
}
.content_scroll img {
  vertical-align: top;
  max-width: 110%;
}
.content_scroll p {
  padding: 2px 5px;
  font-size: 11px; 
}
/* profile box */ 
.left_profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 15px;
}
.profile_imgbox {
  margin-bottom: 10px;
}
.profile_imgbox img {
  max-width: 100%;
  vertical-align: top;
}
/* text box */
.side_txtbox {
  border-top: 2px solid #dfdfdf;
  border-left: 2px solid #dfdfdf;
  border-bottom: 2px solid #808080;
  border-right: 2px solid #808080;
  background-image: url(./images/txtbox_bg.png);
  background-repeat: repeat;
  background-position: center;
  height: 25px;
  width: 100%;
  overflow: hidden;
}
.txtbox_ani {
  animation: txtani 7s linear infinite;
  display: inline-block;
  padding-left: 100%;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  font-size: var(--fs-s);
  line-height: 1.9;
}
@keyframes txtani {
  0% {
      transform: translate(0, 0);
  }
  100% {
      transform: translate(-100%, 0);
  }
}
@-moz-keyframes txtani {
  0% {
      transform: translate(0, 0);
  }
  100% {
      transform: translate(-100%, 0);
  }
}
@-webkit-keyframes txtani {
  0% {
      transform: translate(0, 0);
  }
  100% {
      transform: translate(-100%, 0);
  }
}
@-o-keyframes txtani {
  0% {
      transform: translate(0, 0);
  }
  100% {
      transform: translate(-100%, 0);
  }
}
/* navigation bar */
.category_title {
  text-align: center;
  font-size: var(--fs-m); 
  font-weight: var(--fw-bold);
  color: var(--color-red);
  padding-bottom: 5px;
}
nav {
  position: relative;
  width: 100%;
  padding: 10px 0 20px 0;
}
nav > ul > li > ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
nav > ul > li > ul > li {
  position: relative;
}
nav > ul > li > ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 19px;
  background-image: url(./images/cate_icon2.png);
  background-size: 100%;
}
nav > ul > li > ul > li > a {
  padding: 3px 5px 3px 25px;
}
/* reset */
nav > ul > li > ul > li > a,
nav > ul > li > ul > li > ul > li > a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.link_tit,
nav > ul > li > ul > li > ul {
    display: none;
}

/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- list ---------- */
/* ------------------------------------------------- */
/* - 목록 상단 - */
.list_top {
  padding: 0px 10px 15px 10px;
}
.cate_num {
  color: var(--color-point);
}
/* - common - */
.list .list_container {
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
}
.list .list_item .list_title {
  position: relative;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  white-space: normal;
  text-overflow: ellipsis;
  padding-left: 12px;
}
.list .list_item .list_title::before {
  content: '';
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-def);
  top: 8px;
}
.list#list_memo .list_item .list_title::before {
  top: 3px;
} 
.list_item > a:hover {
  color: var(--fs-def);
}
.list:not(.list[id*='gal_2']) .list_item > a:hover .list_title {
  color: var(--color-point);
}
.list .list_item .list_title img {
  display: none;
}
.list .list_item .list_date {
  display: inline-flex;
  align-items: center;

}
.list .list_item .list_info {
  display: flex;
  flex-wrap: wrap;
}
/* 썸네일 */
.list_item .list_thumb {
  position: relative;
  overflow: hidden;
}
.list .list_item .list_thumb > figure {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0 !important;
  transition: var(--transition);
}
.list .list_item .list_thumb > figure > img {
  transition: unset;
  vertical-align: top;
  background-color: #fff;
}
.list:not(.list[id*="memo"]) .list_item .list_thumb {
  isolation: isolate;
  height: 100%;
}
.list:not(.list[id*="memo"]) .list_item .list_thumb > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list:not(.list[id*="memo"]) .list_item > a:hover .list_thumb > figure:has(.thumb) {
  transform: scale(1.2);
}
/* 보호글 처리 */
.locked {
  position: relative;
  padding-left: 15px;
}
.locked::before {
  content: '\eae2';
  font-family: var(--font-icon) !important;
  position: absolute;
  left: 0;
  font-size: var(--fs-def);
  color: var(--color-def);

}
.list[id*='gal_2'] .locked::before {
  color: #fff;
  top: -2px;
}
#list_memo .locked::before,
#list_web .locked::before {
  font-size: var(--fs-m);
}
.list:not(.list[id*='gal_2']) .list_item > a:hover .locked::before {
  color: var(--color-point);
}
.list_summary > span {
  overflow: hidden;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  width: 0;
  height: 0;
  text-indent: -9999px;
  visibility: hidden;
  word-break: break-all;
}
/* 썸네일 없는 경우 처리 (메모, 웹) */
#list_memo .list_thumb:not(:has(.thumb)),
#list_web  .list_thumb:not(:has(.thumb)) {
  display: none;
}
/* no_thumb 표시/비표시 */
:not(.thumb) + .no_thumb {
  display: inline-block !important;
}
.thumb + .no_thumb {
  display: none;
}
.no_thumb {
  width: 250px;
  height: 250px;
  max-width: 100%;
  max-height: 100%;
  background-color: #fff;
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-bottom: 2px solid #dfdfdf;
  border-right: 2px solid #dfdfdf;
  position: relative;
}
.no_thumb::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 32px;
  background-image: url(./images/no_thumb.png);
}
/* - 갤러리형_1 - */
#list_gal_1 .list_container {
  gap: 10px;
  justify-content: center;
}
#list_gal_1 .list_item {
  height: 250px;
}
#list_gal_1 .list_item .list_info {
  display: none;
}
#list_gal_1 .list_item .list_title {
  padding-bottom: 3px;
  -webkit-line-clamp: 3;
  text-align: center;
}
/* - 갤러리형_2 - */
.list[id*='gal_2'] .list_container {
  gap: 15px;
}
.list[id*='gal_2'] .list_item {
  position: relative;
}
.list[id*='gal_2'] .list_item .list_info {
  position: absolute;
  bottom: 15px;
  padding: 0 15px;
  z-index: 3;
  width: 100%;
  line-height: 1.5;
  visibility: hidden;
}
.list[id*='gal_2'] .list_item .list_title {
  opacity: 0;
  font-size: calc(var(--fs-def) - 1px);
  color: #fff;
  -webkit-line-clamp: 3;
}
.list[id*='gal_2'] .list_item .list_date {
  opacity: 0;
  color: #fff;
}
.list[id*='gal_2'] .list_item .list_thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-thumb-dim);
  opacity: 0;
  backdrop-filter: blur(1.5px);

}
.list[id*='gal_2'] .list_item > a:hover .list_thumb {
  border-color: var(--color-point) !important;
}
.list[id*='gal_2'] .list_item > a:hover .list_thumb > figure {
  opacity: 1 !important;
  filter: none !important;
  -webkit-filter: none !important;
}
.list[id*='gal_2'] .list_item > a:hover .list_thumb::after {
  opacity: 0.8;
}
.list[id*='gal_2'] .list_item > a:hover .list_info {
  visibility: visible;
}
.list[id*='gal_2'] .list_item > a:hover .list_title {
  opacity: 1;
}
.list[id*='gal_2'] .list_item > a:hover .list_date {
  opacity: 0.65;
}
/* 원형 썸네일 */
#list_gal_2_circle .list_item .list_thumb {
  border-radius: 50%;
}
#list_gal_2_circle .list_item .list_info {
  top: 50%;
  bottom: unset;
  transform: translateY(-50%);
  justify-content: center;
}
#list_gal_2_circle .list_item .list_title {
  text-align: center;
  -webkit-line-clamp: 1;
}
/* - 갤러리형_3 - */
#list_gal_3 .list_container {
  gap: 15px;
}
#list_gal_3 .list_item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border: var(--border-width) solid var(--color-point);
  border-radius: var(--border-radius);
}
#list_gal_3 .list_item .list_thumb {
  width: 60px;
  border-radius: 50%;
}
#list_gal_3 .list_item .list_info {
  width: calc(100% - 60px);
  padding-left: 10px;
}
#list_gal_3 .list_item .list_title {
  padding-bottom: 3px;
  -webkit-line-clamp: 1;
}
#list_gal_3 .list_item > a:hover {
  border-color: var(--color-point);
}
/* 썸네일 숨김 */
.list[id*="playlist"] .list_thumb,
.list[id*="playlist"] .list_thumb img,
.list[id*="board"] .list_thumb,
.list[id*="board"] .list_thumb img {
  display: none;
}
/* - 일반형_1 - */
#list_board .list_item {
  width: 100%;
}
#list_board .list_item > a {
  display: block;
  padding: 5px 0px;
}
/* - 일반형_2 - */
#list_board_box .list_container {
  row-gap: 15px;
}
#list_board_box .list_item > a {
  display: block;
  padding: 15px 20px;
  border: var(--border-width) solid var(--color-point);
  border-radius: var(--border-radius);
  overflow: hidden;
}
#list_board_box .list_item > a:hover {
  background-color: var(--color-point);
  border-color: var(--color-point);
}
/* 일반형 공통 */
.list[id*="board"] .list_item .list_title {
  flex: 1;
  padding-right: 15px;
  -webkit-line-clamp: 1;
}
.list[id*="board"] .list_item .list_date {
  margin-left: auto;
}
/* - 메모형 - */
#list_memo .list_item {
  width: 100%;
  padding: 10px 0;
  border-bottom: var(--inline-line-width) dashed var(--color-line);
}
#list_memo .list_item > a {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#list_board .list_item:first-child > a,
#list_web .list_item:first-child,
#list_memo .list_item:first-child {
  padding-top: 0;
}
#list_memo .list_thumb {
  text-align: center;
  background: none;
}
#list_memo .list_thumb figure img:not([width]),
#list_memo .list_thumb figure iframe:not([width]) {
  width: auto;
}
#list_memo .list_summary > span { width: 100%; height: auto; text-indent: 0;
 visibility: visible; -webkit-line-clamp: 2; }
#list_memo .list_item .list_info {
  order: -1;
  justify-content: space-between;
  align-items: center;
}
#list_memo .list_item .list_title {
  width: calc(100% - 60px);
  line-height: 1;
  -webkit-line-clamp: 1;
}
/* - 플레이리스트형 - */
#list_playlist .list_item {
  width: 100%;
  border-bottom: var(--inline-line-width) solid var(--color-line);
  padding-bottom: 20px;
}
#list_playlist .list_item:first-child {
  border-top: var(--inline-line-width) solid var(--color-line);
}
#list_playlist .list_item > a {
  display: flex;
  flex-direction: column;
}
#list_playlist .list_item .list_title {
  font-size: calc(var(--fs-def) + 1.5px);
  padding: 15px 15px 15px 28px;
  position: relative;
  -webkit-line-clamp: 1;
}
#list_playlist .list_item .list_title::before {
  content: '\fa3c';
  font-family: var(--font-icon);
  position: absolute;
  left: 3px;
  top: 11px;
  font-size: 19px;
  color: var(--color-def);

}
#list_playlist .list_item > a:hover .list_title::before {
  color: var(--color-point);
}
#list_playlist .list_date {
  display: none;
}
#list_playlist .list_summary > span {
  width: 100%;
  height: auto;
  text-indent: 0;
  visibility: visible;
  -webkit-line-clamp: 6;
}
.video_container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.video_container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* - 웹진형 - */
#list_web .list_item {
  width: 100%;
  padding: 10px 0px;
  border-bottom: var(--inline-line-width) dashed var(--color-line);
}
#list_web .list_item:last-child {
  border-bottom: 0;
}
#list_memo .list_item:last-child {
  border-bottom: 0;
}
#list_web .list_item > a { 
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: stretch;
}
#list_web .list_item .list_thumb {
  width: 150px;
  height: 150px; 
  grid-row: 1 / span 2;
  grid-column: 2; 
}
#list_web .list_item .list_info {
  flex-wrap: nowrap;
}
#list_web .list_summary {
  width: 100%; 
  padding-top: 10px;
  grid-row: 2; 
  display: flex;
  align-items: flex-end;
}
} #list_memo .list_summary > span {
   width: 100%;
    height: auto; 
    text-indent: 0; 
    visibility: visible; 
    -webkit-line-clamp: 1; 
    color: var(--color-gray); 
    }
#list_web .list_item .list_content {
  width: calc(100% - 165px);
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}
#list_web .list_item .list_info {
  grid-row: 1;
  width: 100%;
}
#list_web .list_item .list_title {
  -webkit-line-clamp: 1;
}
#list_web .list_thumb:has(.thumb) {
  margin-left: 25px;
}
/* - pagination - */
.pagination {
    width: 100%;
    padding: 5px 10px 5px 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.pagination .prev {
  padding-right: 5px;
}
.pagination .next {
  padding-left: 5px;
}
.pagination .numbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.pagination .numbox a {
  padding-left: 3px;
  padding-right: 3px;
}
.pagination .numbox a:hover > span,
.pagination > div[class*='pagination_'] a:hover {
    color: var(--color-red);
}
.pagination .numbox a > span.selected {
    color: var(--color-red);
    font-weight: var(--fw-boldEx);
}
.pagination > a[class*='no-more-'] {
    display: none !important;
}
/* - guestbook & comment - */
.comment {
  display: none;
}
body#tt-body-guestbook #content {
  border: 0;
  background: none;
}
/* ==================================================
   작성 영역 (방명록 / 댓글)
================================================== */
.gb_write textarea,
.co_write textarea {
  width: 100%;
  height: 150px;
  margin-top: 10px;    
  background-color: #fff;
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-bottom: 2px solid #dfdfdf;
  border-right: 2px solid #dfdfdf;
  padding: 0 5px;
  overflow: hidden;
}
/* ==================================================
   등록 버튼
================================================== */
.co_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.co_footer input[type="submit"] {
  position: relative;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 1px 1px #808080;
  background-color: var(--color-bgGray);
  border-radius: 2px;
  padding-top: 2px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: var(--fs-s);
}
.co_footer input[type="submit"]:hover {
  box-shadow: -1px -1px #bababa;
  top: 1px;
}
.secret_wrap {
  margin: 10px 0;
  font-size: 0.85em;
}
.secret_wrap input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.secret_wrap label {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
}
.secret_wrap label::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 2px;
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-bottom: 2px solid #dfdfdf;
  border-right: 2px solid #dfdfdf;
}
.secret_wrap label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 7px;
  height: 5px;
  border-left: 2px solid #808080;
  border-bottom: 2px solid #808080;
  transform: rotate(-45deg);
  opacity: 0;
}
.secret_wrap input:checked + label::after {
  opacity: 1;
}
/* ==================================================
   비로그인 입력폼 (이름 / 비밀번호)
================================================== */
.name_rp,
.pass_rp {
  width: 20%;
  height: 30px;
  padding: 0 5px;
  margin-bottom: 5px;
  font-size: var(--fs-s);
  background-color: #fff;
  border-radius: 2px;
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-bottom: 2px solid #dfdfdf;
  border-right: 2px solid #dfdfdf;
}
.name_rp {
  margin-right: 5px;
}
/* ==================================================
   방명록 & 댓글 리스트
================================================== */
.tistoryProfileLayerTrigger {
  display: none;
}
.gb_list {
  padding-top: 35px;
}
.gb_list ol,
.comment ol {
  padding: 0;
  list-style: none;
}
.gb_list ul,
.comment ul {
  list-style: none;
}
.comment ol li:not(:last-child),
.gb_list ol li:not(:last-child) {
  margin-bottom: 15px;
}
.gb_list ol > li,
.comment ol > li {
  padding: 15px;
  background-color: #fffbf6;
  border: 1px solid var(--color-line-gray);
  border-radius: 4px;
  box-shadow: 3px 3px 0px var(--color-bgGray);
  word-break: break-all;
}
.gb_list ul > li,
.comment ul > li {
  padding: 15px;
  margin-top: 15px;
  border-top: 1px dashed var(--color-line);
}
.rrp_line,
.rp_line {
  display: flex;
}
.rrp_line .name,
.rp_line .name {
  width: calc(100% - 95px);
  font-weight: var(--fw-bold);
}
.rrp_line .date,
.rp_line .date {
  font-size: var(--fs-def);
  font-weight: normal;
}
.rrp_line .date > a,
.rp_line .date > a {
  display: none;
}
.rp_desc {
  padding-top: 5px;
}
.rp_adminv {
  padding-top: 5px;
  opacity: .65;
}
/* ==================================================
   댓글 구분선
================================================== */
.rp_line {
  display: flex;
  width: 100%;
}

/* - article - */
/* 기본 레이아웃 */
article .article_container {
  word-wrap: break-word;
}
article .article_content {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 10px 10px;
}
article .article_content .content_style {
  width: 100%;
  padding-bottom: 15px;
}
/* 본문 상단 영역 */
article .article_info {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 15px;
}
article .article_titlebox {
  display: flex;
  gap: 5px;
  width: 100%;
  padding: 0 10px;
}
article .article_titlebox > h3 {
  flex: 1;
  text-align: left;
  position: relative;
  font-size: var(--fs-def);
  font-weight: normal;
}
article .article_info_footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px 15px 10px;
  margin-top: 5px;
  border-top: 1px solid var(--color-line);
}
article .article_info_footer > div {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--color-gray);
}
article .article_info_footer > div > span {
  padding-left: 3px;
}
article .article_date {
  padding-right: 10px;
}
article .article_category:hover {
  color: var(--color-point);
}
/* 관리자 버튼 */
article .article_admin_btn {
  position: absolute;
  z-index: 9;
  top: 3px;
  right: -10px;
  display: inline-flex;
  opacity: .65;
}
article .article_admin_btn > i {
  color: var(--color-midGray);
}
article .article_admin_btn.open > i {
  transform: rotate(90deg);
}
article .article_admin_wrap {
  position: relative;
}
article .article_admin_wrap > ul {
  position: absolute;
  top: 15px;
  right: 0;
  width: 100px;
  display: none;
  overflow: hidden;
  background: #fff;
  border-radius: var(--border-radius);
  border: var(--inline-line-width) solid var(--color-line);
}
article .article_admin_wrap > ul.open {
  display: block;
}
article .article_admin_wrap > ul > li > a {
  display: block;
  padding: 10px 15px;
  font-size: var(--fs-s);
  color: var(--color-gray);

}
article .article_admin_wrap > ul > li:hover > a {
  background-color: var(--color-bgGray);
}
@media (max-width: 1024px) {
  article .article_admin_btn {
    display: none;
  }
  article .article_title {
    padding-left: 0;
    padding-right: 0;
  }
}
/* 본문 하단 영역 */
.article_footer {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px 0;
}
@media (max-width: 660px) {
    .article_footer { padding-top: 15px; }
}
/* 댓글 버튼 */
article .article_content .article_button {
  position: absolute;
  right: 10px;
  bottom: 12px;
  z-index: 1;
}
article .article_content .article_button button {
  display: inline-flex;
  position: relative;
  align-items: center;
  outline: none;
  color: var(--color-def);
  border: 2px solid #fff;
  box-shadow: 1px 1px #808080;
  background-color: var(--color-bgGray);
  border-radius: 2px;
  padding-top: 2px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: var(--fs-s);
}
article .article_content .article_button button:hover,
article .article_content .article_button button.active {
    box-shadow: -1px -1px #bababa;
    top: 1px;
}
article .article_content .article_button button > span {
  padding-left: 3px;
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  font-style: italic;
  line-height: 1.8;
}
/* 네임카드 제거 */
div[data-tistory-react-app="Namecard"] {
    display: none;
}
/* 이전/다음 글 */
.article_page {
  width: 100%;
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
}
.article_page > div {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.article_page > div a {
  max-width: calc(100% - 35px);
  padding-left: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 25px;
}
.article_page > div span {
  font-size: var(--fs-xs);
  font-weight: var(--fw-boldEx);
  color: var(--color-point);
  line-height: 25px;
}
/* 신고, 공감 버튼 */
body :is(.container_postbtn) {
    width: 100%;
    display: flex;
    padding: 15px 0 0 0;
}
body :is(.container_postbtn)::after {
    content: none;
}
body :is(.container_postbtn .postbtn_like) {
    display: flex;
    align-items: center;
    float: unset;
    padding: unset;
    font-size: inherit !important;
}
body :is(.container_postbtn .postbtn_like .wrap_btn) {
    display: flex;
    align-items: center;
    float: unset;
}
body :is(.container_postbtn .btn_post) {
    height: unset;
    border: unset;
    border-radius: unset;
    padding: unset;
    font-size: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
}
body :is(.container_postbtn .btn_post.uoc-icon .uoc-icon) {
    display: flex;
    align-items: center;
}
body :is(.container_postbtn .btn_post .ico_like) {
    display: none;
    max-width: unset;
    width: unset;
    height: unset;
    margin: unset;
    background: none;
    text-indent: unset;
}
body :is(.container_postbtn .btn_post .txt_like) {
    margin: unset;
    font-size: var(--fs-s) !important;
    font-family: inherit !important;
    line-height: inherit !important;
}
body :is(.container_postbtn .btn_post .ico_share) {
    display: none;
    margin: unset;
    background: none;
    font-size: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
}
body :is(.container_postbtn .layer_post) {
    border: unset;
    box-shadow: unset;
    padding: unset;
    background: unset;
}
body :is(.container_postbtn .layer_post .ico_arrbt) {
    display: none;
}
body :is(.container_postbtn .layer_post .btn_mark) {
    outline: none !important;
    font-size: var(--fs-s) !important;
    font-family: inherit !important;
    color: inherit;
}
body :is(.container_postbtn .btn_post .ico_statistics) {
    display: none;
    width: unset;
    height: unset;
    margin: unset;
    background: none;
    text-indent: unset;
}
body :is(.btn_post, .btn_menu_toolbar) {
    outline: none !important;
}
body :is(.btn_post, .btn_menu_toolbar):focus-visible {
    outline: 2px !important;
}
body :is(.container_postbtn .postbtn_ccl) {
    display: none;
}
body :is(.container_postbtn .ico_postbtn.ico_etc) {
    display: none;
}
body :is(.container_postbtn .btn_menu_toolbar) {
    width: -moz-fit-content;
    width: fit-content;
    height: unset;
    margin: unset;
    border: unset;
    border-radius: unset;

    font-size: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
}
body :is(.container_postbtn .btn_menu_toolbar .txt_state) {
    display: none;
}
body :is(.container_postbtn .btn_menu_toolbar.following .ico_check_type1) {
    display: none;
}
body :is(.container_postbtn) {
    gap: 20px;
    order: 3;
    flex-grow: 1;
}
body :is(.container_postbtn .postbtn_like) { 
    gap: 10px;
    border: 0;
    background-color: transparent;
}
/* 좋아요 버튼 */
body :is(.container_postbtn .btn_post.uoc-icon >.uoc-icon)::before {
    font-family: var(--font-icon) !important;
    content: "\eabe";
    color: var(--color-gray);
    margin-right: 5px;
}
/* 공감 눌렀을 때 */
body :is(.container_postbtn .btn_post.uoc-icon >.uoc-icon.like_on)::before {
    content: "\f67c";
    margin-right: 5px;
    color: #f25858; 
    animation: animateHeart .3s linear forwards;
}
@keyframes animateHeart{
    0%{transform:scale(.2);}
    40%{transform:scale(1.2);}
    100%{transform:scale(1);}
}
/* 카운트 */
body :is(.container_postbtn .btn_post.uoc-icon .uoc-icon) {
    color: var(--color-gray);
}
/* 공유하기 버튼 */
body :is(.container_postbtn .postbtn_like .wrap_btn_share) {
    display: none;
}
body :is(.container_postbtn .btn_post.sns_btn.btn_share)::before {
    font-family: var(--font-icon) !important;
    content: '\eb21';
    color: var(--color-gray);
} 
/* 공유하기/더보기 레이어 */
body :is(.container_postbtn .bundle_post) {
    border: var(--inline-line-width) solid var(--color-line);
    border-radius: var(--border-radius);
    overflow: hidden;
}
/* 공유하기/더보기 레이어 아이템 */
body :is(.container_postbtn .layer_post .btn_mark) {
    padding: 10px 15px;
    background-color: #fff;
    color: var(--color-gray);
}
body :is(.container_postbtn .layer_post .btn_mark:hover) {
    background-color: var(--color-bgGray);
}
/* 통계 버튼 */
body :is(.container_postbtn .wrap_btn .btn_post:not(.btn_etc1, .btn_etc2, .sns_btn, .uoc-icon))::before {
    font-family: var(--font-icon) !important;
    content: '\ea59';
    color: var(--color-gray);
} 
/* 더보기 버튼 (관리자) */
body :is(.container_postbtn .btn_post.btn_etc1)::before {
    font-family: var(--font-icon) !important;
    content: '\eb20';
    color: var(--color-gray);
}
/* 더보기 버튼 (방문자) */
body :is(.container_postbtn .btn_post.btn_etc2)::before {
    font-family: var(--font-icon) !important;
    content: '\ea95';
    color: var(--color-gray);
}
/* 구독 버튼 */
body :is(.container_postbtn .btn_menu_toolbar) {
    display: none;
}
/* 본문 스타일 */
.article_content u {
  text-underline-position: under;

}
.article_content u span {
  background: transparent !important;
}
.article_content b {
  font-weight: var(--fw-bold);
}
/* ul, li, table */
.article_content ul,
.article_content ol {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 15px;
}
.article_content ul li::marker {
  font-size: calc(var(--fs-def) + 3px);
}
.article_content li:hover,
.article_content li:hover::marker {
  color: var(--color-point);
}
.article_content table img,
.article_content table figure {
  vertical-align: top;
  margin-bottom: 0 !important;
}
#tt-body-page blockquote,
blockquote[data-ke-style='box'], #tt-body-page blockquote[data-ke-style='box'], blockquote[data-ke-style='style3'], #tt-body-page blockquote[data-ke-style='style3'] {
  font-family: var(--font-def) !important;
  font-size: inherit;
}
/* 접은글 */
.btn-toggle-moreless,
.btn_more,
.btn_less {
  font-size: calc(var(--fs-def) - 1px) !important;
  margin: 0 !important;
  height: auto !important;
  outline: none !important;
}
/* 접은글 - 기본 상태 (버튼) */
div .btn-toggle-moreless,
div .btn_more {
  position: relative;
  padding: 2px 12px 0px 12px;
  font-family: var(--font-def) !important;
  font-size: var(--fs-s);
  border: 2px solid #fff;
  box-shadow: 1px 1px #808080;
  background-color: var(--color-bgGray);
  border-radius: 2px;
  margin-left: 5px;
  color: var(--color-def) !important;

}
div .btn-toggle-moreless:hover,
div .btn_more:hover {
  box-shadow: -1px -1px #bababa;
  top: 1px;
}
/* 아이콘 */
div .btn-toggle-moreless:before,
div .btn_more:before {
  content: '\ea5f';
  padding-right: 5px;
  font-family: var(--font-icon);
}
div.open .btn-toggle-moreless:before,
div.open .btn_less:before {
  content: '\ea62';
}
/* 접은글 - 열린 상태 (버튼) */
div.open .btn-toggle-moreless,
div.open .btn_less {
  box-shadow: -1px -1px #bababa;
  top: 1px;
}
div[data-ke-type='moreLess'] .btn-toggle-moreless {
  display: inline-block !important;
  margin: 5px 0 !important;
  font-family: var(--font-def);
}
/* 접은글 - 내용 박스 */
.moreless-content {
  font-family: var(--font-def);
  background-color: #fff;
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-bottom: 2px solid #dfdfdf;
  border-right: 2px solid #dfdfdf;
  padding: 10px !important;
  margin-bottom: 5px;
}
.moreless_content .btn_less:last-child {
  display: none;
}

/* - protected - */
.protected {
  padding: 45px 10px 55px 10px;
}
.protected_title { 
  display: inline-flex;
  align-items: center;
  padding-bottom: 18px;
}
.protected_title i {
  margin-right: 3px;
  font-size: var(--fs-m);
}
.protected_title a {
  font-size: var(--fs-def);
}
.protected_pw {
  display: flex;
  padding-top: 25px;
}
.protected_pw input[type="password"] {
  border: 0;
  background-color: #fff;
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-bottom: 2px solid #dfdfdf;
  border-right: 2px solid #dfdfdf;
  padding: 0 5px;
}
.protected_pw input[type="submit"] {
  position: relative;
  height: 40px;
  width: 45px;
  font-size: var(--fs-s);
  border: 2px solid #fff;
  box-shadow: 1px 1px #808080;
  background-color: var(--color-bgGray);
  border-radius: 2px;
  padding-top: 2px;
  margin-left: 5px;
}
.protected_pw input[type="submit"]:hover {
  box-shadow: -1px -1px #bababa;
  top: 1px;
}
/* 중앙 정렬 */
.protected {
  text-align: center;
}
.protected_pw {
  justify-content: center;
}

/* - notice - */
#tt-body-index :is(.article_content) {
    border-bottom: 0;
    margin-bottom: 0;
}
#tt-body-index :is(.container_postbtn) {
    display: none;
}
#tt-body-index :is(.content_style) {
    padding-bottom: 0;
}

/* - taglog - */
.taglog_list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.taglog_list > a {
    padding: 5px 10px;
    border: var(--inline-line-width) solid var(--color-line);
    border-radius: var(--border-radius);
    font-size: var(--fs-s);
    color: var(--color-def);
    display: inline-flex;
    align-items: center;
}
.taglog_list > a:hover {
    background-color: var(--color-bgGray);
}
.taglog_list > a::before {
    content: '#';
    margin-right: 2px;
    color: var(--color-def);
}
.taglog_content {
    padding: 15px;
}
.taglog_content .taglog_list > a {
    border-color: var(--color-point);
    border-width: var(--border-width);
    font-weight: var(--fw-bold);
    color: var(--color-point);
}
.taglog_content .taglog_list > a::before {
    color: var(--color-point);
}
.taglog_content .taglog_list > a:hover {
    background-color: var(--color-point);
}
/* article_taglog */
.article_taglog {
    width: 100%;
    padding: 0 5px 15px 5px;
    color: transparent;
} 
.article_taglog .taglog_list {
    column-gap: 0;
}

/* - tooltip - */
.tooltip {
    display: none;
    position: absolute;
    left: 50%; 
    transform: translateX(-50%);
    font-size: var(--fs-xs);
    background: #fff;
    border: var( --inline-line-width) solid var(--color-line);
    color: var(--color-point);
    border-radius: var(--border-radius);
    padding: 3px 10px;
    font-weight: var(--fw-bold);
    z-index: 9999;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- copy  ---------- */
/* ------------------------------------------------- */
/* copy */
.copy_list {
  padding-top: 25px;
  padding-bottom: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.copy_list li {
    display: inline-flex;
    align-items: center;
}
.copy_list li span {
  color: var(--color-point);
  font-weight: var(--fw-boldEx);
  text-transform: uppercase;
  font-size: 8px;
}
.copy_list li:not(:last-child)::after {
    content: '';
    display: block;
    margin: 3px;
    width: 3px;
    height: 3px;
    background-color: var(--color-point);
    border-radius: 50%;
    box-sizing: content-box;
}
.copy_list li.copy_icon {
  padding-right: 3px;
}
.copy_list li.copy_icon::after {
  display: none;
}
/* ------------------------------------------------- */


.another_category {
  padding: 5px !important;
  margin: 15px 0 0 0 !important;
  border-top: 1px dashed var(--color-line) !important;
  border-color: var(--color-line) !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: none !important;
} 
.another_category h4 {
  display: none !important;
}
 


/* ------------------------------------------------- */
/* ---------- 위젯 관련 수정 ---------- */
/* ------------------------------------------------- */
/* 날씨 - 커스텀 */
.rain_s { display: block !important }
.w_bg { background: linear-gradient(to right, #ffd600, #fff) }
#weather-wrapper {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
/* 날씨 - 추가 수정 */
#weather1,
#weather2 li {
  border-width: 2px !important;
}
#weather2 li:last-child,
#weather1 {
  border-right-color: #808080 !important;
}
#weather2 li {
  border-bottom-color: #808080 !important;
}
#weather1,
#weather2 ul {
  background-color: #fff;
}
#weather1 .sep {
  width: calc(100% - 45%);
  flex-direction: column;
}
#weather1 .d_rain,
#weather2 .w_temp,
#weather1 .day,
#weather1 .temp {
  font-size: 10px !important;
}
#weather2 .date,
#weather2 .w_temp {
  font-weight: normal;
}
#weather1 .temp {
  padding-left: 5px;
}
#weather1 img {
  width: 70px;
  margin: auto;
}
#weather1 ul.day {
  width: 100%;
  border: 0;
  margin: 0 !important;
  padding-left: 5px;
  padding-top: 5px;
}
#weather1 span.day {
  border: 0;
}
.weather-box {
  margin: 0 !important;
  padding-left: 5px;
  padding-bottom: 5px;
}
.weather-box > div {
  margin-top: 0 !important;
}
#weather1 .w_title {
  font-size: 18px;
  width: 85%;
  margin-left: 3px !important;
}
#weather1 .w_city {
  font-size: 10px;
  margin-top: 5px;
  margin-left: 5px;
}
.weather-c-name {
  font-size: 8px !important;
  text-decoration: none !important;
}
/* 온도표시되려면아래지우기 */
#weather1 .temp,
#weather2 .w_temp {
  display: none !important;
}
/* ------------------------------------------------- */

/* 이미지 설명(캡션) 폰트 크기 조절 */
.article_content figcaption {
  font-size: var(--fs-def);
  line-height: var(--line-height);
  color: var(--color-gray);
}

/* 파일 첨부 영역 폰트 크기 통일 */
.article_content figure.fileblock *,
.article_content .fileblock * {
  font-size: var(--fs-def) !important;
}