@charset 'UTF-8';

[data-tistory-react-app='Namecard'] {
  display: none !important;
}

/* Start https://www.cursors-4u.com */ * {cursor: url(https://cur.cursors-4u.net/cursors/cur-9/cur817.cur), auto !important;} /* End https://www.cursors-4u.com */

/* ********************** */
/* **** Global reset **** */
/* ********************** */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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;
  outline: none;
  background: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
}

img {
  max-width: 100%;
  max-height: 100%;
}

textarea,
input {
  color: var(--color-font);
  font-size: var(--font-size);
  font-family: var(--font);
  border: none;
  border-radius: unset;
  outline: none;
  background: none;
}

textarea {
  width: 100%;
  resize: none;
}

svg {
  width: var(--svg-m);
  height: var(--svg-m);
  display: block;
  color: var(--color-font);
  transition: color var(--duration);
}

iframe {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  border: none;
  border-radius: var(--round-img);
}

iframe[width='560'] {
  aspect-ratio: 16 / 9;
}

.tistoryProfileLayerTrigger,
.another_category,
.container_postbtn,
.postbtn_ccl,
.uoc-count,
.ico_postbtn {
  display: none !important;
}

.modal::-webkit-scrollbar,
.status::-webkit-scrollbar,
.category::-webkit-scrollbar,
.sub_category_list::-webkit-scrollbar,
.article-tag-wrap::-webkit-scrollbar,
.comment::-webkit-scrollbar,
.comment-form::-webkit-scrollbar,
.comment-textarea::-webkit-scrollbar,
.comment-list::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar {
  width: 19px;
}

::-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);
}

::selection {
  color: var(--color-select-font);
  background-color: var(--color-select-bg);
}
/* ********************** */
/*





*/
/* **************** */
/* **** Preset **** */
/* **************** */
.hidden {
  display: none !important;
}

.divider {
  width: 100%;
  height: 1px;
  display: block;
  background-color: var(--color-border);
}

.element {
  padding: var(--element-padding);
  border-radius: var(--round-l);
  box-shadow: var(--box-shadow);
  background-color: var(--color-wrap);
}

.link--effect a:link,
.link--effect a:visited {
  display: inline-block;
  position: relative;
  color: var(--color-primary);
  font-weight: var(--text-bold);
}

.link--effect a:link:not(:has(img))::before,
.link--effect a:visited:not(:has(img))::before {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -4px;
  background-color: var(--color-primary);
  transition: all var(--duration);
}

.article-content.link--effect a:link:not(:has(img))::before,
.article-content.link--effect a:visited:not(:has(img))::before {
  bottom: 0;
}

.link--effect a:hover:not(:has(img))::before,
.link--effect a:active:not(:has(img))::before {
  width: 100%;
}

.line-clamp {
  display: -webkit-box;
  text-overflow: ellipsis;
  line-height: var(--line-h-m);
  word-break: break-all;
  white-space: pre-wrap;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line--1 {
  line-clamp: 1;
  -webkit-line-clamp: 1;
}

.line--3 {
  line-clamp: 3;
  -webkit-line-clamp: 3;
}

.line--6 {
  line-clamp: 6;
  -webkit-line-clamp: 6;
}

@keyframes lazyload {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes lazyload {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
/* **************** */
/*





*/
/* **************** */
/* **** Layout **** */
/* **************** */
body {
  color: var(--color-font);
  font-size: var(--font-size);
  font-weight: var(--text-regular);
  font-family: var(--font-family);
  line-height: 1;
  box-sizing: border-box;
  background-color: var(--color-bg);
  transition: background-color var(--duration);
}

body.lazyloading {
  animation: lazyload 2s;
}

.wrap {
  width: var(--content-width);
  display: flex;
  flex-direction: column;
  gap: var(--element-gap);
  margin: 84px auto;
}
/* **************** */
/*





*/
/* **************** */
/* **** Loader **** */
/* **************** */
.loader {
  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;
  }
}
/* **************** */
/*





*/
/* *************** */
/* **** Modal **** */
/* *************** */
.modal {
  width: 240px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: absolute;
  top: calc(100% - 12px);
  right: 0;
  padding: 24px;
  color: var(--color-icon);
  border-radius: var(--round-l);
  opacity: 0;
  visibility: hidden;
  background-color: var(--color-primary);
  transition: all var(--duration);
  overflow-x: hidden;
  overflow-y: scroll;
  z-index: 99;
}

.modal svg {
  color: var(--color-icon);
}

.modal.active {
  top: calc(100% + 12px);
  opacity: 1;
  visibility: visible;
}

:root[data-theme='light'] .modal {
  box-shadow: 0 0 16px rgba(17, 17, 26, 0.25);
}

:root[data-theme='dark'] .modal {
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.25);
}
/* *************** */
/*





*/
/* ***************** */
/* **** Profile **** */
/* ***************** */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
}

