.main-container {
  .icon-btn.liked span svg path {
    fill: #EF4444;
    color: #EF4444;
  }

  .icon-heart svg {
    width: 24px;
    height: 24px;
  }

  .post-thumbnail {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-image: url('/site/assets/images/default_image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 16px;
  }

  .column-item {
    display: flex;
    align-items: center;
  }

  .post-category {
    padding: 8px 0;
  }

  .post-category span {
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 4px 8px;
    color: #4B5563;
    font-weight: 400;
    font-size: 0.857rem;
    line-height: 1.143rem;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
  }

  .post-information {
    margin-top: 8px;
    display: flex;
    align-items: center;
  }

  .post-information .avatar {
    width: 40px;
    height: 40px;
    border-radius: 200px;
  }

  .post-information .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    padding-left: 8px;
  }

  .post-information .info .name {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.429rem;
    letter-spacing: 0;
    color: #111827;
  }

  .post-information .info .date {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.429rem;
    letter-spacing: 0;
    color: #4B5563;
  }

  .post-information .meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    margin-left: auto;
    width: 40%;
  }

  .post-information .meta .last-view-at {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.429rem;
    letter-spacing: 0;
    text-align: right;
    color: #4C1D95;
  }

  .post-information .meta .views {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.429rem;
    letter-spacing: 0;
    text-align: right;
    color: #4B5563;
  }

  .post-title {
    margin-top: 18px;
    color: #111827;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
  }

  .post-title .title {
    display: block;
    width: calc(100% - 26px);
  }

  .post-title a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.714rem;
    line-height: 2.286rem;
    letter-spacing: 0;
  }

  .post-title a:hover {
    color: inherit;
  }

  .post-title .svg-icon-arrow-up-right {
    position: absolute;
    right: 2px;
    top: 2px;
    width: 24px;
    height: 24px;
    -webkit-mask-image: url('/site/assets/images/arrow-up-right.svg');
    mask-image: url('/site/assets/images/arrow-up-right.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: #111827;
  }

  .post-description {
    margin-top: 4px;
    font-weight: 400;
    font-size: 1.143rem;
    line-height: 1.714rem;
    letter-spacing: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #4B5563;
  }

  .post-social {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .post-social .icon {
    width: 24px;
    height: 24px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: rgba(255, 255, 255, 0.8);
  }

  .post-social .item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    color: #4B5563;
    font-weight: 500;
    line-height: 1.429rem;
    letter-spacing: 0;
  }

  .post-social .icon.linear-like-heart {
    -webkit-mask-image: url('/site/assets/images/linear-like-heart.svg');
    mask-image: url('/site/assets/images/linear-like-heart.svg');
  }

  .post-social .icon.linear-messages-conversation-chat-dots {
    -webkit-mask-image: url('/site/assets/images/linear-messages-conversation-chat-dots.svg');
    mask-image: url('/site/assets/images/linear-messages-conversation-chat-dots.svg');
  }

  .post-social .icon.linear-messages-conversation-square-share-line {
    -webkit-mask-image: url('/site/assets/images/linear-messages-conversation-square-share-line.svg');
    mask-image: url('/site/assets/images/linear-messages-conversation-square-share-line.svg');
    margin-right: 0.25rem;
  }
}