#title .title-area {
    display: flex;
    flex-direction: column;
    gap: 6px; /* 1104 수정 */
    padding: 16px 0;

}

#title .title-area .h1 {
    display:flex;
    flex-direction:row;
    flex-flow: wrap;
    gap: 6px; /* 1104 수정 */
    align-items: center;
}


#title .description {
    font-size: 0.8125rem; /* 1104 수정 */
    line-height: 1.1375rem; /* 1104 수정 */
    color: var(--alpha-50);
    word-break: keep-all;
}

/* boardList 목록일반 galleryList 갤러리타입 목록 */

#boardList {
    width: 100%;
    padding: 0 12px;
}

#boardList>.border-top {
    width: 100%;
    height: 1px;
    background-color: var(--alpha-5);
}

#boardList a,
#galleryList a {
    display:flex;
    flex-direction: row;
    color: var(--default-anchor-color);
    text-decoration: none;
}

#boardList a:visited,
#galleryList a:visited {
    color: var(--default-visited-anchor-color);
}

/* #boardList a:hover,
 #boardList a:active {
    background-color: var(--alpha-3);
} */

 #boardList a:active {
    background-color: var(--alpha-3);
}

@media (min-width: 1024px) {
    #boardList a:hover {
      background-color: var(--alpha-3);
    }
  }

#boardList.notice a {
    background-color: var(--alpha-3);
}

#boardList a.item.notice {
    background-color: var(--alpha-3);
}

#boardList .item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 4px;
    border-bottom: 1px solid var(--list-line);
}

#boardList .item .info {
    display: flex;
    flex-direction: column;

    /* gap: 8px; 1104 삭제 */
    width: calc(100% - 66px); /* 1104 수정 */
}

#boardList.notice .item .info {
    width: 100%;
}

#boardList .item .titleContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    width:100%;
}

#boardList .item .author-info {
    display: flex;
    flex-direction: column;
    gap:6px;
    align-items: center;
    width:100%;
}

#boardList .item .category-info,
 #boardList .item .etc-info {
    display:flex;
    flex-direction: row;

    /* 1104 삭제 gap: 8px; */
    align-items: center;
    width:100%;
}

/* 1004 삭제
#boardList .item .etc-info {
    font-size: 0.75rem;
}
*/

/* 1004 추가 */
#boardList .dot,
 #galleryList .dot {
    font-size: 0.6875rem;
    font-weight: 400; /* 1104 수정 */
    color: var(--alpha-40);
}

/* 요기까지 */

#boardList .category-area {
    display: flex;
    flex-direction: row;
    gap:0;
    align-items: center;
}


#boardList .item .primaryNotice,
 #boardList .item .notice {
    box-sizing: border-box;
    display: flex;

    /* margin-right: 4px;
     font-size: 0.75rem;
    padding: 4px 6px; 1104 삭제 */
    font-weight:700;
    color: var(--default-background-color);
    background: var(--default-font-color);
    border-radius: 4px;
}

#boardList.notice .item .info {
    display: flex;
    flex-direction:column;
    align-items: center;
}

#boardList .item .title,
#galleryList .item .title {
    display: flex;
    flex-direction: row;
    gap:4px;
    align-items: center;
    overflow: hidden;
}

#boardList .item .title .text {
    /* min-height:17px; 1104 삭제 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#boardList .item .title .commentCount,
#boardList .item .commentCount,
#galleryList .info .titleContainer .commentCount {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--point-background-color);
}

#boardList .item .isAuthor,
#boardList.simple .item .now {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
}

#boardList .item .isAuthor,
#galleryList .item .isAuthor,
#boardList.simple .item .now {
    box-sizing: border-box;

    /* padding: 4px 6px;
    font-size: 0.75rem; 1104 삭제 */
    font-weight:700;
    color: #FFF;
    background-color: var(--point-background-color);
    border-radius: 4px;
}

#boardList .like-area,
 #boardList .etc-area,
#galleryList .like-area,
 #galleryList .etc-area {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* 1104 삭제
#boardList .like-area {
    gap: 8px;
    font-size: 0.75rem;
}
 */

#boardList.default .item:last-child {
    margin-bottom: 24px;
}

