@charset 'UTF-8';

/* ********************** */
/* **** Global reset **** */
/* ********************** */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root[data-theme='light'] [data-mode='dark'],
:root[data-theme='dark'] [data-mode='light'] {
  display: none !important;
}

a:link,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

ol,
ul,
li {
  list-style: none;
}

button {
  color: inherit;
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.article-img__border > img {
  border-radius: var(--round);
}

p {
  font-size: var(--font-size);
}

pre {
  margin-bottom: 12px;
  font-family: inherit !important;
  white-space: unset !important;
  overflow: hidden;
  border-radius: var(--round) !important;
}

svg {
  height: 16px;
  display: block;
  color: var(--color-font);
}

input,
textarea {
  color: inherit;
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
  resize: none;
}

.tistoryProfileLayerTrigger,
.another_category,
.container_postbtn,
.postbtn_ccl,
.uoc-count,
.ico_postbtn {
  display: none !important;
}

::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar-thumb {
  height: 10%;
  background-color: var(--color-primary);
  border-radius: 100px;
  border: 6px solid transparent;
  background-clip: padding-box;
}

::-webkit-scrollbar-track {
  background-color: var(--color-bg);
}

.menu-btn--more-wrap::-webkit-scrollbar,
.menu-btn--1::-webkit-scrollbar,
.menu-btn--2::-webkit-scrollbar,
.sidebar::-webkit-scrollbar,
.category::-webkit-scrollbar,
.notify-content-wrap::-webkit-scrollbar,
.article-tag-wrap::-webkit-scrollbar,
.comment::-webkit-scrollbar,
.comment-form::-webkit-scrollbar {
  display: none;
}

::selection {
  color: var(--color-select-font);
  background-color: var(--color-select-bg);
}

iframe {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  border: none;
}

iframe[width='560'] {
  aspect-ratio: 560 / 315;
}
/* ********************** */
/*





*/
/* **************** */
/* **** Preset **** */
/* **************** */
.hidden {
  display: none !important;
}

.smooth-scroll,
.item {
  transition: transform 1.4s, opacity 1.4s;
}

.smooth-scroll--hidden {
  opacity: 0;
  transform: translateY(145px);
}

.item--hidden {
  opacity: 0;
  transform: translateY(65px);
}
/* **************** */
/*





*/
/* **************** */
/* **** Layout **** */
/* **************** */
body {
  color: var(--color-font);
  font-size: var(--font-size);
  font-weight: 400;
  font-family: var(--font-family);
  line-height: 1;
  background-color: var(--color-bg);
}

.wrap {
  max-width: 92%;
  display: grid;
  grid-template-columns: var(--sidebar-width) var(--content-width);
  justify-content: center;
  gap: 56px;
  margin: 120px auto;
  position: relative;
}

.sidebar--right__available .wrap {
  grid-template-columns: var(--sidebar-width) var(--content-width) var(
      --sidebar-width
    );
}

.header--display .wrap {
  margin: 80px auto;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 36px;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.header--display .main {
  grid-row: 2 / 3;
}

.sidebar--left {
  grid-column: 1 / 2;
}

.sidebar--right {
  display: none;
  grid-column: 3 / 4;
}

.sidebar--right__available .sidebar--right {
  display: block;
}

.bg-img-wrap {
  display: none;
}

.bg-img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.header--display .bg-img-wrap {
  display: block;
  grid-column: 1 / -1;
  aspect-ratio: 3.5 / 1;
  border-radius: var(--round);
  overflow: hidden;
}
/* **************** */
/*





*/
/* **************** */
/* **** Loader **** */
/* **************** */
.loader {
  display: none;
}

.loader.loader--display {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--color-bg);
  transition: all 0.75s;
  z-index: 10000;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-item,
.loader-item::before,
.loader-item::after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation-fill-mode: both;
  animation: loader 2s infinite ease-in-out;
}

.loader-item {
  color: var(--color-primary);
  font-size: 10px;
  position: fixed;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.1s;
}

.loader-item::before,
.loader-item::after {
  content: '';
  position: absolute;
  top: 0;
}

.loader-item::before {
  left: -24px;
  animation-delay: -0.2s;
}

.loader-item::after {
  left: 24px;
}

@keyframes loader {
  0%,
  80%,
  100% {
    box-shadow: 0 40px 0 -20px;
  }

  40% {
    box-shadow: 0 40px 0 0;
  }
}
/* **************** */
/*





*/
/* ******************* */
/* **** Navigator **** */
/* ******************* */
.nav {
  display: grid;
  grid-template-columns: 36px 36px 1fr 36px 36px;
  align-items: center;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: max-content;
  gap: 12px;
  padding: 12px 10px;
  border-top: 6px solid var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-bg);
  z-index: 10001;
}

.nav-item {
  justify-self: center;
}

.nav-home {
  display: inline-block;
}

.nav-item svg {
  transition: color var(--duration);
}

.nav-item svg:hover {
  color: var(--color-primary);
}

.nav-address {
  padding: 10px 16px;
  font-size: var(--font-size-s);
  font-weight: 600;
  border: 1px solid var(--color-border);
  border-radius: var(--round-xl);
  background-color: var(--color-wrap-sub);
  transition: border-color var(--duration);
}

.nav-address:hover {
  border-color: var(--color-primary);
}

