/*
XET CSS v2.0.4 2024-08-02 for supported in all modern browsers
By xetemplate(https://xetemplate.com)
*/
/* board skin */
.board-skin {
  color: var(--xet-theme-text-base-color);
}
.board-skin .icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: bold;
}
.board-skin .icon > div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  color: #fff;
}
.board-skin .icon > .new {
  background-color: crimson;
}
.board-skin .icon > .update {
  background-color: chartreuse;
}
.board-skin .search-form {
  margin-bottom: 20px;
}
.board-skin .category-list {
  margin-bottom: 30px;
  border-bottom: 0.5px solid var(--xet-theme-border-color);
}
.board-skin .category-list ul {
  display: flex;
  align-items: center;
}
.board-skin .category-list ul > li {
/*  flex-grow: 1; */
  flex: 1;
}
.board-skin .category-list ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 50px;
  border-bottom: 2px solid transparent;
  font-size:16px;
}
.board-skin .category-list ul > li > a.is-active {
  color: var(--xet-theme-text-strong-color);
  border-color: var(--xet-theme-text-strong-color);
}
.board-skin .board__title {
/*  position: relative; */
  position:sticky;
  top:0px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  height: 60px;
  background:#fff;
}
.board-skin .board__title .title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--xet-theme-text-strong-color);
}
.board-skin .board__title .xet-btn {
/*
  position: absolute;
  top: 50%;
*/
/*
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
*/
	position:absolute;
	left:0px;
}
.board-skin .board__title .xet-btn:not(.back) {
  left: auto;
  right: 0;
}
.board-skin .board__title .xet-btn.back {
  left: 0;
}
.board-skin .total__count {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--xet-theme-text-strong-color);
}
.board-skin .tools {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.board-skin .xet-btn.write_document {
  z-index: 9;
  position: fixed;
  bottom: 80px;
  right: 16px;
  border-radius: 50%;
  font-size:25px;
  padding:0px;
  background-color: #34dafe;
  color: #fff;
  
  bottom: 90px;
  width:60px;
  height:60px;
  font-size:40px;  
}

/* 게시판 목록 - 정렬 */
.board-skin .board_sort { margin-bottom:30px; }
.board-skin .board_sort select { border:0px; font-size:16px; font-weight:600; display:inline; margin-right:20px; letter-spacing:-0.5px; background:transparent !important;}  
.board-skin .sort_term {  display:inline; }
.board-skin .sort_term a { border:1px solid #EAEDF2; border-radius:15px; padding:5px 10px; color:#5F656D; font-size:14px;}
.board-skin .sort_term a.on { background:#EAEDF2;}

/* 게시판 - 내 위치 */
.board-skin select.map_center { border: 0px; font-size: 17px; font-weight: 600; display: inline; margin-right: 20px; }


.board-skin .meta-group {
  display: flex;
  align-items: center;
  gap: 4px;
}
.board-skin .meta-group .meta {
  font-size: 14px;
  display: inline-block;
}
.board-skin .meta-group .meta + .meta {
  position: relative;
  padding-left: 6px;
  margin-left: 4px;
}
.board-skin .meta-group .meta + .meta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -2px;
  width: 2px;
  height: 2px;
  border-radius: 4px;
  background-color: var(--xet-theme-text-base-color);
  transform: translateY(-50%);
}


.board-skin .meta-group-icon {
  display: flex;
  align-items: center;
  gap: 4px;
}
.board-skin .meta-group-icon .meta {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
/*  gap: 4px; */
  font-size: 14px;  
}
.board-skin .meta-group-icon .meta svg {
	margin-right:5px;
}
.board-skin .meta-group-icon .meta + .meta {
  position: relative;
  padding-left: 25px;
  margin-left: 4px;
}

.board__view .meta-group-icon .meta + .meta { 
	padding-left:0px;
	margin-left:0px;
}
.board__view .meta-group-icon .meta svg {
	margin-right:5px;
}



.board-skin .list-style ~ div {
  margin-top: 20px;
}
.board-skin .list-style > ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.board-skin .list-style > ul > li {
  margin: 0;
  padding: 16px;
  border-radius: 16px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
}
.board-skin .list-style > ul > li > div + div {
  margin-top: 8px;
}
.board-skin .list-style > ul > li .notice-badge {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 12px;
  padding: 2px 4px;
  border-radius: 4px;
  background-color: var(--xet-theme-primary-color);
  color: #111;
}
.board-skin .list-style > ul > li .title {
  display: flex;
  align-items: center;
  gap: 4px;
}
.board-skin .list-style > ul > li .title a.subject {
  color: var(--xet-theme-text-strong-color);
}
.board-skin .list-style > ul > li .__content {
  display: flex;
  gap: 8px;
}
.board-skin .list-style > ul > li .__content .profile {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.board-skin .list-style > ul > li .__content .profile .avatar {
  width: 18px;
  height: 18px;
  border-radius: 18px;
  overflow: hidden;
}
.board-skin .list-style > ul > li .__content .profile .avatar svg {
  width: 100%;
}
.board-skin .list-style > ul > li .__content .profile .avatar img {
  width: 100%;
  object-fit: cover;
}
.board-skin .list-style.notice > ul > li .title .subject {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  min-width: 0;
}
.board-skin .card-style .card__container {
  display: flex;
  flex-direction: column;
  gap: 20px; 
}
.board-skin .card-style .card__container > .item {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px; 
}

.board-skin .card-style .card__container > * + * {
  border-top: 1px solid #EAEDF2; 
  padding-top: 25px; /* 기존 gap 만큼 여백 확보 */
}

.board-skin .card-style .card__container > .item .nick {
    color: #5F656D;
    font-size: 14px;
}

.board-skin .card-style .card__container > .item .profile__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    overflow: hidden;
    background-color: #EAEDF2;
    color: var(--xet-theme-primary-color);
}


.board-skin .card-style .card__container > .item .thumbnail {
  position: relative;
  display: block;
/*  border-radius: 16px; */
  border-radius: 8px;
  overflow: hidden;
  margin-top:10px;
  margin-bottom:10px;  
}
.board-skin .card-style .card__container > .item .thumbnail > img {
  width: 100%;
  aspect-ratio: 2.3 / 1;   /* 가로 : 세로 */
/*  
  min-height:150px;  
  max-height:150px;
*/  

  object-fit: cover;  
  object-position: center;  

}
.board-skin .card-style .card__container > .item .thumbnail > .icon {
  position: absolute;
  top: 16px;
  left: 16px;
}
.board-skin .card-style .card__container > .item .subject {
/*
  font-size: 18px;
  font-weight: 700;
*/
  font-size:16px;
  color: var(--xet-theme-text-strong-color);
}
.board-skin .card-style .card__container > .item .summary {
  font-size: 14px;
}

.board-skin .card-style .card__container > .item .extravar {
 
}
.board-skin .card-style .card__container > .item .extravar > span {
  margin-right:10px;
}

.board-skin .webzine-style > ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
}
.board-skin .webzine-style > ul > li {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--xet-theme-border-color);
}
.board-skin .webzine-style > ul > li .thumbnail {
  position: relative;
}
.board-skin .webzine-style > ul > li .thumbnail > img {
  border-radius: 12px;
  object-fit: cover;
}
.board-skin .webzine-style > ul > li .thumbnail > .icon {
  position: absolute;
  top: 4px;
  left: 4px;
}
.board-skin .webzine-style > ul > li .thumbnail.profile {
	width:70px; height:70px; background:#EAEDF2; border-radius:50%;
}

