@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  word-break: break-all;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
}

a:link,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
}

textarea,
input {
  color: var(--color-font);
  font-size: var(--font-size);
  font-family: var(--font);
  border: none;
  outline: none;
  background: none;
}

textarea {
  width: 100%;
  resize: none;
}

ol,
ul,
li {
  list-style: none;
}

.tistoryProfileLayerTrigger,
.container_postbtn,
.postbtn_ccl,
.uoc-count,
.ico_postbtn,
[data-tistory-react-app='Namecard'] {
  display: none !important;
}

pre {
  margin-bottom: 12px;
  white-space: unset !important;
  overflow: hidden;
  border-radius: var(--round) !important;
}

::-webkit-scrollbar,
::-webkit-scrollbar {
  display: none;
}

::selection {
  color: var(--color-select-font);
  background-color: var(--color-select-bg);
}

.hidden {
  display: none !important;
}

.icon {
  stroke: var(--color-font);
}

.icon--16x {
  width: 16px;
  height: 16px;
}

.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-secondary);
  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 2.5em 0 -1.3em;
  }

  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

body {
  color: var(--color-font);
  font-size: var(--font-size);
  font-weight: 400;
  font-family: var(--font);
  line-height: 1;
  background-color: var(--color-bg);
}

.wrap {
  margin: 50px auto;
  overflow: scroll;
  position: relative;
  width: var(--content-width);
  max-width: 100%;
  background-color: #f5f5f5;
  box-shadow: 0 2px 2px 2px rgba(227, 229, 255, 0.05);
}


.header {
  height: 50px;
  width: var(--content-width);
  max-width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 16px;
  font-size: var(--font-size-l);
  font-weight: 800;
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-wrap);
  z-index: 9;
}

.header-btn {
  margin-right: 0 auto;
  cursor: pointer;
}

.header-top {
  width: 100%;
  position: relative;
  padding: 0 12px;
}

.about-post {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 20px;
  border-bottom: var(--color-border);
  background-color: var(--color-wrap);
}

.about-post-title {
  font-size: var(--font-size-l);
  font-weight: 700;
}

.about-post-content {
  line-height: 1.7;
}

.nav {
  height: 0;
  width: var(--content-width);
  position: absolute;
  background-color: var(--color-wrap);
  z-index: 2;
  top: 50px;
  left: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all var(--duration);
  border-bottom: 1px solid var(--color-border);
}

.nav-list {
  border-bottom: 1px solid var(--color-border);
}

.nav-list li {
  border-bottom: 1px dashed var(--color-border);
}

.nav-list li:last-child {
  border-bottom: none;
}

.nav-list a:link,
.nav-list a:visited {
  display: block;
  padding: 18px 24px;
  font-weight: 700;
  line-height: 1.4;
  background-color: var(--color-wrap);
  transition: all var(--duration);
}

.nav-list a:hover,
.nav-list a:active {
  background-color: var(--color-wrap-hover);
}

.list-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.025);
  background-color: var(--color-wrap);
}

.list-pick {
  padding: 16px 20px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-border);
}

.pick-artist {
  position: relative;
  font-weight: 800;
}

.pick-artist::before {
  content: '';
  width: calc(100% + 34px);
  height: 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.15;
  background-color: var(--color-primary);
}

.list-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.list-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.list-title {
  font-size: var(--font-size-l);
  font-weight: 700;
}

.list-title:empty {
  display: none;
}

.list-name {
  font-weight: 700;
}

.list-name::before {
  content: 'ARTIST';
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 6px;
  height: 18px;
  padding: 0 6px;
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size-xs);
  border-radius: 100px;
  background: linear-gradient(
    to right,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
}

.list-date {
  color: var(--color-font-sub-2);
  font-size: var(--font-size-s);
}

.list-img-wrap {
  width: 54px;
  height: 54px;
  border: 2px solid transparent;
  border-radius: 50%;
  background-image: linear-gradient(var(--color-wrap), var(--color-wrap)),
    linear-gradient(
      to right bottom,
      var(--color-profile-secondary) 0%,
      var(--color-profile-primary) 100%
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.list-img {
  width: 100%;
  height: 100%;
  display: block;
  padding: 3px;
  object-fit: cover;
  border-radius: 50%;
}

.list-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 20px;
}

.list-content {
  line-height: 1.7;
}

.list-attachment {
  margin-top: 24px;
}

.list-attachment img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--round);
}

.list-attachment:empty {
  display: none;
}

.list-link:link,
.list-link:visited {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  color: var(--color-font-sub-2);
  font-size: var(--font-size-s);
  border-top: 1px solid var(--color-border);
  transition: all var(--duration);
}

.icon--more {
  stroke: var(--color-font-sub-2);
  transition: all var(--duration);
}

.list-link:hover,
.list-link:active {
  color: var(--color-primary);
  background-color: var(--color-wrap-hover);
}

.list-link:hover .icon--more,
.list-link:active .icon--more {
  stroke: var(--color-primary);
}

.list-thumb-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 2.5;
  border-radius: var(--round);
}

.article-footer.footer {
  display: flex;
  justify-content: space-between;
  margin-top: -20px;
}

.reply {
  background-color: var(--color-comment);
}

.comment-name-wrap--inner {
  display: flex;
  align-items: center;
  gap: 6px;
}

.comment-img-wrap {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border: 2px solid transparent;
  border-radius: 50%;
  background-image: linear-gradient(var(--color-comment), var(--color-comment)),
    linear-gradient(
      to right bottom,
      var(--color-profile-secondary) 0%,
      var(--color-profile-primary) 100%
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.comment-item {
  padding: 14px 20px;
}

.comment-img {
  width: 100%;
  height: 100%;
  display: block;
  padding: 3px;
  object-fit: cover;
  border-radius: 50%;
}

.comment {
  display: flex;
  gap: 8px;
  padding: 14px 0;
}

.comment-list li {
  border-top: 1px solid var(--color-border);
}

.comment-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comment-name-wrap {
  width: 100%;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment-content {
  line-height: 1.7;
}

.comment-content img {
  max-width: 90%;
  max-height: 100%;
  display: block;
  border-radius: var(--round);
}

.comment-name {
  font-weight: 700;
}

.comment-date {
  color: var(--color-font-sub-2);
  font-size: var(--font-size-s);
  font-weight: 400;
}

.comment-artist {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  padding: 0 6px;
  color: #fff;
  font-weight: 600;
  font-size: var(--font-size-xs);
  border-radius: 100px;
  background: linear-gradient(
    to right,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
}

.header-link:link,
.header-link:visited {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer {
  width: var(--content-width);
  max-width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  font-size: var(--font-size-l);
  border-top: 1px solid var(--color-border);
  background-color: var(--color-wrap);
  z-index: 9;
}

.paging {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#tt-body-page figure.imageblock img,
figure.imageblock img {
  border-radius: var(--round);
}

.tt_more_preview_comments_wrap {
  border-top: none;
  padding: 20px 0;
}

.tt_more_preview_comments_text {
  margin: 14px 0;
}

@media screen and (max-width: 640px) {
  body {
    justify-content: flex-start;
  }

  .wrap {
    min-height: 100vh;
    margin: 0 auto;
  }

  .main {
    margin: 50px 0;
  }
  
  .comment-img-wrap {
    width: 48px;
    height: 48px;
  }

  .header {
    /* width: 100%; */
    margin-top: 0;
    position: fixed;
  }

  .nav {
    width: 100%;
  }

  .footer {
    /* width: 100%; */
    position: fixed;
    bottom: 0;
  }
}