.nav-address > span {
  display: -webkit-box;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: pre-wrap;
  line-height: 1.4;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nav-top-btn {
  grid-column: 5 / 6;
}
/* ******************* */
/*





*/
/* ********************* */
/* **** Menu button **** */
/* ********************* */
.sidebar-single,
.sidebar-single--2,
.sidebar-btn-wrap {
  display: none;
  position: relative;
}

.sidebar-btn {
  margin-left: auto;
}

.sidebar-btn > svg,
.sidebar-single > svg,
.sidebar-single--2 > svg {
  transition: color var(--duration);
}

.sidebar-btn > svg:hover,
.sidebar-single > svg:hover,
.sidebar-single--2 > svg:hover {
  color: var(--color-primary);
}

.sidebar-btn--1,
.sidebar-btn--2 {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--round);
  background-color: var(--color-bg);
  transition: all var(--duration);
}

.sidebar-btn--1 svg,
.sidebar-btn--2 svg {
  font-size: 12px;
}

.sidebar-btn:hover,
.sidebar-btn--1:hover,
.sidebar-btn--2:hover {
  border-color: var(--color-primary);
}

.sidebar-btn--more-wrap {
  height: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  top: calc(100% + 6px);
  right: 0%;
  visibility: hidden;
  transition: all var(--duration);
}

.sidebar-single {
  display: none;
}
/* ********************* */
/*





*/
/* *************** */
/* **** Cover **** */
/* *************** */
.cover {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.cover-title {
  margin-bottom: 24px;
  font-size: var(--font-size-xl);
  font-weight: 700;
}

.cover-title:empty {
  display: none;
}
/* *************** */
/*





*/
/* ********************* */
/* **** Cover image **** */
/* ********************* */
.image-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-list img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 2 / 1;
  border-radius: var(--round);
}
/* ********************* */
/*





*/
/* ********************** */
/* **** Cover notify **** */
/* ********************** */
.notify-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.notify-title-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px dotted var(--color-border);
  transition: all var(--duration);
}

.notify-title {
  text-align: left;
  font-weight: 600;
  transition: all var(--duration);
}

.notify-icon svg {
  height: 14px;
  transform: rotate(0);
  transition: all var(--duration);
}

.notify-item.active .notify-title-wrap {
  border-color: var(--color-primary);
}

.notify-item.active .notify-title {
  color: var(--color-primary);
}

.notify-item.active .notify-icon svg {
  color: var(--color-primary);
  transform: rotate(180deg);
}

.notify-content-wrap {
  height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: height var(--duration);
}

.notify-content {
  padding: 20px 0;
  line-height: 1.7;
  border-bottom: 1px dotted var(--color-border);
}

.notify-content a:link:not(:has(img)),
.notify-content a:visited:not(:has(img)) {
  position: relative;
  color: var(--color-primary);
  font-weight: 700;
}

.notify-content a:link:not(:has(img))::before,
.notify-content a:visited:not(:has(img))::before {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all var(--duration);
  background-color: var(--color-primary);
}

.notify-content a:hover:not(:has(img))::before,
.notify-content a:active::before {
  width: 100%;
}
/* *************** */
/*





*/
/* ******************** */
/* **** Cover card **** */
/* ******************** */
.cover-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cover-card-list li {
  min-height: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--round);
  transition: all var(--duration);
}

.cover-card-list li:hover {
  border-color: var(--color-primary);
}

.cover-card-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.cover-card-item img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: cover;
  border-radius: var(--round);
}

.cover-card-title {
  padding-bottom: 12px;
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
  transition: all var(--duration);
}

.cover-card-list li:hover .cover-card-title {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.cover-card-title > span {
  display: -webkit-box;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: pre-wrap;
  line-height: 1.4;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* ******************** */
/*





*/
/* ******************** */
/* **** Cover link **** */
/* ******************** */
.cover-link-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cover-link-list a {
  min-height: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--round);
  transition: all var(--duration);
}

.cover-link-list a:hover,
.cover-link-list a:active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.cover-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cover-link-img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: cover;
  border-radius: var(--round);
}