#boardList.simple .item:last-child {
    margin-bottom: 24px;
}

#galleryList .like-area {
    gap: 4px;
    font-size: 0.75rem; /* 1004 추가 */
}

/* 1104 삭제
#boardList .etc-area {
    gap: 4px;
}
*/

/* 1004 추가 */
#galleryList .etc-area {
    flex-wrap: wrap;
    gap: 4px;
}

#boardList .item .nickName,
#galleryList .item .nickName {
    display: flex;
    flex-direction: row;
    gap: 2px; /* 1004 추가 */
    align-items: center;
    font-size: 0.6875rem; /* 1004 수정 */
    font-weight: 400; /* 1104 수정 */
    color: var(--alpha-40); /* 1004 수정 */
    word-break: break-all;
    white-space: nowrap;
}


#boardList .item .commentCount img,
#galleryList .item .commentCount img {
    width: 14px;
    height: 14px;
    margin-right:2px;
}

img.normal-thumb {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 8px;
}

/* galleryList */
#galleryList {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    margin-bottom:24px;
}

#galleryList .border-top {
    display:none;
}

#galleryList .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    padding-bottom: 16px;
    border-radius: 8px;
}

#galleryList .image img {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 4px;
}

#galleryList .info {
    display: flex;
    flex-direction: column;

    /* gap: 6px; 1104 삭제 */
    align-items: flex-start;
    justify-content: left;
}

#galleryList .titleContainer {
    display: flex;
    flex-direction: column;

    /* gap: 6px; 1104 삭제 */
    align-items: flex-start;
    justify-content: left;
    width: 100%;
}

#galleryList .item .title {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width:100%;
    font-size: 0.875rem;
}

#galleryList .item .title .text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#galleryList .item .author-info {
    display:flex;
    flex-direction: column;

    /* gap: 4px; 1104 삭제 */
    width: 100%;
}

#galleryList .item .etc-info {
    display: flex;
    flex-direction: row;
    gap: 4px;
    width: 100%;

    /* font-size: 0.75rem; 1004 삭제 */
}

/* simple - 글상세 리스트 */

#boardList.simple .current {
    background-color: var(--point-background-color-10);
}

#boardList.simple .item .info {
    width: 100%;
}

#boardList.simple .item .info .author-info,
#boardList.simple .item .info .etc-info,
#boardList.simple .item .info .etc-area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#boardList.simple .item .category-info,
#boardList.simple .item .etc-info {
    width: fit-content;
}