.header.center .profile-info {
  margin-bottom: -14px;
}

.header-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-img-wrap {
  width: 48px;
  height: 48px;
  display: block;
  flex: 0 0 auto;
  padding: 4px;
  border: var(--border-solid);
  border-radius: 50%;
  transition: all var(--duration);
  overflow: hidden;
}

.profile-img-wrap:hover {
  border-color: var(--color-primary);
}

.profile-img-box {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.profile-img-box:not(:has(.profile-img)) {
  background-color: var(--color-primary);
}

.profile-img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile-acc-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profile-acc--title:link,
.profile-acc--title:visited {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: var(--text-extra-bold);
  transition: all var(--duration);
}

.profile-acc--title:hover,
.profile-acc--title:active {
  color: var(--color-primary);
}

.profile-acc--verified svg {
  color: var(--color-verified);
  transition: all var(--duration);
}

.profile-info--desc {
  line-height: var(--line-h-m);
}
/* ***************** */
/*





*/
/* ************** */
/* **** Menu **** */
/* ************** */
.menu {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.menu-item {
  width: 32px;
  height: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all var(--duration);
}

.menu-item svg {
  transition: all var(--duration);
}

.menu-item:hover {
  background-color: var(--color-icon);
}

.menu-item:hover svg {
  color: var(--color-primary);
}

.btn-category {
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: var(--border-solid);
  border-color: transparent;
  border-radius: 50%;
  transition: all var(--duration);
}

.btn-category:hover {
  border-color: var(--color-primary);
}

.btn-category:hover svg {
  color: var(--color-primary);
  transform: rotate(90deg);
}

.btn-category svg {
  width: var(--svg-l);
  height: var(--svg-l);
  transition: all var(--duration);
}
/* ************** */
/*





*/
/* **************** */
/* **** Search **** */
/* **************** */
.search {
  height: 0;
  visibility: hidden;
  transition: height var(--duration);
  overflow: hidden;
}

.search.focus .btn-submit svg {
  color: var(--color-primary);
}

.search-wrap {
  width: 100%;
  display: inline-flex;
  align-items: center;
  border-radius: var(--round-xl);
  background-color: var(--color-wrap-sub);
}

.btn-search-submit {
  width: 36px;
  height: 36px;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
}

.btn-search-submit svg {
  color: var(--color-primary);
}

.search-input {
  display: inline-block;
  padding: 0 12px;
  overflow: hidden;
}
/* **************** */
/*





*/
/* ****************** */
/* **** Category **** */
/* ****************** */
/*
  .cate_main-wrap: 최상위 카테고리 코드 묶음
  .cate_item-wrap: 일반 카테고리 코드 묶음

  .cate_main--icon: 최상위 카테고리 아이콘
  .cate_item--icon: 일반 카테고리 아이콘

  .cate_main--title: 최상위 카테고리 타이틀 부분
  .cate_item--title: 일반 카테고리 타이틀 부분

  .cate_item--more: 더보기 버튼
  .cate_item--cnt: 카테고리 글 개수 (최상위 카테고리도 동일)
  .cate_item--new: 새 글 발행 표시

*/
.category_list a:link,
.category_list a:visited,
.link_tit {
  display: block;
  margin-bottom: 4px;
}

.cate_main-wrap,
.cate_item-wrap {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cate_main-wrap {
  border-radius: var(--round);
}

.cate_item-wrap > span:first-child {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: var(--round-xl);
  transition: all var(--duration);
}

.cate_main-wrap:hover,
.cate_item-wrap > span:first-child:hover {
  background-color: var(--color-wrap-sub);
}

.cate_item-wrap.cate_sub > span:first-child:hover {
  background-color: transparent;
}

.cate_main-wrap,
.cate_item-wrap span {
  transition: background-color var(--duration);
}

.cate_main--title > span:first-child {
  font-weight: var(--text-bold);
  transition: all var(--duration);
}

.cate_item--title {
  display: flex;
  align-items: center;
}

.cate_main-wrap:not(:has(.cate_main--icon)) .cate_main--title,
.cate_item-wrap > span:nth-child(1):not(:has(.cate_item--icon)) .cate_item--title {
  padding: 0 12px;
}

.cate_main-wrap:hover,
.cate_main-wrap:hover .cate_main--icon svg,
.cate_item-wrap > span:hover,
.cate_item-wrap > span:hover .cate_item--cnt,
.cate_item-wrap > span:hover svg,
.cate_item-wrap > span:hover .cate_item--new,
.cate_item-wrap > span:hover .cate_item--new svg {
  color: var(--color-primary);
}

.cate_main--icon,
.cate_item--icon {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
}

.cate_main--icon svg,
.cate_item--icon svg {
  width: var(--svg-s);
  height: var(--svg-s);
}

.cate_item--cnt {
  margin-left: 6px;
  font-size: var(--font-size-s);
  transition: all var(--duration);
}

.cate_item--new {
  margin-left: 4px;
  color: var(--color-icon);
  font-size: var(--font-size-s);
  font-weight: var(--text-bold);
  transition: all var(--duration);
}

.cate_item--new svg {
  width: var(--svg-s);
  height: var(--svg-s);
  color: var(--color-icon);
  transition: all var(--duration);
}

.cate_item--more {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--round-xl);
  transition: all var(--duration);
}

.cate_item--more:hover {
  background-color: var(--color-wrap-sub);
}

.cate_item--more svg {
  color: var(--color-icon);
  opacity: 0.5;
}

.cate_item--more:hover svg {
  color: var(--color-icon);
  opacity: 1;
}

.cate_item--more.more--active {
  background-color: var(--color-wrap-sub);
}

.cate_item--more svg {
  transition: all var(--duration);
}

.cate_item--more.more--active svg {
  transform: rotate(180deg);
  opacity: 1;
}

.cate_item--more.more--active svg {
  color: var(--color-primary);
}

.cate_item-wrap.cate_sub {
  position: relative;
}

.cate_item-wrap.cate_sub::before {
  content: '';
  width: 2px;
  height: calc(100% + 5px);
  position: absolute;
  left: calc(36px / 2);
  border-radius: var(--round);
  background-color: var(--color-border);
  transform: translateX(-50%);
}

.cate_item-wrap.cate_sub .cate_item--title {
  width: 100%;
  height: 100%;
  margin-left: 36px;
  padding: 0 12px;
  border-radius: var(--round-xl);
}

.cate_item-wrap.cate_sub .cate_item--title:hover {
  background-color: var(--color-wrap-sub);
}

.category-title--hidden .cate_main-wrap {
  display: none;
}

.sub--hidden .sub_category_list {
  display: none;
}

.sub_display--fold .sub_category_list {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: height var(--duration);
}
/* ****************** */
/*





*/
/* *************** */
/* **** Cover **** */
/* *************** */
.cover,
.cover-article-list {
  display: flex;
  flex-direction: column;
  gap: var(--element-gap);
}

.cover-title {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 18px;
  color: var(--color-icon);
  font-size: var(--font-size-l);
  font-weight: var(--text-bold);
  letter-spacing: 0.45px;
  border-radius: var(--round-xl);
  background-color: var(--color-primary);
}
/* *************** */
/*





*/
/* ************************* */
/* **** Cover - Article **** */
/* ************************* */
.cover-article--content {
  line-height: var(--line-h-m);
}

.cover-article--content.article-img__border img {
  margin: 12px 0;
  border-radius: var(--round-img);
  overflow: hidden;
}
/* ************************* */
/*





*/
/* ************************ */
/* **** Cover - Status **** */
/* ************************ */
.cover-status {
  width: 100%;
}

progress {
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--round-xl);
}

progress::-webkit-progress-bar {
  border-radius: var(--round-xl);
  background-color: var(--color-border);
}

progress::-webkit-progress-value {
  border-radius: var(--round-xl);
  background-color: var(--color-primary);
}

.progress-item {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 5fr 0.8fr;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
  padding: 8px 0;
}

.progress-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.progress-label {
  justify-self: start;
  text-transform: uppercase;
  font-weight: bold;
  font-size: var(--font-size-s);
}

.progress-num {
  min-width: 0;
  justify-self: end;
  font-size: var(--font-size-s);
}
/* ************************ */
/*





*/
/* ******************** */
/* **** Type reset **** */
/* ******************** */
.list,
.list-2,
.gallery,
.webzine,
.memo {
  display: none;
}
/* ******************** */
/*





*/
/* ********************* */
/* **** Type - List **** */
/* ********************* */
#list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#list .list {
  display: block;
}