.cover-link-title {
  display: -webkit-box;
  font-weight: 600;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: pre-wrap;
  line-height: 1.4;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* ******************* */
/*





*/
/* *********************** */
/* **** Cover article **** */
/* *********************** */
.cover-article-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.cover-article-title-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cover-article-date {
  flex: 0 0 auto;
  display: -webkit-box;
  margin-left: auto;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: pre-wrap;
  line-height: 1.4;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cover-article-date {
  font-size: var(--font-size-s);
}

.cover-article-title-wrap {
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px dotted var(--color-border);
}

.cover-article-title {
  line-height: 1.4;
  transition: all var(--duration);
  font-size: var(--font-size-xl);
  font-weight: 700;
}

.cover-article-title:hover {
  color: var(--color-primary);
}

.cover-article-img-wrap {
  display: none;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 2px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
}

.cover-article-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.cover-article-content {
  padding: 20px 6px;
  line-height: 1.7;
  border-bottom: 1px dotted var(--color-border);
}

.cover-article-content a:link:not(:has(img)),
.cover-article-content a:visited:not(:has(img)) {
  position: relative;
  color: var(--color-primary);
  font-weight: 700;
}

.cover-article-content a:link:not(:has(img))::before,
.cover-article-content a:visited:not(:has(img))::before {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all var(--duration);
  background-color: var(--color-primary);
}

.cover-article-content a:hover:not(:has(img))::before,
.cover-article-content a:active::before {
  width: 100%;
}
/* *********************** */
/*





*/
/* *********************** */
/* **** Cover message **** */
/* *********************** */
.message-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.message-img-wrap {
  width: 36px;
  height: 36px;
  display: block;
  padding: 2px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  transition: all var(--duration);
  overflow: hidden;
}

.message-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.message-content:empty {
  display: none;
}

.message-content {
  max-width: 75%;
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 14px;
  color: var(--color-font-sub);
  line-height: 1.4;
  border-radius: 0 var(--round-msg) var(--round-msg) var(--round-msg);
  background-color: var(--color-primary);
}

.message-content a:link:not(:has(img)),
.message-content a:visited:not(:has(img)) {
  position: relative;
  font-weight: 700;
}

.message-content a:link:not(:has(img))::before,
.message-content a:visited:not(:has(img))::before {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all var(--duration);
  background-color: var(--color-font-sub);
}
/* *********************** */
/*





*/
/* ***************** */
/* **** Sidebar **** */
/* ***************** */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 95%;
}

.sidebar-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: var(--font-size-s);
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.sidebar-title--icon svg {
  height: 14px;
}
/* ***************** */
/*





*/
/* ************************* */
/* **** Sidebar profile **** */
/* ************************* */
.sidebar-profile {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.profile-wrap {
  /* display: flex; */
  align-items: center;
  gap: 8px;
}

.profile-img-wrap {
  width: 100px;
  height: 100px;
  display: block;
  padding: 4px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  transition: all var(--duration);
  overflow: hidden;
  margin-bottom:12px;
}

.profile-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.profile-title {
  margin-bottom: 5px;
  font-size: 15px;
  transition: all var(--duration);
}

.profile-title:hover,
.profile-title:active {
  color: var(--color-primary);
}

.profile-blogger,
.profile-desc {
  line-height: 1.4;
}

.profile-blogger {
  letter-spacing: 0.25px;
}

.profile-desc {
  font-size: 12px;
  line-height: 1.8;
  text-align: justify;
}

.profile-bg-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 5 / 2.25;
  border-radius: var(--round);
}
/* ********************** */
/*





*/
/* ********************** */
/* **** Sidebar menu **** */
/* ********************** */

.sidebar-menu {
  display: none;
}

.menu-list {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 4px;
}

.menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: var(--round);
  transition: all var(--duration);
}

.menu-item svg {
  transition: all var(--duration);
}

.menu-item:hover,
.menu-item:hover svg {
  color: var(--color-primary);
}

.menu-label {
  display: none;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.25px;
}
/* ********************** */
/*





*/
/* ********************** */
/* **** Sidebar link **** */
/* ********************** */
.link-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.link-item:link,
.link-item:visited {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-weight: 500;
  border-radius: var(--round);
  transition: all var(--duration);
}

.link-item svg {
  transition: all var(--duration);
}

.link-item:hover svg,
.link-item:active svg {
  color: var(--color-primary);
}

.link-label {
  transition: all var(--duration);
}

.link-item:hover .link-label {
  color: var(--color-primary);
}
/* ********************** */
/*





*/
/* **************** */
/* **** Search **** */
/* **************** */
.search-wrap {
  margin-top:-15px;
}

.search {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 4px;
  padding: 8px 6px;
  border: 1px solid var(--color-border);
  transition: all var(--duration);
}

.search.focus {
  border-color: var(--color-primary);
}

.search button {
  justify-self: center;
}

.search input {
  width: 100%;
}

.search input::placeholder {
  opacity: 0.5;
}

.search-btn svg {
  transition: all var(--duration);
}

.search-btn:hover svg {
  color: var(--color-primary);
}
/* **************** */
/*





*/
/* ****************** */
/* **** Category **** */
/* ****************** */
.menu-category {
  transition: height var(--duration);
}

.category_list a {
  display: inline-block;
  margin-bottom: 6px;
  padding: 10px 0;
  position: relative;
  font-weight: 500;
  border-radius: var(--round);
  transition: all var(--duration);
  overflow: hidden;
}

.category_list a:hover,
.category_list a:active {
  color: var(--color-primary);
  stroke: var(--color-primary);
}

.c_cnt {
  margin-left: 8px;
  font-size: var(--font-size-s);
  font-weight: 700;
}

.link_item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.link_item:last-child {
  border-bottom: none;
}

.sub--hidden .sub_category_list {
  display: none;
}

.sub_display--fold .sub_category_list {
  height: 0;
  overflow: hidden;
  transition: height var(--duration);
}

.category-new {
  margin-left: 6px;
  color: var(--color-primary);
  font-weight: 700;
}

.category-icon {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: -8px;
  font-size: var(--font-size-s);
  font-weight: 400;
  text-align: center;
  transform: translate(-15%, -50%);
  cursor: pointer;
}

.link_sub_item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
}

.link_sub_item::before {
  content: '┗';
  margin-right: 8px;
}

.link_tit {
  display: none;
  transition: all var(--duration);
}

.link_tit:hover,
.link_tit:active {
  color: var(--color-primary);
}

.link_tit--visible .link_tit {
  display: block;
  margin-bottom: 6px;
  padding: 10px 0;
  font-weight: 500;
}
/* ****************** */
/*





*/
/* ************************ */
/* **** Sidebar recent **** */
/* ************************ */
.recent-list li {
  overflow: hidden;
}

.recent-list li:last-child {
  border-bottom: none;
}

.recent-item:link,
.recent-item:visited {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  border-radius: var(--round);
  transition: all var(--duration);
}