.board-skin .webzine-style > ul > li .__content {
  display: flex;
  flex-direction: column;
/*  gap: 2px; */
	gap: 6px;
}
.board-skin .webzine-style > ul > li .__content .title .subject {
  font-size: 18px;
/*  font-weight: 700; */
  color: var(--xet-theme-text-strong-color);
}
.board-skin .social-style ~ div {
  margin-top: 20px;
}
.board-skin .social-style > ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
.board-skin .social-style > ul > li {
  position: relative;
}
.board-skin .social-style > ul > li a.thumbnail {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 100px;
}
.board-skin .social-style > ul > li a.thumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.board-skin .social-style > ul > li a.thumbnail .summary {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--xet-theme-text-strong-color);
  transition: var(--xet-theme-transition-all);
}
.board-skin .social-style > ul > li .isAdmin {
  z-index: 3;
  position: absolute;
  top: 8px;
  left: 8px;
}
.board-skin .snsPostForm {
  z-index: 9;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 60px;
  padding: 10px;
  border-radius: 16px 16px 0 0;
  background: #303030;
}
.board-skin .snsPostForm .text-editor {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.board-skin .snsPostForm .text-editor .textarea {
  position: relative;
  flex-grow: 1;
  line-height: 0;
}
.board-skin .snsPostForm .text-editor .textarea textarea {
  width: 100%;
  height: 48px;
  padding: 16px;
  padding-right: 96px;
  background-color: var(--xet-theme-input-bg);
  border: 1px solid var(--xet-theme-input-border-color);
  border-radius: 24px;
}
.board-skin .snsPostForm .text-editor .textarea .xet-btn {
  position: absolute;
  bottom: 9px;
  font-size: 20px;
  min-width: 40px !important;
  height: 40px !important;
  padding: 0;
}
.board-skin .snsPostForm .text-editor .textarea .emoji-btn {
  right: 8px;
}
.board-skin .snsPostForm .text-editor .textarea .filedata-btn {
  right: 48px;
}
.board-skin .snsPostForm .text-editor button[type=submit] {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 48px !important;
  background-color: var(--xet-theme-primary-color);
  color: #111;
}
.board-skin .snsPostForm .preview_image {
  display: none;
  gap: 2px;
}
.board-skin .snsPostForm .preview_image > img {
  width: 100px;
  border-radius: 16px;
}
.board-skin .snsPostForm .attachmentList {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 16px;
}
.board-skin .snsPostForm .attachmentList > li {
  position: relative;
}
.board-skin .snsPostForm .attachmentList > li img {
  width: 100px;
  border-radius: 8px;
}
.board-skin .snsPostForm .attachmentList > li .deleteFile {
  z-index: 1;
  position: absolute;
  top: 4px;
  right: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  width: 28px;
  height: 28px;
  font-size: 12px;
  border: 0;
  appearance: none;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}
.board-skin .sajutip-style > ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.board-skin .sajutip-style > ul > li {
  position: relative;
}
.board-skin .sajutip-style > ul > li a.thumbnail {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 10px;
}
.board-skin .sajutip-style > ul > li a.thumbnail .isAdmin {
  z-index: 3;
  position: absolute;
  top: 8px;
  left: 8px;
}
.board-skin .sajutip-style > ul > li .title a.subject {
  font-size: 16px;
  font-weight: 500;
  color: var(--xet-theme-text-strong-color);
}
.board-skin .pagination {
  margin: 20px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.board-skin .pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 28px;
  margin: 0;
  padding: 0 6px;
  color: var(--xet-theme-text-base-color);
  background-color: transparent !important;
}
.board-skin .pagination .page_on {
  font-weight: bold;
  color: var(--xet-theme-primary-color);
}
.board-skin .comment-from {
  padding: 20px;
}
.board-skin .board__view {
/*  padding: 16px; */
	position:relative;
}
.board-skin .board__view + .board-list {
  padding: 16px;
  border-top: 0.5px solid var(--xet-theme-border-color);
}
.board-skin .board__view article {
  margin-bottom: 16px;
  border-bottom: 0.5px solid var(--xet-theme-border-color);
}


.board-skin .board__view .article_bar::before{
  content:"";
  display:block;
  height:10px;
  background:#f1f3f5;   /* 스크린샷 느낌 */
  margin:0 -24px 20px -24px;       /* 좌우 padding 무시하고 꽉 차게 */
}

.board-skin .board__view article .category_list {
	margin-bottom:5px;
}
.board-skin .board__view article .category_list .category_btn {
  background:#686EFE; color:#fff; border-radius:10px; padding:4px 7px; display:inline; font-size:12px; font-weight:600;
}

.board-skin .board__view article .profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
  margin-top:-15px;
}
.board-skin .board__view article .profile > .item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.board-skin .board__view article .profile .profile__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  overflow: hidden;
  background-color: #EAEDF2;
  color: var(--xet-theme-primary-color);
}

