
.tab_menu{
	display: flex;	
	justify-content: space-between;
	align-items: stretch;
	gap: .2rem;
	width: 100%;
	padding: 0;
	margin: 0;
}
.tab_menu>div{
	width: 100%;
	background: #fff;
  border: 1px solid rgba(var(--color-main-rgb), .5);
	padding: .7rem .2rem;
	border-radius: .3rem;
}
.tab_menu .active{
	background:  var(--color-main);
  border: 1px solid var(--color-main);
}
.tab_menu a{
	display: block;
  font-family: "GmarketSansMedium", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-weight: 500;
	font-size: .9rem;
	text-align: center;
	width: 100%;
	height: 100%;	
}
.tab_menu .active a{
	color: #fff;
}


.board_list_photo {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  border-top: 1px solid var(--color-main);
  border-bottom: 1px solid #f1f1f1;
  margin: 1rem 0 0 0;
  padding: 1rem 0;
}
.board_list_photo .photo_item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
  width: 33.33%;
  padding: 1rem;
  margin: 0;
}
.board_list_photo .photo_item .pic {
  width: 100%;
  aspect-ratio: 1 / 1; /* 1:1 비율 지정 */
  overflow: hidden;
}
.board_list_photo .photo_item .pic img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1; /* 1:1 비율 지정 */
  object-fit: cover;
  object-position: center center;
  transition-duration: 1s;
}
.board_list_photo .photo_item:hover .pic img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.board_list_photo .photo_item .subject {
  font-family: "GmarketSansMedium", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #222;
  text-align: center;
  word-break: keep-all;
  word-wrap: break-word;
}
@media (max-width: 991.98px) {
  .board_list_photo .photo_item {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .board_list_photo {
    gap: 2rem .3rem;
    justify-content: space-between;
  }
  .board_list_photo .photo_item {
    width: 49%;
    padding: 0;
  }
  .board_list_photo .photo_item .pic {
    width: 100%;
    max-height: 400px;
  }
  .board_list_photo .photo_item .subject {
    font-size: .9rem;
    padding: 0 .5rem;
  }
}




.prod_wrap{
	width: 100%;
	display: flex;
  flex-direction: column;
	padding: 0;
	margin: 0;
}
.prod_view_info{
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0;
	margin: 0;
  font-family: "GmarketSansMedium", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  word-break: keep-all;
  word-wrap: break-word;
}
.prod_view_info .pic{
}
.prod_view_info .pic img{
	max-width: 400px;
}
.prod_view_info .info{
	width: 50%;
}
.prod_view_info h1{
	font-weight: 700;
	font-size: 2.0rem;
  word-break: keep-all;
  word-wrap: break-word;
  padding-bottom: 10px;
	border-bottom: 1px solid #111;
}
.prod_view_info .summary{
	margin-top: 2rem;
	font-size: .9rem;
  word-break: keep-all;
  word-wrap: break-word;
}
.prod_view_detail{
	width: 100%;
	padding: 1rem 0;
	margin: 3rem 0;
  font-family: "GmarketSansMedium", system-ui, -apple-system, "Noto Sans",
    sans-serif;
	font-weight: 500;
	font-size: .9rem;
  word-break: keep-all;
  word-wrap: break-word;
  border-top: 1px solid #a7a7a7;
  border-bottom: 1px solid #a7a7a7;
}
.prod_view_detail img{
  padding: .1rem 0;
}
@media (max-width: 767.98px) {
  .prod_wrap{
    padding: 0 1rem;
  }
  .prod_view_info{
    flex-direction: column;
  }
  .prod_view_info .pic,
  .prod_view_info .info,
  .prod_view_detail{
    width: 100%;
  }
  .prod_view_info .pic img{
    width: 100%;
  }
  .prod_view_info h1{
    font-weight: 500;
    font-size: 1.7rem;
    padding-top: .5rem;
  }
}



.no_data {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0 2.5rem 0;
  font-size: 0.8rem;
  text-align: center;
}