.recent-title {
  display: -webkit-box;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: pre-wrap;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-item:hover,
.recent-item:active {
  color: var(--color-primary);
}

.recent-date {
  font-size: var(--font-size-s);
  font-weight: 700;
}
/* ************************ */
/*





*/
/* ****************************** */
/* **** Sidebar popular post **** */
/* ****************************** */
.popular-list li {
  overflow: hidden;
}

.popular-item:link,
.popular-item:visited {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-radius: var(--round);
}

.popular--rank {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-font-sub);
  font-size: 16px;
  font-weight: 700;
  background-color: var(--color-primary);
}

.popular-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.popular--title {
  display: -webkit-box;
  font-weight: 600;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: pre-wrap;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: all var(--duration);
  overflow: hidden;
}

.popular--date {
  font-size: var(--font-size-xs);
}

.popular-item:hover .popular--title,
.popular-item:active .popular--title {
  color: var(--color-primary);
}
/* ****************************** */
/*





*/
/* **************************** */
/* **** Sidebar status bar **** */
/* **************************** */
.status-list li {
  padding: 12px 0 18px 0;
}

.status {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.status-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.status-wrap--bg {
  border-radius: var(--round-xl);
  background-color: var(--color-border);
  overflow: hidden;
}

.status-wrap--percent {
  height: 8px;
  border-radius: var(--round-xl);
  background-color: var(--color-primary);
  transition: all var(--duration);
  overflow: hidden;
}

.status-label {
  display: -webkit-box;
  font-size: var(--font-size-s);
  font-weight: 600;
  text-transform: uppercase;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: pre-wrap;
  overflow: hidden;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.status-num {
  flex: 0 0 auto;
  font-size: var(--font-size-s);
}
/* *************************** */
/*




*/
/* ******************************* */
/* **** Sidebar visitor count **** */
/* ******************************* */
.counter-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.counter-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.counter-num {
  font-size: var(--font-size-s);
  font-weight: 700;
}

.counter-label {
  font-size: var(--font-size-s);
  font-weight: 500;
  text-transform: uppercase;
}
/* ********************************* */
/*





*/
/* ************************* */
/* **** Sidebar updates **** */
/* ************************* */
.update-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.update-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.update-date {
  display: -webkit-box;
  font-size: var(--font-size-s);
  font-weight: 700;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: pre-wrap;
  line-height: 1.2;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.update-content {
  display: -webkit-box;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: pre-wrap;
  line-height: 1.4;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: all var(--duration);
  overflow: hidden;
}

.update-content:hover,
.update-content:active {
  color: var(--color-primary);
}
/* ************************* */
/*





*/
/* ************************ */
/* **** Sidebar banner **** */
/* ************************ */
.banner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.banner-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 1;
}
/* ************************ */
/*





*/
/* ******************** */
/* **** Searchlist **** */
/* ******************** */
.searchlist {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.searchlist-category,
.searchlist-post {
  display: flex;
  align-items: center;
  gap: 4px;
}

.searchlist-label {
  font-weight: 700;
  transition: all var(--duration);
}

.searchlist-label:hover,
.searchlist-label:active {
  color: var(--color-primary);
}
/* ******************** */
/*





*/
/* ********************* */
/* **** Type - list **** */
/* ********************* */
#type-list .gallery,
#type-list .webzine,
#type-list .playlist,
#type-list .memo {
  display: none;
}

#type-list {
  display: flex;
  flex-direction: column;
}

#type-list li {
  border-bottom: 1px dotted var(--color-border);
}

#type-list .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 18px 0;
}

#type-list .list-title {
  display: -webkit-box;
  font-weight: 600;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: pre-wrap;
  overflow: hidden;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: all var(--duration);
}

#type-list .list-date {
  flex: 0 0 auto;
  font-size: var(--font-size-s);
}

#type-list .list:hover .list-title {
  color: var(--color-primary);
}
/* ********************* */
/*





*/
/* ************************ */
/* **** Type - Webzine **** */
/* ************************ */
#type-webzine .list,
#type-webzine .gallery,
#type-webzine .playlist,
#type-webzine .memo {
  display: none;
}

#type-webzine li {
  padding: 28px 0;
  border-bottom: 1px dotted var(--color-border);
}

#type-webzine .webzine {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  gap: 20px;
}

#type-webzine .webzine-thumb {
  overflow: hidden;
}

#type-webzine .webzine-thumb-img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: all var(--duration);
}

#type-webzine .webzine-thumb-img:hover {
  transform: scale(1.075);
}

#type-webzine .webzine-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

#type-webzine .webzine-title > span {
  display: -webkit-box;
  font-weight: 600;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: pre-wrap;
  line-height: 1.4;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: all var(--duration);
  overflow: hidden;
}

#type-webzine .webzine-summary > span {
  display: -webkit-box;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: pre-wrap;
  line-height: 1.4;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  transition: all var(--duration);
  overflow: hidden;
}

#type-webzine .webzine-title:hover > span {
  color: var(--color-primary);
}
/* ************************ */
/*





*/
/* ************************ */
/* **** Type - gallery **** */
/* ************************ */
#type-gallery .list,
#type-gallery .webzine,
#type-gallery .playlist,
#type-gallery .memo {
  display: none;
}

#type-gallery {
  display: grid;
  grid-template-columns: repeat(var(--gallery-cnt-pc), 1fr);
  gap: var(--gallery-margin);
}

#type-gallery li {
  min-height: 0;
}