#list .list-wrap {
  display: flex;
  background-color: var(--color-wrap);
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border: var(--border-solid);
  border-color: transparent;
  border-radius: var(--round-xl);
  box-shadow: var(--box-shadow);
  transition: all var(--duration);
}

#list .list-wrap:hover {
  border-color: var(--color-primary);
  box-shadow: 0px 0 12px 0px rgba(0, 0, 0, 0.075);
  transform: translateY(-3px);
}

#list .list-wrap:hover .list-title,
#list .list-wrap:hover .list-icon svg {
  color: var(--color-primary);
}

#list li:first-of-type .list-wrap {
  margin-top: 0;
}

#list .notice-wrap:last-child,
#list li:last-child .list-wrap {
  margin-bottom: 0;
}

#list .list-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: var(--text-bold);
  transition: all var(--duration);
}

#list .list-icon svg {
  width: var(--svg-s);
  height: var(--svg-s);
  transition: all var(--duration);
}

#list .list-date {
  flex: 0 0 auto;
  color: var(--color-font-sub);
  font-size: var(--font-size-s);
}
/* ********************* */
/*





*/
/* *********************** */
/* **** Type - List 2 **** */
/* *********************** */
#list-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

#list-2 .list-2 {
  display: block;
}

#list-2 .list-2-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: var(--border-solid);
  border-color: transparent;
  border-radius: var(--round-s);
  box-shadow: var(--box-shadow);
  background-color: var(--color-wrap);
  transition: all var(--duration);
}

