.board__view {
    padding-top: 4rem;
  }
  
  .b__cate {
    display: inline-block;
    padding: .5rem 1.2rem;
    font-size: 1.3rem;
    color: var(--color_desc);
    font-family: var(--font_family_bold);
    border: 1px solid #ddd;
    border-radius: 2em;
    margin-bottom: .7rem;
  }
  
  
  .header__title {
    margin-bottom: 2rem;
  
  }
  
  .header__title h2 {
    font-family: var(--view_title)
  }
  
  .author__info {
    padding-top: 1.5rem;
    color: var(--color_desc);
  }
  
  .author__info > p {
    position: relative;
    padding: 0 1rem;
  }
  
  .author__info > p::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: .1rem;
    height: .7rem;
    background: #e1e1e1
  }
  
  .author__info > p:nth-child(1) {
    padding-left: 0;
  }
  
  .author__info > p:nth-child(1)::after {
    padding-left: 0;
    background: none;
  }
  
  
  .b__content,
  .reply__inline {
    position: relative;
    line-height: 2.6rem;
    padding: 2rem;
    font-size: 1.5rem;
    border-radius: 1rem;
    /* border: 1px dashed var(--color_pmy); */
    word-break: keep-all;
    z-index: 1;
    overflow: hidden;
  }
  
  .b__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color_pmy);
    z-index: -1;
    opacity: .03;
  }
  
  .b__content img {
    max-width: 100%;
  }
  
  
  
  /* DEBUG: �듬� */
  
  .reply__inline {
    border: 0;
    padding: 0  1.5rem;
    margin-top: 4rem;
    background: #fff;
  }
  
  .reply__inline li {
    padding: 1rem 0;
    border-top: 1px dashed #eee;
  }
  
  .reply__inline li:first-child {
    border-color: transparent;
  }
  
  
  .reply__info p {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #999;
  }
  
  .reply__btns p {
    border: 1px solid #e1e1e1;
    padding: 0 1rem;
    cursor: pointer;
    border-radius: .5rem;
    transition: .2s;
  }
  
  .reply__btns p:hover {
    color: #fff;
    border-color: var(--color_pmy);
    background: var(--color_pmy);
  }
  
  
  
  /* DEBUG: �듬��섏젙 */
  
  
  
  /* DEBUG: �듬��깅줉 */
  
  .reply__box {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed #efefef;
  }
  
  .reply__box h3 {
    padding-bottom: 1rem;
  }
  
  textarea {
    resize: none;
    outline: none;
    width: 100%;
    min-height: 10rem;
    padding: 2rem;
    border: 1px solid #efefef;
    font-family: var(--font_family_bold);
    border-radius: 1rem;
    transition: .4s;
  }
  
  textarea:focus {
    border-color: #000;
    background: #fff;
  }
  
  .write__comment {
    justify-content: center;
    width: 10rem;
    height: 10rem;
    color: #fff;
    background: var(--color_pmy);
    border-radius: 1rem;
    cursor: pointer;
  }
  
  
  .view__btns {
    padding-top: 2rem;
  }
  
  .view__btns a {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid #eee;
    color: var(--color_desc);
    border-radius: 1rem;
    transition: .2s;
  }
  
  .view__btns a:hover {
    color: var(--color_pmy);
    border-color: var(--color_pmy);
    /* box-shadow: inset 0px 0px 3px 2px var(--color_pmy); */
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  @media all and (max-width: 769px) {
    .header__title h2 {
      font-size: 2rem;
    }
  
    .author__info > p {
      font-size: 1.2rem;
    }
  }
  
  @media all and (max-width: 480px) {
    .header__title h2 {
      font-size: 1.6rem;
    }
  
    .b__content {
      padding: 1.5rem;
    }
  
    .b__content,
    .reply__inline {
      font-size: 1.4rem;
    }
  
    .reply__box > div {
      flex-direction: column;
    }
  
    .write__comment {
      justify-content: center;
      width: 100%;
      height: auto;
      padding: 1rem 0;
      color: #fff;
      background: var(--color_pmy);
      border-radius: 1rem;
      cursor: pointer;
    }
  
    .view__btns a {
      display: inline-block;
      padding: 1.2rem;
      border: 2px solid #eee;
      color: var(--color_desc);
      border-radius: 1rem;
      transition: .2s;
    }
  }