#type-gallery .gallery-thumb {
  position: relative;
  aspect-ratio: var(--gallery-ratio);
  border-radius: var(--round);
  box-shadow: var(--shadow);
  transition: all var(--duration);
  overflow: hidden;
}

.cover-gallery #type-gallery {
  grid-template-columns: repeat(var(--cover-gallery-cnt-pc), 1fr);
}

#type-gallery .gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all var(--duration);
}

#type-gallery .gallery:hover .gallery-title {
  opacity: 1;
  visibility: visible;
}

#type-gallery .gallery:hover .gallery-thumb img {
  filter: blur(3px);
  transform: scale(1.05);
}

#type-gallery .gallery-title {
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  position: absolute;
  top: 0;
  left: 0;

  color: #fff;
  text-align: center;
  line-height: 1.4;

  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.25);
  transition: all var(--duration);
  z-index: 2;
}
/* ********************* */
/*





*/
/* ************************** */
/* **** Type -  playlist **** */
/* ************************** */
#type-playlist .list,
#type-playlist .webzine,
#type-playlist .gallery,
#type-playlist .memo {
  display: none;
}

#type-playlist {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

#type-playlist .playlist-title-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

#type-playlist .playlist-date {
  flex: 0 0 auto;
  display: -webkit-box;
  margin-left: auto;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: pre-wrap;
  line-height: 1.4;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#type-playlist .playlist-date {
  font-size: var(--font-size-s);
}

#type-playlist .playlist-title-wrap {
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px dotted var(--color-border);
}

#type-playlist .playlist-title {
  font-weight: 600;
  line-height: 1.4;
  transition: all var(--duration);
}

#type-playlist .playlist-title:hover {
  color: var(--color-primary);
}

#type-playlist .playlist-img-wrap {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 2px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
}

#type-playlist .playlist-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

#type-playlist .playlist-content {
  padding: 12px 0;
  border-bottom: 1px dotted var(--color-border);
}

#type-playlist .playlist-empty {
  padding: 20px 0;
  text-align: center;
}
/* ************************** */
/*





*/
/* ********************** */
/* **** Type -  memo **** */
/* ********************** */
#type-memo .list,
#type-memo .webzine,
#type-memo .gallery,
#type-memo .playlist {
  display: none;
}

#type-memo {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

#type-memo .memo-title-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

#type-memo .memo-date {
  flex: 0 0 auto;
  display: -webkit-box;
  margin-left: auto;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: pre-wrap;
  line-height: 1.4;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#type-memo .memo-date {
  font-size: var(--font-size-s);
}

#type-memo .memo-title-wrap {
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px dotted var(--color-border);
}

#type-memo .memo-title {
  font-weight: 600;
  line-height: 1.4;
  transition: all var(--duration);
}

#type-memo .memo-title:hover {
  color: var(--color-primary);
}

#type-memo .memo-img-wrap {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 2px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
}

#type-memo .memo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

#type-memo .memo-summary {
  padding: 20px 6px;
  line-height: 1.7;
  border-bottom: 1px dotted var(--color-border);
}
/* ************************** */
/*





*/
/* ***************** */
/* **** Article **** */
/* ***************** */
.article-notice {
  margin-bottom: 48px;
}

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.article-category-wrap,
.article-date-wrap,
.article-title-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-date-wrap {
  flex: 0 0 auto;
  margin-left: auto;
}

.article-category,
.article-date {
  flex: 0 0 auto;
  display: -webkit-box;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: pre-wrap;
  line-height: 1.4;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-category {
  font-weight: 600;
  transition: all var(--duration);
}

.article-category:hover,
.article-category:active {
  color: var(--color-primary);
}

.article-date {
  font-size: var(--font-size-s);
}

.article-title-wrap {
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px dotted var(--color-border);
}

.article-title {
  font-weight: 600;
  line-height: 1.4;
}

.article-img-wrap {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 2px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
}

.article-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.article-admin {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  padding: 16px 0;
}

.article-admin svg {
  height: 14px;
  transition: all var(--duration);
}

.article-admin a:hover svg,
.article-admin a:active svg {
  color: var(--color-primary);
}

.article-content {
  padding: 20px 0;
  line-height: 1.7;
}

.article-content a:link:not(:has(img)),
.article-content a:visited:not(:has(img)) {
  display: inline-block;
  position: relative;
  color: var(--color-primary);
  font-weight: 700;
}

.article-content a:link:not(:has(img))::before,
.article-content a:visited:not(:has(img))::before {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 2px;
  transition: all var(--duration);
  background-color: var(--color-primary);
}

.article-content a:hover:not(:has(img))::before,
.article-content a:active:not(:has(img))::before {
  width: 100%;
}

.article-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
}

.article-footer {
  border-bottom: 1px dotted var(--color-border);
}

.article-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all var(--duration);
}

.article-btn svg {
  transition: all var(--duration);
}

.article-btn:hover,
.article-btn:hover svg {
  color: var(--color-primary);
}

.article-btn--like:hover,
.article-btn--like:hover svg {
  color: var(--color-like);
}

.article-btn--like.active {
  color: var(--color-like);
}

.article-btn--like.active svg {
  color: var(--color-like);
  fill: var(--color-like);
}

.article-btn--tag {
  margin-left: auto;
}

.article-tag--empty {
  margin-top: 20px;
  text-align: center;
}

.article-tag-wrap {
  height: 0;
  visibility: hidden;
  transition: height var(--duration);
  overflow: hidden;
}