#list-2 .list-2-wrap:hover {
  border-color: var(--color-primary);
  box-shadow: 0px 0 12px 0px rgba(0, 0, 0, 0.075);
  transform: translateY(-4px);
}

#list-2 .list-2-wrap:hover .list-2-title,
#list-2 .list-2-wrap:hover .list-2-icon svg {
  color: var(--color-primary);
}

#list-2 .list-2-thumb {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}

#list-2 .list-2-detail-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#list-2 .list-2-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: var(--text-bold);
  transition: all var(--duration);
}

#list-2 .list-2-icon svg {
  width: var(--svg-s);
  height: var(--svg-s);
  transition: all var(--duration);
}

#list-2 .list-2-date {
  color: var(--color-font-sub);
  font-size: var(--font-size-s);
}
/* *********************** */
/*





*/
/* ************************ */
/* **** Type - Gallery **** */
/* ************************ */
#gallery {
  display: grid;
  grid-template-columns: repeat(var(--gal-cnt-pc), 1fr);
  gap: var(--gal-margin);
  padding: 24px;
  border-radius: var(--round);
  box-shadow: var(--box-shadow);
  background-color: var(--color-wrap);
}

.cover #gallery {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: none;
}

#gallery li {
  min-height: 0;
  border: var(--border-solid);
  border-radius: var(--round-s);
  transition: all var(--duration);
  overflow: hidden;
}

#gallery li:hover {
  box-shadow: 0px 0 12px 0px rgba(0, 0, 0, 0.075);
  transform: translateY(-5px);
}

#gallery .gallery {
  display: block;
}

#gallery .gallery-thumb {
  position: relative;
  aspect-ratio: var(--gal-ratio);
  transition: all var(--duration);
  overflow: hidden;
}

#gallery .gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all var(--duration);
}

#gallery .gallery:hover .gallery-title {
  opacity: 1;
  visibility: visible;
}

#gallery .gallery:hover .gallery-thumb img {
  filter: blur(1px);
  z-index: 1;
}

#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: var(--line-h-m);

  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.2);
  transition: all var(--duration);
  z-index: 2;
}

#gallery .gallery-title span {
  line-height: var(--line-h-s);
}
/* ************************ */
/*





*/
/* ************************ */
/* **** Type - Webzine **** */
/* ************************ */
#webzine {
  display: grid;
  grid-template-columns: repeat(var(--webzine-cnt-pc), 1fr);
  gap: 12px;
}

#webzine .webzine {
  display: block;
}

#webzine .webzine-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border: var(--border-solid);
  border-color: transparent;
  border-radius: var(--round);
  box-shadow: var(--box-shadow);
  background-color: var(--color-wrap);
  transition: all var(--duration);
}

#webzine .webzine-wrap:hover {
  border-color: var(--color-primary);
  box-shadow: 0px 0 12px 0px rgba(0, 0, 0, 0.075);
  transform: translateY(-3px);
}

#webzine .webzine-wrap:hover .webzine-title,
#webzine .webzine-wrap:hover .webzine-icon svg {
  color: var(--color-primary);
}

#webzine .webzine-thumb-wrap {
  display: flex;
  justify-content: space-between;
}

#webzine .webzine-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--round-s);
}

#webzine .webzine-info {
  display: flex;
  flex-direction: column;
  gap: -2px;
}

#webzine .webzine-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: var(--text-bold);
  transition: all var(--duration);
}

#webzine .webzine-icon svg {
  width: var(--svg-s);
  height: var(--svg-s);
  transition: all var(--duration);
}

#webzine .webzine-date {
  color: var(--color-font-sub);
}

#webzine .webzine-date,
#webzine .webzine-summary {
  font-size: var(--font-size-s);
}
/* ************************ */
/*





*/
/* ********************* */
/* **** Type - Memo **** */
/* ********************* */
#memo {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#memo .memo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  border: var(--border-solid);
  border-color: transparent;
  border-radius: var(--round);
  box-shadow: var(--box-shadow);
  background-color: var(--color-wrap);
  transition: all var(--duration);
}

#memo .memo:hover {
  border-color: var(--color-primary);
  box-shadow: 0px 0 12px 0px rgba(0, 0, 0, 0.075);
  transform: translateY(-3px);
}

#memo .memo-date {
  margin-bottom: 18px;
  padding: 10px 16px;
  color: var(--color-icon);
  font-size: var(--font-size-s);
  font-weight: var(--text-bold);
  border-radius: var(--round-xl);
  background-color: var(--color-primary);
}