@media only screen and (min-width: 1200px) {
    /* 1104 추가 */
    #title .title-area {
        max-width: 90%;
        gap: 12px;
    }

    #title .title-area .h1 {
        gap: 8px;
    }

    /* #title .title-area {
        gap: 12px;

    } */

    /* 원래 있던 걸 통합하며 붙여옴 */
    #title .description {
        font-size: 1rem;
    }

    /* 1104 추가 */
    #boardList .item .info {
        gap: 8px;
    }

    #boardList .item .author-info {
        gap: 6px;
    }

    #boardList .item .title .text {
        min-height: 17px;
        font-size: 1rem;
    }

    #powerLink .info .titleContainer a.title #title {
        min-height: 17px;
        font-size: 1rem !important;
    }

    #powerLink .info .titleContainer a.title #link {
        min-height: 17px;
        font-size: 14px !important;
    }

    #boardList .item .primaryNotice,
    #boardList .item .notice {
        margin-right: 4px;
    }

    #boardList .item .title .commentCount,
    #boardList .item .commentCount,
    #galleryList .info .titleContainer .commentCount {
        font-size: 0.9375rem;
    }

    #boardList .item .commentCount img,
    #galleryList .item .commentCount img {
        margin-right: 2px;
    }

    #boardList .item .title,
    #galleryList .item .title {
        gap: 4px;
    }

    #boardList .like-area {
        gap: 8px;
        font-size: 0.875rem;
    }

    #boardList .item .category-info,
    #boardList .item .etc-info {
        gap: 8px;
    }

    #boardList {
        padding: 0 !important;
    }

    #boardList.notice .category-area {
        display:none;
    }

    #boardlist.notice .titleContainer {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    #boardList.notice .item .info {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    /* 1104 추가 */
    #boardList.default .item {
        flex-direction: row-reverse;
        gap: 12px;
        justify-content: start;
    }

    #boardList .etc-area {
        gap: 4px;
    }

    #boardList.simple .etc-area {
        gap: 0;
    }

    #boardList .item .title {
        gap: 8px;
    }

    #boardList .item .primaryNotice,
    #boardList .item .notice,
    #boardList .item .isAuthor {
        margin-right: 8px;
    }

    #boardList .item .author-info {
        display: flex;
        flex-direction: row;
        gap: 8px;
        align-items: center;
        width:fit-content;
    }

    /* 1104 추가 */
    #boardList.notice .item .author-info {
        gap: 24px;
    }

    #boardList .like-area,
    #galleryList .like-area {
        font-size: 0.875rem !important;
    }


    #boardList.default .item:last-child {
        margin-bottom: 32px;
    }

    #boardList.simple .item:last-child {
        margin-bottom: 32px;
    }

    /* 갤러리 타입 리스트 */

    #galleryList {
        margin-bottom: 32px;
    }

    #galleryList .info {
        gap: 8px;
    }

    #galleryList .item {
        padding-bottom: 24px;
    }

    #galleryList .item .titleContainer {
        gap: 8px;
    }

    #galleryList .item .title {
        max-height: 1em !important;
        font-size: 1em !important;
    }

    #galleryList .item .author-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    #galleryList .item .etc-info {
        display:flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        width: fit-content;
    }

    #boardList .item .nickName,
    #galleryList .item .nickName,
    #boardList .item .viewCount, /* 1004 수정 - viewCount, datetime, dot 라인을 추가 */
    #galleryList .item .viewCount,
    #boardList .item .datetime,
    #galleryList .item .datetime,
    #boardList .item .dot,
    #galleryList .item .dot {
        font-size: 0.8125em !important; /* 1004 수정 */
        font-weight: 400 !important; /* 1104 수정 */
    }

    /* 1104 추가 */
    #galleryList .titleContainer,
 #galleryList .info {
        gap: 6px;
    }

    #galleryList .item .author-info,
 #galleryList .etc-area {
        gap: 4px;
    }

    img.normal-thumb {
        width: 49px;
        height: 49px;
    }

    /* simple 상세글전체 */
    .bottomBoardListHeader {
        padding: 16px 0 !important;
        margin-top: 56px;
    }

    #boardList.simple .item .info {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    #boardList.simple .item .info .author-info {
        display: flex;
        flex-direction: row;
        gap: 0; /* 1104 추가 */
        align-items: center;
    }

    #boardList.simple .item .titleContainer {
        width: fit-content;
        max-width: 540px; /* 1104 추가 - 다른 요소의 길이 조정에 따라 달라지는 부분 */
    }

    /* 1104 추가 */
    #boardList.simple .dot {
        display:none;
    }

    #boardList.simple .datetime {
        width: 56px;
        text-align: right;
    }

    #boardList.simple .viewCount {
        justify-content: center;
        width: 72px;
    }

    #boardList.simple .nickName {
        justify-content: center;
        width: 160px;
    }

    #boardList.simple .category-area {
        justify-content: center;
        width: 88px;
    }
}

@media only screen and (max-width: 1199px) {
    #boardList .header {
        display: none;
    }

    /* 1104 추가 */
    #boardList .item .title .text {
        min-height: 0.975rem;
        font-size: 0.9125rem;
    }

    #powerLink .info .titleContainer a.title #title {
        min-height: 0.975rem;
        font-size: 0.9125rem !important;
    }

    #powerLink .info .titleContainer a.title #link {
        min-height: 0.975rem;
        font-size: 0.875rem !important;
    }

    #boardList .item .info {
        gap: 5px;
    }

    #boardList .item .primaryNotice,
    #boardList .item .notice {
        margin-right: 3px;
    }

    #boardList .item .title .commentCount,
    #boardList .item .commentCount,
    #galleryList .info .titleContainer .commentCount {
        font-size: 0.875rem;
    }

    #boardList .item .commentCount img,
    #galleryList .item .commentCount img {
        margin-right: 1px;
    }

    #boardList .item .title,
    #galleryList .item .title {
        gap: 3px;
    }

    #boardList .like-area {
        gap: 4px;
        font-size: 0.75rem;
    }

    #boardList .item .category-info,
    #boardList .item .etc-info {
        gap: 5px;
    }

    #boardList .item .author-info {
        gap: 5px;
    }

    #boardList .etc-area {
        gap: 3px;
    }

    #galleryList .titleContainer,
 #galleryList .info,
 #galleryList .item .author-info,
 #galleryList .etc-area {
        gap: 3px;
    }

    #boardList .dot {
        display: inline-block;
        width: 4px;
    }

    #boardList img.normal-thumb {
        width: 58px; /* 1104 수정 */
        height: 58px; /* 1104 수정 */
    }

    #galleryList {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 16px;
    }

    #galleryList .item .etc-info {
        flex-wrap: wrap;
    }

}