.article-tag {
  padding-top: 20px;
}

.article-tag-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.article-tag-list a::before {
  content: '#';
  margin-right: 2px;
  transition: color var(--duration);
}

.article-tag-list a {
  display: inline-block;
  padding: 8px 0;
  white-space: nowrap;
  transition: all var(--duration);
}

.article-tag-list a:hover::before,
.article-tag-list a:active::before {
  color: var(--color-primary);
}

.article-tag-list a:hover,
.article-tag-list a:active {
  color: var(--color-primary);
}
/* ***************** */
/*





*/
/* ***************************** */
/* **** Article - Protected **** */
/* ***************************** */
.article-content.protect {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px dotted var(--color-border);
}

.article-protect--input {
  padding: 6px;
  border: none;
  outline: none;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  transition: all var(--duration);
}

.article-protect--input:focus {
  border-color: var(--color-primary);
}

.article-protect-label {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  align-items: flex-start;
  gap: 8px;
  margin-top: 48px;
  margin-left: 40px;
}

.article-protect-label--text {
  font-size: var(--font-size-s);
  font-weight: 700;
  list-style-type: '✓';
}

.article-protect-label--text span {
  position: relative;
  left: 7px;
  font-weight: 400;
}
/* ***************************** */
/*





*/
/* ************************** */
/* **** Article elements **** */
/* ************************** */
/* --------- 코드블록 --------- */
pre[data-ke-type='codeblock'] code {
  display: block;
  padding: 12px 26px;
  font-size: var(--font-size);
  font-family: var(--font-family);
  border-radius: var(--round);
  line-height: 1.7;
  letter-spacing: 0.75px;
  white-space: pre-wrap;
}
/* -------------------------- */
/*



*/
/* ---------- 리스트 ---------- */
ul[data-ke-list-type='disc'],
ul[data-ke-list-type='circle'],
ol[data-ke-list-type='decimal'] {
  margin-left: 15px;
  color: var(--color-font) !important;
}

ul[data-ke-list-type='disc'] li,
ul[data-ke-list-type='circle'] li,
ol[data-ke-list-type='decimal'] li {
  padding-left: 2px;
  line-height: 2;
}

ul[data-ke-list-type='disc'] li {
  list-style-type: disc !important;
}

ul[data-ke-list-type='circle'] li {
  list-style-type: circle !important;
}

ol[data-ke-list-type='decimal'] li {
  list-style-type: decimal !important;
}
/* -------------------------- */
/*



*/
/* ---------- 이미지 ---------- */
.imageblock {
  margin: 16px auto !important;
}

.imagegridblock {
  margin: 0 !important;
}

.article-img__border .imageblock img,
.article-img__border .imagegridblock img {
  border-radius: var(--round) !important;
  transition: all var(--duration);
}

figure.imageblock,
#tt-body-page figure.imageblock {
  line-height: 0.7;
  margin-top: -5px;
}
/* -------------------------- */
/*



*/
/* ----------- 파일 ----------- */
.fileblock {
  width: max-content !important;
  max-width: 100% !important;
  border: 0 !important;
  margin: unset !important;
}

.fileblock a {
  height: unset !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px;
  border: 1px solid var(--color-border) !important;
  border-radius: var(--round) !important;
  transition: all var(--duration) !important;
}

.fileblock a::before {
  content: none !important;
}

.fileblock .image {
  width: unset !important;
  height: unset !important;
  margin: unset !important;
  position: unset !important;
  background: none !important;
}

.fileblock .image::before {
  content: '\f019';
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: var(--font-size-l);
  font-family: FontAwesome;
  border-right: 1px dashed var(--color-border);
  transition: border-color var(--duration);
}

.fileblock .desc {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 15px;
  position: unset !important;
  line-height: 1.4;
}

.fileblock .filename {
  height: unset !important;
  margin: unset !important;
  color: var(--color-font) !important;
  font-size: var(--font-size) !important;
  font-weight: 700;
}

.filename .name {
  display: -webkit-box !important;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  white-space: unset !important;
  overflow: hidden;
}

.fileblock .size {
  flex: 0 0 auto;
  margin: unset !important;
  padding-right: 20px;
  color: var(--color-primary) !important;
  font-size: var(--font-size-xs) !important;
  font-family: inherit !important;
  font-weight: 700;
}

.fileblock a::after {
  content: none !important;
  display: none !important;
}

.fileblock a:hover {
  border-color: var(--color-primary) !important;
}
/* --------------------------- */
/*



*/
/* ----------- 인용 ----------- */
#tt-body-page blockquote {
  color: var(--color-font) !important;
  font-size: var(--font-size) !important;
}

#tt-body-page blockquote[data-ke-style='style2'] {
  padding: 8px 15px !important;
  border-left: 2px solid var(--color-border);
  transition: all var(--duration);
}

#tt-body-page blockquote[data-ke-style='style2']:hover {
  border-left: 4px solid var(--color-primary);
}

#tt-body-page blockquote[data-ke-style='style3'] {
  margin: 10px auto;
  padding: 10px 15px !important;
  position: relative;
  border-radius: var(--round);
  border: 1px solid var(--color-border) !important;
  background: none !important;
  background-color: var(--color-wrap-sub) !important;
  transition: all var(--duration);
  overflow: hidden;
  z-index: 1;
}

#tt-body-page blockquote[data-ke-style='style3']:hover {
  border-color: var(--color-primary) !important;
}
/* --------------------------- */
/*



*/
/* ----------- 접은글 ----------- */
div[data-ke-type='moreLess'] {
  margin-top: 10px;
}