#memo .memo-title {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  font-weight: var(--text-bold);
  transition: all var(--duration);
}

#memo .memo-title:hover,
#memo .memo-title:hover svg {
  color: var(--color-primary);
}

#memo .memo-icon svg {
  width: var(--svg-s);
  height: var(--svg-s);
  transition: all var(--duration);
}

#memo .memo-summary {
  line-height: var(--line-h-s);
}

#memo .memo-summary:empty {
  display: none;
}
/* ********************* */
/*





*/
/* ***************** */
/* **** Article **** */
/* ***************** */
.article-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--element-gap);
}

.article-notice:not(:last-child) {
  margin-bottom: var(--element-gap);
}

.article-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-category:link,
.article-category:visited {
  align-self: flex-start;
  margin-bottom: 2px;
  padding: 8px 14px;
  color: var(--color-icon);
  font-size: var(--font-size-s);
  font-weight: var(--text-bold);
  border-radius: var(--round-xl);
  background-color: var(--color-primary);
}

.article-title {
  font-size: var(--font-size-l);
  font-weight: var(--text-extra-bold);
  line-height: var(--line-h-m);
}

.article-title a:link,
.article-title a:visited {
  transition: all var(--duration);
}

.article-title a:hover,
.article-title a:active {
  color: var(--color-primary);
}

.article-title-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-s);
}

.article-admin {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-admin a:link,
.article-admin a:visited {
  transition: all var(--duration);
}

.article-admin a:hover,
.article-admin a:active {
  color: var(--color-primary);
}

.article-content {
  margin: 36px 0;
  line-height: var(--line-h-m);
}

.article-footer {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border: var(--border-solid);
  border-radius: var(--round-xl);
  transition: all var(--duration);
}

.article-btn svg {
  transition: color var(--duration);
}

.article-btn:hover,
.article-btn:hover svg {
  color: var(--color-primary);
}

.article-btn:hover {
  border-color: var(--color-primary);
}

.article-btn.article-btn--like:hover {
  border-color: var(--color-like);
}

.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 {
  padding: 20px 0;
  text-align: center;
  line-height: var(--line-h-m);
}

.article-tag-wrap {
  height: 0;
  visibility: hidden;
  transition: height var(--duration);
  overflow: hidden;
}

.article-tag-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px 0;
  gap: 12px;
}

.article-tag-list a::before {
  content: '#';
  margin-right: 2px;
  transition: all var(--duration);
}

.article-tag-list a:link,
.article-tag-list a:visited {
  display: inline-block;
  padding: 10px 12px;
  white-space: nowrap;
  border-radius: var(--round-xl);
  box-shadow: var(--box-shadow);
  background-color: var(--color-wrap);
  transition: all var(--duration);
}

.article-tag-list a:hover::before,
.article-tag-list a:active::before {
  color: var(--color-icon);
}

.article-tag-list a:hover,
.article-tag-list a:active {
  color: var(--color-icon);
  background-color: var(--color-primary);
}
/* ***************** */
/*





*/
/* **************************** */
/* **** Article - Elements **** */
/* **************************** */
/* --------- 코드블록 --------- */
pre[data-ke-type='codeblock'] code {
  display: block;
  margin: 6px 0;
  padding: 12px 26px;
  font-size: var(--font-size);
  font-family: var(--font-family);
  border-radius: var(--round);
  line-height: var(--line-h-m);
  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'] {
  color: var(--color-font) !important;
}

ul[data-ke-list-type='disc'],
ul[data-ke-list-type='circle'],
ol[data-ke-list-type='decimal'] {
  margin-left: 18px;
}

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: var(--line-h-xl);
}

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;
}
/* -------------------------- */
/*



*/
/* ---------- 이미지 ---------- */
figure.imageblock,
#tt-body-page figure.imageblock,
figure.imagegridblock,
#tt-body-page figure.imagegridblock {
  margin-bottom: 6px !important;
  line-height: 0.7;
}

figure.imagegridblock .image-container {
  justify-content: center !important;
  gap: var(--gutter);
}

.article-img__border #tt-body-page figure.imageblock img,
.article-img__border figure.imageblock img,
.article-img__border figure.imagegridblock span img {
  border-radius: var(--round-img);
  overflow: hidden;
}

.article-img__border figure.imagegridblock .image-container {
  align-items: stretch !important;
}

.article-img__border figure.imagegridblock span img {
  height: 100%;
}

figure.imagegridblock .image-container > span {
  flex: 1 1 auto;
  margin-top: 0 !important;
}

figure figcaption {
  padding-top: 6px !important;
  font-size: var(--font-size) !important;
}
/* -------------------------- */
/*



*/
/* ----------- 파일 ----------- */
.fileblock {
  width: max-content !important;
  max-width: 100% !important;
  border: 0 !important;
  margin: 0 auto !important;
}