.board-skin .board__view article .info_title { 
	color:#3D4147;	font-size:14px; font-weight:600;
	margin-bottom:15px;
}
.board-skin .board__view article .info_box {
	width:100%px; padding:10px;
    border-bottom: 1px solid #EAEDF2
}
/*
.board-skin .webzine-style > ul > li .__content .title .subject {
	font-size:16px;
}
*/
.board-skin .board__view article .signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0px;
}

.board-skin .board__view article .signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0px;
}
.board-skin .board__view article .signature { border-top:1px solid #EAEDF2; border-bottom:1px solid #EAEDF2; gap: 12px; padding:20px 0px; font-size:14px;}
.board-skin .board__view article .signature .nick_name { font-weight:500; }
.board-skin .clinic-style > ul > li {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--xet-theme-border-color);
 }


.board-skin .clinic-style > ul > li {
}

.board-skin .clinic-style .subject {

}


.board-skin .board__view article .images {
  position: relative;
  margin: -26px;
  margin-bottom: 20px;
}
.board-skin .board__view article .images .board__title {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
}
.board-skin .board__view article .images .swiper {
  height: 393px;
  background-color: rgba(0, 0, 0, 0.45);
}
.board-skin .board__view article .images .swiper .swiper-slide img {
  height: 100%;
  object-fit: cover;
}
.board-skin .board__view article .images .swiper .swiper-pagination {
  position: absolute;
  left: auto;
  right: 16px;
  bottom: 16px;
  padding: 8px;
  width: auto;
  border-radius: 8px;
  font-size: 14px;
  background: linear-gradient(0deg, rgba(36, 36, 36, 0.3), rgba(36, 36, 36, 0.3));
  background-color: #2424244D;
/*  color: var(--xet-theme-text-base-color); */
  color:#F7F8FB; 
}
.board-skin .board__view article .images .swiper .swiper-pagination .swiper-pagination-current {
/*  color: var(--xet-theme-text-strong-color); */
	color:#fff;
}

