html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--fs-6);
  color: var(--color-main);
}
* {
  font-family: -apple-system, 'Sansation', 'Noto Sans KR', BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif !important;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.fa-classic,
.fa-regular,
.fa-solid,
.far,
.fas {
  font-family: "Font Awesome 6 Free", serif !important;
}
.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands", serif !important;
}
:root {
  --body-color: #222;
  --body-bg-color: white;
  --main-color: #ecb829;
  --main-bg-color: #f8f9fa;
  --main-border-color: #d8d8d8;
  --element-color: #666;
  --element-bg-color: #f6f6f6;
  --header-color: #222;
  --header-bg-color: rgba(255, 255, 255, 0.4);
  --header-bs-color: rgba(0, 0, 0, 0.08);
  --header-size: 2rem;
  --sidebar-color: #222;
  --sidebar-bg-color: #f4f4f6;
  --sidebar-category-size: 260px;
  --sidebar-list-size: 320px;
  --footer-color: #333;
  --footer-bg-color: #f1f1f1;
  --footer-size: 100px;
  --fs-title: 4rem;
  --fs-1: 2.5rem;
  --fs-2: 2.25rem;
  --fs-3: 2rem;
  --fs-4: 1.75rem;
  --fs-5: 1.5rem;
  --fs-6: 1.25rem;
  --fs-7: 1rem;
}
/* Functions */
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: var(--body-color);
  font-size: var(--fs-7);
  background-color: var(--body-bg-color);
  font-family: 'Sansation', 'Noto Sans KR', sans-serif;
  line-height: 1.25;
  -webkit-font-smoothing: subpixel-antialiased;
}
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
#root {
  height: 100%;
  width: 100%;
  background: white;
  overflow: hidden;
}
/* Header */
.header {
  display: flex;
  height: 0;
  overflow: hidden;
  transition: height 0.5s;
  background: var(--header-bg-color);
  color: var(--header-color);
  position: absolute;
  top: 0;
  width: 100%;
  align-items: center;
  padding: 0 1rem;
  gap: 0.5rem;
  font-weight: 600;
}
.header .option {
  flex: 1;
  text-align: center;
}
.header .timeline #time {
  display: block;
}
.header .timeline #time-mini {
  display: none;
}
.content {
  height: 100%;
  display: flex;
  transition: all 0.5s;
}
li.empty-list {
  height: 14rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
li.empty-list img {
  height: 8rem;
}
.controls {
  display: flex;
}
.controls button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: #7a7a7b;
  padding: 0.3rem;
}
.controls button:has(> img) {
  height: 2rem;
  display: inline-flex;
  padding: 0.2rem;
}
.controls button:hover {
  background: white;
  border-radius: 8px;
}
.controls button img {
  height: 100%;
}
/* Sidebar */
.sidebar {
  background: var(--sidebar-bg-color);
  height: 100%;
  display: flex;
  /* 사이드바 공통 스타일 */
  /* 카테고리 목록 사이드바 */
  /* 포스트 목록 사이드바 */
}
.sidebar > nav {
  background: var(--sidebar-bg-color);
  padding: 1rem 0 1rem 1rem;
  height: 100%;
  max-width: 100%;
  border-right: solid 1px var(--main-border-color);
}
.sidebar > nav button {
  background: transparent;
  border: none;
}
.sidebar > nav .nav-header {
  height: 2rem;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
.sidebar > nav .nav-body {
  margin-top: 1rem;
  height: calc(100% - 3rem);
  overflow-y: scroll;
  overflow-x: hidden;
}
.sidebar > nav .nav-body::-webkit-scrollbar {
  width: 1rem;
}
.sidebar > nav .nav-body::-webkit-scrollbar-thumb {
  border: solid 5px #f4f4f6;
}
.sidebar > nav .nav-body:hover::-webkit-scrollbar-thumb {
  background: #ddd;
}
.sidebar nav.nav-category {
  width: var(--sidebar-category-size);
  /* 프로필 영역 */
}
.sidebar nav.nav-category .nav-header {
  justify-content: space-between;
}
.sidebar nav.nav-category ul.mac-browser-icon {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: left;
}
.sidebar nav.nav-category ul.mac-browser-icon li {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
}
.sidebar nav.nav-category ul.mac-browser-icon .bg-red {
  background: #ff6057;
}
.sidebar nav.nav-category ul.mac-browser-icon .bg-yellow {
  background: #febc2e;
}
.sidebar nav.nav-category ul.mac-browser-icon .bg-green {
  background: #28c840;
}
.sidebar nav.nav-category ul.category_list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: left;
}
.sidebar nav.nav-category ul.category_list > li {
  width: 100%;
  position: relative;
  cursor: pointer;
}
.sidebar nav.nav-category ul.category_list > li > button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5rem 0.7rem;
  font-size: var(--fs-7);
  color: var(--main-color);
  transition: all 0.5s;
  z-index: 10;
  height: fit-content;
  opacity: 0.5;
}
.sidebar nav.nav-category ul.category_list > li > button:hover {
  background: transparent;
  opacity: 0.8;
}
.sidebar nav.nav-category ul.category_list > li > button[aria-expanded="true"] {
  transform: rotate(-90deg);
}
.sidebar nav.nav-category ul.category_list > li.selected .link-item,
.sidebar nav.nav-category ul.category_list > li.selected .link_tit {
  background: var(--main-color);
  color: white;
}
.sidebar nav.nav-category ul.category_list > li.selected .link-item::before,
.sidebar nav.nav-category ul.category_list > li.selected .link_tit::before {
  color: white;
}
.sidebar nav.nav-category ul .link_item,
.sidebar nav.nav-category ul .link_tit {
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  width: 100%;
  display: block;
}
.sidebar nav.nav-category ul .link_item::before,
.sidebar nav.nav-category ul .link_tit::before {
  font-family: "Font Awesome 6 Free", serif;
  content: "\e185";
  margin-right: 0.25rem;
  font-weight: 900;
  color: var(--main-color);
}
.sidebar nav.nav-category ul .link_item:hover,
.sidebar nav.nav-category ul .link_tit:hover {
  background: white;
}
.sidebar nav.nav-category ul .link_tit {
  margin-bottom: 0.5rem;
}
.sidebar nav.nav-category .collapse ul.sub_category_list {
  display: flex;
}
.sidebar nav.nav-category ul.sub_category_list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: left;
  display: none;
  margin-top: 0.5rem;
}
.sidebar nav.nav-category ul.sub_category_list li {
  width: 95%;
  padding: 0.5rem 0.7rem;
  background: white;
  border-radius: 6px;
  margin-left: 5%;
}
.sidebar nav.nav-category ul.sub_category_list li::marker {
  font-family: "Font Awesome 6 Free", serif;
  content: "\f0da";
  margin-right: 0.25rem;
  font-weight: 900;
}
.sidebar nav.nav-category ul.sub_category_list li::before {
  font-family: "Font Awesome 6 Free", serif;
  content: "\f004";
  margin-right: 0.25rem;
  font-weight: 900;
  color: hotpink;
}
.sidebar nav.nav-category .profile .info {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: left;
  width: 100%;
  background: white;
  padding: 0.5rem 0.8rem;
  border-radius: 3rem;
}
.sidebar nav.nav-category .profile .info > img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.sidebar nav.nav-category .profile .info > div {
  width: calc(100% - 40px - 0.5rem);
}
.sidebar nav.nav-category .profile .info > div .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: bold;
}
.sidebar nav.nav-category .profile .info > div .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sidebar nav.nav-category .profile .link {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  font-size: var(--fs-5);
  color: #777;
}
.sidebar nav.nav-category .profile .link li:hover {
  color: black;
}
.sidebar nav.nav-note {
  width: var(--sidebar-list-size);
}
.sidebar nav.nav-note .search {
  display: flex;
  padding: 0.6rem 0.8rem;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.sidebar nav.nav-note .search input {
  font-size: var(--fs-7);
  background: none;
  border: none;
  outline: none;
  flex: 1;
}
.sidebar nav.nav-note .search button {
  font-size: var(--fs-7);
  padding: 0;
}
.sidebar nav.nav-note .search button:hover {
  background: none;
}
.sidebar nav.nav-note .article_list {
  background: white;
  border-radius: 8px;
  overflow: hidden;
}
.sidebar nav.nav-note .article_list .article_li {
  padding: 0.5rem 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sidebar nav.nav-note .article_list .article_li img {
  box-sizing: content-box;
}
.sidebar nav.nav-note .article_list .article_li:not(:last-child) {
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.sidebar nav.nav-note .article_list .article_li .title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs-7);
}
.sidebar nav.nav-note .article_list .article_li .date {
  font-size: var(--fs-7);
  color: #888;
}
.sidebar nav.nav-note .article_list .article_li:hover {
  background: var(--main-color);
  border-bottom-color: transparent;
  color: white;
}
.sidebar nav.nav-note .article_list .article_li:hover .date {
  color: rgba(255, 255, 255, 0.5);
}
.sidebar[data-menu-state="close"] .nav-note {
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: none;
}
.sidebar .sidebar-element {
  margin-top: 1rem;
  width: 100%;
  word-break: break-all;
}
.sidebar .sidebar-element:first-child {
  margin-top: 0;
}
.sidebar .sidebar-element .sidebar-title {
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.sidebar .sidebar-element .count {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: left;
  margin-top: 1rem;
}
ul.tag_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: left;
  font-size: 90%;
}
ul.tag_list li {
  padding: 0.3rem 0.4rem;
  background: white;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
}
ul.tag_list li a::before {
  font-family: "Font Awesome 6 Free", serif;
  content: "\23";
  margin-right: 0.25rem;
  font-weight: 900;
}
/* Section */
.section {
  flex: 1;
  padding: 3rem 5%;
  overflow: auto;
  box-sizing: border-box;
  position: relative;
}
.section::-webkit-scrollbar {
  width: 6px;
}
.section:hover::-webkit-scrollbar-thumb {
  background: black;
}
.section .section-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  max-height: fit-content;
}
.section .section-control {
  position: absolute;
  top: 0.5rem;
}
.section .section-control button {
  font-size: var(--fs-7);
  font-weight: 600;
  padding: 0.5rem 0;
}
.section .section-title {
  font-weight: 700;
}
.section .section-header {
  margin-bottom: 1rem;
}
/* Common */
.pc {
  display: block;
}
.tablet {
  display: none;
}
.mobile {
  display: none;
}
.post-list {
  border-top: solid 1px var(--sidebar-bg-color);
  max-height: fit-content;
}
.post-list:nth-child(1) {
  border: none;
}
.post-list:has(> .post-page) {
  border-top: none;
}
.post-list .post.post-protected {
  height: 20rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.post-list .post > a {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
  justify-content: left;
  border-bottom: solid 1px var(--sidebar-bg-color);
  height: 100%;
  padding: 1rem 0;
}
.post-list .post .thumbnail {
  border: solid 1px var(--main-border-color);
  width: 250px;
  border-radius: 8px;
  height: 100%;
  overflow: hidden;
}
.post-list .post .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-list .post .post-info {
  flex: 1;
}
.post-list .post .post-title {
  font-weight: 600;
}
.post-list .post .post-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-height: 3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  font-size: var(--fs-7);
}
/* 방명록 */
.guest-container .guest-info {
  display: flex;
  gap: 0.5rem;
  width: fit-content;
  padding: 1rem;
}
/* Tistory */
.menu_toolbar {
  top: 1rem !important;
  right: 2rem !important;
}
.my_edit .layer_edit.layer_open {
  display: inline-table;
}
.post-page .post-header {
  margin: 1rem 0 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #ebebeb;
}
.post-page .post-header .category {
  display: inline-block;
  margin-bottom: 16px;
  padding-top: 5px;
  border-bottom: 1px solid #a3a3a3;
  font-size: 0.875em;
  color: #808080;
}
.post-page .post-content ul,
.post-page .post-content ol {
  padding-left: 1rem;
}
.post-page .container_postbtn {
  padding: 2rem 0 1rem;
}
.post-page .another_category {
  padding: 1.5rem 1rem;
}
.post-page .tt_box_namecard {
  min-height: 10rem;
  margin: 1.5rem 0;
}
#tt-body-page blockquote[data-ke-style="style2"] {
  margin: 1rem 0;
  border-left: solid 4px var(--element-color);
  padding: 1rem;
  background: var(--element-bg-color);
}
#tt-body-page h2[data-ke-size] {
  font-size: 1.62em;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: solid 3px;
  width: fit-content;
}
#tt-body-page figure[data-ke-type='opengraph'] .og-image {
  border: none;
}
#tt-body-page figure[data-ke-type='opengraph'] a {
  background: #F7F7F7;
  border: 1px solid #F7F7F7;
}
/*
  Sub Page
*/
#tt-body-page button[data-action="nav-menu-toggle"],
#tt-body-guestbook button[data-action="nav-menu-toggle"],
#tt-body-tag button[data-action="nav-menu-toggle"] {
  display: none;
}
#tt-body-page .nav-note,
#tt-body-guestbook .nav-note,
#tt-body-tag .nav-note {
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: none;
}
/* iPad Pro */
@media (max-width: 1366px) {
  .header {
    height: var(--header-size);
    border-bottom: solid 1px var(--main-border-color);
  }
  .nav-note {
    position: fixed;
    left: var(--sidebar-category-size);
    height: calc(100% - var(--header-size)) !important;
    z-index: 10;
  }
  .menu_toolbar {
    top: 3rem !important;
  }
  .content {
    margin-top: var(--header-size);
    height: calc(100% - var(--header-size));
  }
  .pc {
    display: none;
  }
  .tablet {
    display: block;
  }
  .mobile {
    display: none;
  }
  .post-list .post {
    height: 12rem;
  }
  .post-list .post .thumbnail {
    width: 12rem;
  }
}
@media (max-width: 769px) {
  .sidebar {
    width: 0;
    overflow: hidden;
  }
  .sidebar[data-state="open"] {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    position: fixed;
    z-index: 10;
    top: 0;
    overflow-x: auto;
  }
  .sidebar .nav-note {
    position: relative;
    height: 100% !important;
    left: 0;
  }
  .mobile {
    display: block;
  }
  .post-list .post {
    height: fit-content;
  }
  .post-list .post a {
    flex-direction: column;
  }
  .post-list .post .thumbnail {
    width: 100%;
    height: 15rem;
  }
}
/* Mobile */
@media (max-width: 480px) {
  .pc {
    display: none;
  }
  .tablet {
    display: none;
  }
  .mobile {
    display: block;
  }
  .header .timeline #time {
    display: none;
  }
  .header .timeline #time-mini {
    display: block;
  }
  .post-page .post-header {
    margin: 1rem 0 3rem;
    padding-bottom: 2rem;
  }
  /*
    Sub Page
  */
  #tt-body-page,
  #tt-body-guestbook,
  #tt-body-tag {
    --sidebar-category-size: 100%;
  }
}
/* Bootstrap */
.collapse:not(.show) {
  display: none !important;
}
.pagination {
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}
.pagination a {
  height: 2rem;
  width: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
}
.pagination a.prev,
.pagination a.next {
  opacity: 0.5;
  background: transparent;
}
.pagination a.prev:not(.no-more-prev):hover,
.pagination a.next:not(.no-more-next):hover {
  opacity: 1;
}
.pagination a:has(> .selected) {
  background: rgba(0, 0, 0, 0.8);
  color: white;
}
.pagination a:not(.prev):not(.next):not(:has(> .selected)):hover {
  background: var(--main-color);
  color: white;
}
/*# sourceMappingURL=style.css.map */