.fileblock a {
  height: unset !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px;
  border: none !important;
  border-radius: var(--round-xl) !important;
  background-color: var(--color-wrap-sub);
  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;
  transition: all var(--duration);
}

.fileblock .desc {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 15px;
  position: unset !important;
  line-height: 1.4;
  transition: all var(--duration);
}

.fileblock .filename {
  height: unset !important;
  margin: unset !important;
  color: var(--color-font) !important;
  font-size: var(--font-size) !important;
  font-weight: 700;
}

.filename .name {
  height: unset !important;
  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;
  transition: all var(--duration);
  overflow: hidden;
}

.fileblock .size {
  height: unset !important;
  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;
  transition: all var(--duration);
}

.fileblock a::after {
  content: none !important;
  display: none !important;
}

.fileblock a:hover,
.fileblock a:active {
  background-color: var(--color-primary) !important;
}

.fileblock a:hover .image::before,
.fileblock a:hover .desc,
.fileblock a:hover .filename,
.fileblock a:hover .name,
.fileblock a:hover .size {
  color: var(--color-icon) !important;
}
/* --------------------------- */
/*



*/
/* ----------- 인용 ----------- */
blockquote {
  color: var(--color-font) !important;
  font-size: var(--font-size) !important;
}

blockquote[data-ke-style='style2'] {
  padding: 8px 15px !important;
  border-left: 2px solid var(--color-border);
  transition: all var(--duration);
}

blockquote[data-ke-style='style2']:hover {
  border-color: var(--color-primary);
}

blockquote[data-ke-style='style3'] {
  margin: 10px auto;
  padding: 10px 15px !important;
  position: relative;
  border-radius: var(--round-s);
  border: none !important;
  background: none !important;
  background-color: var(--color-wrap-sub) !important;
  transition: all var(--duration);
  overflow: hidden;
  z-index: 1;
}
/* --------------------------- */
/*



*/
/* ----------- 접은글 ----------- */
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: 2px 14px;
  color: var(--color-icon) !important;
  font-weight: 600 !important;
  font-family: var(--font-family) !important;
  font-size: var(--font-size) !important;
  border-radius: var(--round-xl);
  background-color: var(--color-primary) !important;
  transition: all var(--duration);
}

div[data-ke-type='moreLess'] .btn-toggle-moreless:hover {
  width: fit-content;
}

div[data-ke-type='moreLess'] .btn-toggle-moreless::before {
  content: '\f0d7';
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -7px;
  margin-right: 3px;
  color: var(--color-icon);
  font-family: FontAwesome;
  transition: all var(--duration);
}

div[data-ke-type='moreLess'].open .btn-toggle-moreless::before {
  content: '\f0d8';
  color: var(--color-primary);
  transition: all var(--duration);
}

div[data-ke-type='moreLess'].open .btn-toggle-moreless::before {
  color: var(--color-icon);
}

div[data-ke-type='moreLess'] .btn-toggle-moreless:hover::before {
  width: 18px;
}

.moreless-content {
  padding: 16px;
  margin-top: 10px;
  border-radius: var(--round);
  background-color: var(--color-wrap-sub);
  transition: all var(--duration);
}
/* --------------------------- */
/*



*/
/* ----------- 링크 ----------- */
figure[data-ke-type='opengraph'],
#tt-body-page figure[data-ke-type='opengraph'] {
  margin: 12px 0 !important;
  border: 1px solid transparent !important;
  border-radius: var(--round);
  background-color: var(--color-wrap-sub);
  transition: all var(--duration);
}

figure[data-ke-type='opengraph'] a,
#tt-body-page figure[data-ke-type='opengraph'] a {
  padding: 14px;
  max-height: 130px !important;
  display: flex !important;
  align-items: center;
  color: var(--color-font) !important;
  border: none !important;
  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) !important;
}

figure[data-ke-type='opengraph'] div.og-image {
  width: unset !important;
  height: 100%;
  flex: 0 0 auto !important;
  position: unset !important;
  border-right: none !important;
  border-radius: var(--round);
  aspect-ratio: 1 / 1;
}

figure[data-ke-type='opengraph'] div.og-image::before {
  content: none !important;
}

figure[data-ke-type='opengraph'] div.og-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px !important;
  position: unset !important;
  color: var(--color-font) !important;
  background-color: var(--color-wrap-sub) !important;
  transition: all var(--duration);
}

.moreless-content figure[data-ke-type='opengraph'],
.moreless-content #tt-body-page figure[data-ke-type='opengraph'] {
  background-color: var(--color-wrap) !important;
}