div[data-ke-type='moreLess'] .btn-toggle-moreless {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--color-font) !important;
  font-weight: 600 !important;
  font-family: var(--font-family) !important;
  font-size: var(--font-size) !important;
  background-color: none !important;
  transition: all var(--duration);
}

div[data-ke-type='moreLess'] .btn-toggle-moreless::before {
  content: '\f0fe';
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -14px;
  margin-right: 6px;
  color: var(--color-font);
  font-family: FontAwesome;
  transition: all var(--duration);
}

div[data-ke-type='moreLess'].open .btn-toggle-moreless::before {
  content: '\f146';
}

div[data-ke-type='moreLess'] .btn-toggle-moreless:hover {
  width: fit-content;
  color: var(--color-primary) !important;
}

div[data-ke-type='moreLess'] .btn-toggle-moreless:hover::before {
  width: 18px;
  color: var(--color-primary);
}

.moreless-content {
  padding: 16px;
  margin-top: 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--round);
  transition: all var(--duration);
}

.moreless-content:hover {
  border: 1px solid var(--color-primary);
}
/* --------------------------- */
/*



*/
/* ----------- 링크 ----------- */
figure[data-ke-type='opengraph'],
#tt-body-page figure[data-ke-type='opengraph'] {
  max-width: 100% !important;
  margin: 8px 0 0 0 !important;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--round);
  transition: all var(--duration);
  overflow: hidden;
}

figure[data-ke-type='opengraph']:hover,
#tt-body-page figure[data-ke-type='opengraph']:hover {
  border-color: var(--color-primary);
}

figure[data-ke-type='opengraph'] a,
#tt-body-page figure[data-ke-type='opengraph'] a {
  height: unset !important;
  display: flex !important;
  column-gap: 16px;
  align-items: center;
  border: none !important;
}

figure[data-ke-type='opengraph'] a::before,
#tt-body-page figure[data-ke-type='opengraph'] a::before {
  display: none !important;
}

figure[data-ke-type='opengraph'] div.og-image {
  width: 120px !important;
  height: 120px !important;
  display: block !important;
  position: unset !important;
  border: none !important;
  border-radius: var(--round);
  aspect-ratio: 1 / 1;
  background-size: cover !important;
  background-position: center !important;
}

figure[data-ke-type='opengraph'] a div.og-image::before,
#tt-body-page figure[data-ke-type='opengraph'] a div.og-image::before,
#tt-body-page
  .blogview_content
  figure[data-ke-type='opengraph']
  div.og-image::before {
  position: unset !important;
}

figure[data-ke-type='opengraph'] div.og-text {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  padding: unset !important;
  position: unset !important;
  left: unset !important;
  font-size: var(--font-size) !important;
  font-family: var(--font-family) !important;
  text-overflow: ellipsis;
  overflow: hidden;
}

figure[data-ke-type='opengraph'] div.og-text p.og-title,
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-title,
figure[data-ke-type='opengraph'] div.og-text p.og-desc,
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-desc,
figure[data-ke-type='opengraph'] div.og-text p.og-host,
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-host {
  color: var(--color-font);
  font-family: var(--font-family) !important;
}

figure[data-ke-type='opengraph'] div.og-text p.og-title,
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-title {
  font-size: var(--font-size) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  transition: all var(--duration);
}

figure[data-ke-type='opengraph'] div.og-text p.og-title,
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-title:hover {
  color: var(--color-primary);
}

figure[data-ke-type='opengraph'] div.og-text p.og-desc,
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-desc {
  font-size: var(--font-size-s);
  line-height: 1.4;
}

figure[data-ke-type='opengraph'] div.og-text p.og-host,
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-host {
  position: unset !important;
  font-size: var(--font-size-s);
}
/* --------------------------- */
/* ************************** */
/*





*/
/* ********************** */
/* **** Comment Form **** */
/* ********************** */
.comment .searchlist {
  margin-bottom: 36px;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--round);
  transition: all var(--duration);
}

.comment-form.focus {
  border-color: var(--color-primary);
}

.comment-input-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.comment-input {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-input input {
  color: var(--color-primary);
}

.comment-input input {
  width: 80px;
}

.comment-textarea {
  width: 100%;
  height: 36px;
  display: block;
  line-height: 1.7;
  transition: height var(--duration);
}

.comment-textarea:focus {
  height: 100px;
}

.comment-label svg {
  color: var(--color-primary);
}

.comment-controls {
  display: flex;
  align-items: center;
  align-self: flex-end;
  gap: 8px;
}

.comment-lock input {
  display: none;
}

.comment-lock label::before {
  content: '\f3c1';
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  color: var(--color-font);
  font-size: 14px;
  font-family: FontAwesome;
  transition: all var(--duration);
  cursor: pointer;
}

.comment-lock input:checked + label::before {
  content: '\f023';
  color: var(--color-primary);
}

.comment-submit svg {
  transition: all var(--duration);
}

.comment-submit:hover svg {
  color: var(--color-primary);
}
/* ********************** */
/*





*/
/* ***************** */
/* **** Comment **** */
/* ***************** */
.reply.comment {
  height: 0;
  visibility: hidden;
  transition: height var(--duration);
  overflow: hidden;
}

.comment-list {
  margin-top: 64px;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  margin-bottom: 36px;
  border-bottom: 1px dotted var(--color-border);
}

.comment-img-wrap {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 2px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
}

.comment-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.comment-name {
  font-weight: 600;
}

.commnet-text {
  padding: 0 6px;
  line-height: 1.7;
}

.comment-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  margin-top: 36px;
  border-bottom: 1px dotted var(--color-border);
}