@media only screen and (min-width: 1200px) {
    #title .title-area {
        gap: 12px;

    }

    #title .description {
        font-size: 1rem;
    }

    #boardList .item .titleContainer {
        width:982px;
    }
}

/* bookmarkList */
#bookmarkList {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    justify-content: space-around;
    width: 100%;
  }

  #bookmarkList.bookmarkThree {
    grid-template-columns: repeat(3, 1fr);
  }

  #bookmarkList.bookmarkFour {
    grid-template-columns: repeat(4, 1fr);
  }

  #bookmarkList.bookmarkFive {
    grid-template-columns: repeat(5, 1fr);
  }

  #bookmarkList .item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px;
    font-weight: bold;
  }

  #bookmarkList .item .image {
    position: relative;
    display: flex;
    width: 200px;
    height: 200px;
  }

  #bookmarkList .item .image img {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
  }

  #bookmarkList .item .image .label {
    position: absolute;
    top: 40%;
    width: 100%;
    margin: auto;
    font-size: 2.7em;
    color: #fff;
    text-align: center;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  }

  #bookmarkList .item .image .soldOut {
    filter: grayscale(100%) brightness(50%);
  }

  #bookmarkList .item .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  #bookmarkList .item .info div {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: start;
    width: 100%;
    padding: 0;
    margin: 6px 0;
  }

  #bookmarkList .item .info .title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: start;
    justify-content: center;
    width: 200px;
  }

  #bookmarkList .item .info .title .text {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
    font-size: 1.2em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #bookmarkList .item .info .title .category {
    display: inline-block;
    margin-bottom: 0;
    overflow: visible;
    color: var(--alpha-50);
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #bookmarkList .item .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  #bookmarkList .item .buttons a,
  #bookmarkList .item .buttons span {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    white-space: nowrap;
  }

  #bookmarkList .item .buttons .detail,
  #bookmarkList .item .buttons .detail:hover {
    margin-right: 6px;
    color: #000;
    background-color: #fff !important;
    border: solid 1px var(--default-font-color);
    border-radius: 5px;
  }

  #bookmarkList .item .buttons .join,
  #bookmarkList .item .buttons .join:hover {
    color: #fff;
    background-color: #eb2357 !important;
    border-radius: 5px;
  }

  #bookmarkList .item .buttons .soldOut,
  #bookmarkList .item .buttons .soldOut:hover {
    color: #fff;
    background-color: #333 !important;
    border-radius: 5px;
  }

  @media (max-width: 950px) {
    #bookmarkList {
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-right: 10px;
      margin-left: 10px;
    }

    #bookmarkList .item .image {
      width: 150px;
      height: 150px;
    }

    #bookmarkList .item .info .title {
      width: 150px;
    }

    #bookmarkList .item .image .label {
      font-size: 2em;
    }
  }

  #slot-1, #slot-2, #slot-3, #slot-6, #slot-6-1 {
    max-height: 250px;
  }

  #slot-5 {
    max-height: 100px;
    min-height: 70px;
  }

  #slot-4, #slot-4-1 {
    max-height: 90px;
  }

  #slot-1, #slot-4, #slot-5 {
    margin-top: 15px;
  }

  #slot-1, #slot-3, #slot-4, #slot-4-1 {
    min-height : 90px;
  }

  #slot-2 {
    min-height: 250px;
  }

  #slot-6, #slot-6-1 {
    min-height: 250px;
  }