.moreless-content figure[data-ke-type='opengraph'] div.og-text {
  background-color: var(--color-wrap) !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 {
  display: -webkit-box !important;
  color: var(--color-font) !important;
  font-size: var(--font-size) !important;
  font-family: var(--font-family) !important;
  text-overflow: ellipsis !important;
  word-break: break-all !important;
  white-space: pre-wrap !important;
  overflow: hidden !important;
  margin: 0 0 0px 0 !important;
  line-clamp: 1 !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
}

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 {
  display: -webkit-box !important;
  margin-top: -20px !important;
  font-size: var(--font-size) !important;
  font-family: var(--font-family) !important;
  text-overflow: ellipsis !important;
  word-break: break-all !important;
  line-height: 1.4 !important;
  line-clamp: 1 !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
}

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;
  bottom: 12px !important;
  color: var(--color-font) !important;
  font-size: var(--font-size) !important;
  font-weight: 400 !important;
  font-family: var(--font-family) !important;
  opacity: 0.5;

  display: -webkit-box !important;
  text-overflow: ellipsis !important;
  word-break: break-all !important;
  line-height: 1.4 !important;
  line-clamp: 1 !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

figure[data-ke-type='opengraph'] div.og-text p.og-host::before,
.link--s
  #tt-body-page
  figure[data-ke-type='opengraph']
  div.og-text
  p.og-host::before {
  content: '\f0c1';
  padding-right: 8px;
  font-size: var(--font-size) !important;
  font-family: FontAwesome;
}
/* --------------------------- */
/* **************************** */
/*





*/
/* ***************************** */
/* **** Article - Protected **** */
/* ***************************** */
.article-content.protect {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 64px;
}

.protect-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.protect-icon svg {
  color: var(--color-primary);
}

.protect-input-wrap {
  position: relative;
}

.protect-input {
  width: 130px;
  height: 35px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--round-s);
  background-color: var(--color-wrap-sub);
  transition: all var(--duration);
}

.protect-input:focus {
  border-color: var(--color-primary);
}

.protect-input::placeholder {
  font-size: var(--font-size-s);
}

.protect-btn {
  width: 130px;
  margin-top: 12px;
  padding: 8px 0;
  color: var(--color-icon);
  font-size: var(--font-size-s);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--round-xl);
  background-color: var(--color-primary);
  transition: all var(--duration);
  opacity: 0.5;
}

.protect-btn:hover {
  opacity: 1;
}

.protect-label {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  align-items: flex-start;
  gap: 8px;
  margin-top: 56px;
  margin-left: 12px;
}

.protect-label--text {
  font-size: var(--font-size-s);
  font-weight: 700;
  list-style-type: '✓';
}

.protect-label--text > span {
  position: relative;
  left: 7px;
  font-weight: 400;
}
/* ***************************** */
/*





*/
/* ************* */
/* **** Tag **** */
/* ************* */
.tag {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.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 16px;
  text-transform: capitalize;
  border-radius: var(--round-xl);
  background-color: var(--color-wrap);
  transition: all var(--duration);
}

.tag-item:hover,
.tag-item:active {
  color: var(--color-icon);
  background-color: var(--color-primary);
}
/* ************* */
/*





*/
/* ************************ */
/* **** Comment - Form **** */
/* ************************ */
.comment {
  display: flex;
  flex-direction: column;
  gap: var(--element-gap);
}