.board-skin .board__view article .subject {
/*  font-size: 24px; */
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--xet-theme-text-strong-color);
}

/*
.board-skin .board__view article .extravars {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
*/
.board-skin .board__view article .extravars {
	margin-bottom:20px; 
}

.board-skin .board__view article .extravars .item {
    display: flex;
    align-items: center;   /* 세로 가운데 정렬 */
    gap: 10px;             /* name / value 간격 */
    margin-bottom: 6px;
}

.board-skin .board__view article .extravars .item > div:first-child {
    min-width: 80px;      /* 라벨 폭 고정 (선택) */
    font-weight: 600;
}

.board-skin .board__view article .extravars .item > div:last-child {
    flex: 1;               /* 값 영역이 남은 공간 채움 */
}


.board-skin .board__view article .rhymix_content {
  font-size: 16px;
  color: var(--xet-theme-text-strong-color);
}
.board-skin .board__view article .manse {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 16px solid #FFFFFF14;
}
.board-skin .board__view article .vote-list {
  margin: 20px 0;
}
.board-skin .board__view article .vote-list .__title {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 24px;
  margin-bottom: 20px;
}
.board-skin .board__view article .vote-list .__title > strong {
  color: var(--xet-theme-text-strong-color);
}
.board-skin .board__view article .vote-list .vi-avatar-group {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.board-skin .board__view article .vote-list .vi-avatar-group > a > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 80px;
}
.board-skin .board__view .comment-title {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 24px;
  margin-bottom: 20px;
}
.board-skin .board__view .comment-title > strong {
  color: var(--xet-theme-text-strong-color);
}
.board-skin .board__view .comment-list > ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.board-skin .board__view .comment-list > ul li.comment-depth1 {
  padding-left: 48px;
}
.board-skin .board__view .comment-list > ul li + li {
  padding-top: 20px;
  border-top: 0.5px solid var(--xet-theme-border-color);
}
.board-skin .board__view .comment-list > ul li > .dp-flex {
  gap: 8px;
}
.board-skin .board__view .comment-list > ul li > .dp-flex .comment-profile .avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  overflow: hidden;
}
.board-skin .board__view .comment-list > ul li > .dp-flex .rhymix_content {
  font-size: 16px;
  color: var(--xet-theme-text-strong-color);
}
.board-skin .board__view .comment-list > ul li .vi-comment-vote-active {
  color: red;
}
.board-skin .board__view .comment-editor {
  margin-bottom: 20px;
}
.board-skin .board__view .comment-editor .xet-form .text-editor {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.board-skin .board__view .comment-editor .xet-form .text-editor .textarea {
  position: relative;
  flex-grow: 1;
  line-height: 0;
}
.board-skin .board__view .comment-editor .xet-form .text-editor textarea {
  width: 100%;
  height: 48px;
  padding: 16px 16px;
  background-color: var(--xet-theme-input-bg);
  border: 1px solid var(--xet-theme-input-border-color);
  border-radius: 24px;
}
.board-skin .board__view .comment-editor .xet-form .text-editor .emoji-btn {
  position: absolute;
  right: 12px;
  bottom: 6px;
  font-size: 20px;
}
.board-skin .board__view .comment-editor .xet-form .text-editor button[type=submit] {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 48px !important;
/*  background-color: var(--xet-theme-primary-color); */
  background-color: #EAEDF2;
  color: #111;
}
.board-skin .board__view .shareon {
  margin: 20px 0;
}
.board-skin .board__view .toolbar {
  z-index: 9;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  white-space: nowrap;
  border-radius: 16px 16px 0 0;
  background: #303030;
}
.board-skin .board__view .toolbar .comment-editor {
  padding: 8px;
  margin-bottom: 0;
}
.board-skin .board__view .toolbar > div:not(.comment-editor) {
  text-align: center;
  display: flex;
  align-items: center;
}
.board-skin .board__view .toolbar > div:not(.comment-editor) > div {
  flex-grow: 1;
}
.board-skin .board__view .toolbar > div:not(.comment-editor) a,
.board-skin .board__view .toolbar > div:not(.comment-editor) button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  outline: 0;
  border: 0;
  height: 48px;
  line-height: 1;
  margin: 0;
  color: var(--xet-theme-text-strong-color);
  background: none;
  appearance: none;
}
.board-skin .board__view .toolbar > div:not(.comment-editor) a.vi-article-vote-active, .board-skin .board__view .toolbar > div:not(.comment-editor) a.active,
.board-skin .board__view .toolbar > div:not(.comment-editor) button.vi-article-vote-active,
.board-skin .board__view .toolbar > div:not(.comment-editor) button.active {
  color: red;
}

@media (min-width: 992px) {		/* PC 일때 */
  .board-skin .snsPostForm {
    width: 700px;
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translateX(-50%);
  }
  .board-skin .board__view {
    padding: 20px;
  }
  .board-skin .board__view + .board-list {
    padding: 20px;
  }
  .board-skin .board__view article .images {
    margin: -20px;
    margin-bottom: 20px;
  }
  .board-skin .board__view .toolbar {
    width: calc( 700px - 56px );
    left: calc( 50% + 84px );
    right: auto;
    bottom: 0;
    transform: translateX(-50%);
  }
  .board-skin + .board-skin {
    padding: 20px;
  }
  .board-skin .xet-btn.write_document {
    bottom: 32px;
    right: 32px;
  }
  .board-skin .xet-btn.write_document:hover {
    background-color: var(--xet-theme-primary-color);
    color: #111;
  }
}