.comment-date,
.comment-control a {
  font-size: var(--font-size-s);
}

.comment-item {
  margin-bottom: 56px;
}

.comment-item.reply {
  margin-bottom: 0;
}

.comment-item.reply > div {
  width: 95%;
  margin-top: 16px;
  margin-left: auto;
}
/* ***************** */
/*





*/
/* ************* */
/* **** Tag **** */
/* ************* */
.tag-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
}

.tag-item:link,
.tag-item:visited {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--round-xl);
  transition: all var(--duration);
}

.tag-item:hover,
.tag-item:active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
/* ************* */
/*





*/
/* **************** */
/* **** Paging **** */
/* **************** */
.paging {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0;
}

.paging-num-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.paging-num {
  font-size: var(--font-size-s);
  transition: all var(--duration);
}

.paging-num .selected {
  color: var(--color-primary);
  font-weight: 600;
  font-style: italic;
}

.paging-num:hover,
.paging-num:active {
  color: var(--color-primary);
}

.no-more-prev svg,
.no-more-next svg {
  color: #b4b4b4;
}
/* **************** */
/*





*/
/* *********************** */
/* **** Footer button **** */
/* *********************** */
.footer-btn {
  display: none;
  flex-direction: column;
  gap: 8px;
  position: fixed;
  bottom: 12px;
  right: 20px;
}

.footer-btn button {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background-color: var(--color-primary);
}

.footer-btn svg {
  height: 14px;
  color: var(--color-font-sub);
}
/* *********************** */
/*





*/
/* ******************* */
/* **** Copyright **** */
/* ******************* */
/* 수정 및 삭제 금지 */
.copyright:link,
.copyright:visited,
.copyright:hover,
.copyright:active {
  position: fixed;
  left: 15px;
  bottom: 15px;
  color: var(--color-primary);
  font-size: 12px;
  z-index: 10001;
}
/* ******************* */
/*






*/
/* ******************** */
/* **** Responsive **** */
/* ******************** */
@media screen and (max-width: 1220px) {
  .wrap,
  .sidebar--right__available .wrap {
    grid-template-columns: var(--sidebar-width) var(--content-width);
    column-gap: 42px;
  }

  .sidebar-btn-wrap {
    display: none;
  }

  .sidebar--right__available .sidebar-btn-wrap {
    display: block;
  }

  .sidebar-btn {
    display: none;
  }

  .sidebar-single--2 {
    display: block;
  }

  .sidebar--right {
    width: 480px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    border-right: 1px solid var(--color-border);
    background-color: var(--color-bg);
    transition: all var(--duration);
    transform: translateX(-101%);
    overflow-y: scroll;
    z-index: 999;
  }

  .sidebar-wrap.active {
    transform: translateX(0);
  }

  .sidebar--right .sidebar {
    margin: 0 auto;
    padding: 120px 24px;
  }
}

@media screen and (max-width: 935px) {
  .wrap,
  .sidebar--right__available .wrap {
    grid-template-columns: 1fr;
    column-gap: 0;
    margin: 120px auto;
  }

  .header--display .wrap {
    margin: 80px auto;
  }

  .bg-img {
    display: block;
    grid-column: 1 / -1;
    grid-row: 1 / 2;
  }

  .main {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
  }

  .header--display .main {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
  }

  .sidebar-single {
    display: block;
  }

  .sidebar-single--2 {
    display: none;
  }

  .sidebar--right__available .sidebar-single {
    display: none;
  }

  .sidebar--right__available .sidebar-btn-wrap {
    display: block;
  }

  .sidebar-btn {
    display: flex;
  }

  .sidebar-btn--1 {
    display: flex;
  }

  .sidebar-btn--more-wrap {
    height: 0;
    display: flex;
    visibility: hidden;
  }

  .sidebar-wrap {
    width: 480px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    border-right: 1px solid var(--color-border);
    background-color: var(--color-bg);
    transition: all var(--duration);
    transform: translateX(-101%);
    overflow-y: scroll;
    z-index: 999;
  }

  .sidebar {
    margin: 0 auto;
    padding: 120px 24px;
  }
}

@media screen and (max-width: 720px) {
  .header--display .bg-img-wrap {
    aspect-ratio: 3 / 1;
  }

  .nav {
    grid-template-columns: 36px 1fr 36px;
  }

  .nav-theme-btn,
  .nav-top-btn {
    display: none;
  }

  .sidebar-wrap {
    width: 80%;
  }

  .cover-page-list {
    grid-template-columns: 1fr;
  }

  .cover-gallery #type-gallery {
    grid-template-columns: repeat(var(--cover-gallery-cnt-mobile), 1fr);
  }

  .cover-card-list {
    grid-template-columns: 1fr;
  }

  .cover-link-list {
    grid-template-columns: repeat(2, 1fr);
  }

  #type-webzine .webzine {
    grid-template-columns: 1fr 1.5fr;
    gap: 14px;
  }

  #type-webzine .webzine-summary > span {
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }

  #type-gallery {
    grid-template-columns: repeat(var(--gallery-cnt-mobile), 1fr);
  }

  .footer-btn {
    display: flex;
  }
}
/* ******************** */