.comment-input-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.comment-input {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comment-input input {
  width: 120px;
  padding: 8px 12px;
  border-radius: var(--round-xl);
  background-color: var(--color-wrap-sub);
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comment-form-header:not(:has(.comment-input)) {
  display: none;
}

.comment-textarea {
  height: 90px;
  padding: 16px;
  line-height: var(--line-h-m);
  border-radius: var(--round-s);
  background-color: var(--color-wrap-sub);
  transition: all var(--duration);
}

.comment-textarea:focus {
  height: 130px;
}

.comment-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comment-lock input {
  display: none;
}

.comment-lock label::before {
  content: '\f3c1';
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
  color: var(--color-primary);
  font-size: var(--font-size);
  font-family: FontAwesome;
  border-radius: 50%;
  background-color: var(--color-wrap-sub);
  transition: all var(--duration);
  cursor: pointer;
}

.comment-lock input:checked + label::before {
  content: '\f023';
  color: var(--color-icon);
  background-color: var(--color-primary);
}

.comment-lock label:hover::before {
  opacity: 0.5;
}

.comment-submit {
  padding: 8px 16px;
  color: var(--color-icon);
  font-weight: var(--text-bold);
  border-radius: var(--round-xl);
  background-color: var(--color-primary);
  transition: all var(--duration);
}

.comment-submit:hover {
  opacity: 0.5;
}
/* ************************ */
/*





*/
/* ************************ */
/* **** Comment - List **** */
/* ************************ */
.reply {
  height: 0;
  visibility: hidden;
  transition: height var(--duration);
  overflow: hidden;
}

.comment-list,
.comment-item {
  display: flex;
  flex-direction: column;
  gap: var(--element-gap);
}

.comment-item,
.rp.comment-list {
  gap: 18px;
}

.comment-bubble {
  width: fit-content;
  max-width: 85%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 32px;
  position: relative;
  line-height: var(--line-h-m);
  word-break: break-all;
  box-shadow: none;
}

.rp .comment-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.rp .comment-bubble {
  width: fit-content;
  position: relative;
  padding: 24px;
  margin-left: auto;
  margin-right: 32px;
  color: var(--color-icon);
  border-radius: var(--round);
  background-color: var(--color-primary);
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-header > div {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.comment-img {
  width: 42px;
  height: 42px;
  padding: 4px;
  border: var(--border-solid);
  border-radius: 50%;
  transition: all var(--duration);
}

.comment-img:hover {
  border-color: var(--color-primary);
}

.comment-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.comment-name {
  font-weight: var(--text-bold);
}

.comment-name a:link,
.comment-name a:visited {
  transition: all var(--duration);
}

.comment-name a:hover,
.comment-name a:active {
  color: var(--color-primary);
}

.comment-text {
  word-break: break-all;
}

.comment-btm {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-s);
}

.comment-control {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.comment-control a:link,
.comment-control a:visited {
  transition: all var(--duration);
}

.comment-control a:hover,
.comment-control a:active {
  color: var(--color-primary);
}

.rp .comment-control a:hover,
.rp .comment-control a:active {
  color: var(--color-icon);
}

.comment-bubble-tail {
  position: absolute;
  top: 12px;
  left: 0;
  transform: translateX(-100%);
  z-index: 9;
}

.rp .comment-bubble-tail {
  width: fit-content;
  left: calc(100% + 16px);
}

.comment-bubble-tail svg {
  width: 18px;
  height: 18px;
  color: var(--color-wrap);
}

.rp .comment-bubble-tail svg {
  color: var(--color-primary);
  transform: scaleX(-1);
}
/* ************************ */
/*





*/
/* **************** */
/* **** Footer **** */
/* **************** */
.footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* **************** */
/*





*/
/* ******************** */
/* **** Pagination **** */
/* ******************** */
.pagination {
  display: flex;
  align-items: center;
}

.pagination-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.paging-btn {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--color-primary);
  transition: all var(--duration);
}

.paging-btn svg {
  color: var(--color-icon);
  transition: all var(--duration);
}

.paging-num-box {
  height: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 18px;
}

.paging-btn:hover,
.paging-btn:active {
  opacity: 0.5;
}

.no-more-prev.paging-btn,
.no-more-next.paging-btn {
  opacity: 0.35;
}

.no-more-prev.paging-btn:hover,
.no-more-prev.paging-btn:active,
.no-more-next.paging-btn:hover,
.no-more-next.paging-btn:active {
  opacity: 0.35;
}
/* ******************** */
/*





*/
/* ******************** */
/* **** Top button **** */
/* ******************** */
.top-btn {
  width: 30px;
  height: 30px;
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 16px;
  right: 12px;
  border-radius: 50%;
  background-color: var(--color-primary);
  transition: all var(--duration);
  opacity: 0;
  z-index: 99;
}

.top-btn svg {
  width: var(--svg-s);
  height: var(--svg-s);
  color: var(--color-icon);
  transition: all var(--duration);
}

.top-btn:hover {
  transform: scale(1.15);
}
/* ******************** */
/*





*/
/* ******************* */
/* **** Copyright **** */
/* ******************* */
/* 수정 및 삭제 금지 */
.copyright {
  align-self: flex-start;
  font-size: 10px;
  margin-left: 4px;
  transition: all var(--duration);
  opacity: 0.5;
}

.copyright:hover {
  color: var(--color-primary);
  opacity: 1;
}

.copyright > a:link,
.copyright > a:visited {
  font-weight: 600;
}
/* ******************* */
/*





*/
/* ********************* */
/* **** Media Query **** */
/* ********************* */
@media only screen and (max-width: 670px) {
  .wrap {
    width: 92%;
    max-width: var(--content-width);
    margin: 48px auto;
  }

  .progress-item {
    grid-template-columns: 10fr 1.5fr;
    grid-template-rows: 2fr;
    row-gap: 6px;
  }

  .progress-label {
    grid-column: 1 / -1;
  }

  #list-2 {
    grid-template-columns: 1fr;
  }

  #gallery {
    grid-template-columns: repeat(var(--gal-cnt-mobile), 1fr);
  }

  #webzine {
    grid-template-columns: repeat(var(--webzine-cnt-mobile), 1fr);
  }
}

@media only screen and (max-width: 600px) {
  figure[data-ke-type='opengraph'] a,
  #tt-body-page figure[data-ke-type='opengraph'] a {
    height: unset !important;
  }

  figure[data-ke-type='opengraph'] div.og-image {
    width: 88px !important;
    height: 88px;
  }
}
/* ********************* */
