


/* 디자인 구매가이드 */
.portfolio-section {
  max-width: 1300px;
  margin: 0 auto;

}



.portfolio-title {
  font-family: 'Pretendard Variable', "Noto Sans KR", sans-serif !important;
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 60px;
  max-width: 600px;
  line-height: 1.2;
  word-break: keep-all;
  color: #111;
}


.portfolio-item {
    box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  width: 100%;

}

.portfolio-thumb {
  box-sizing: border-box;
  /*background: #e0e0e0;*/
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #888;
  overflow: hidden;
  border: 1px solid #ddd;
 border-top-left-radius: 10px;
 border-top-right-radius: 10px;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;

  display: block;
  box-sizing: border-box;
}

.portfolio-text {
  padding: 20px;
}

.portfolio-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 550;
}

.portfolio-text h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}

.portfolio-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-weight: 500;
}

/* Swiper 기본 설정 */
.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #007bff;
}

/* 포트폴리오 슬라이더에서는 화살표만 안 보이게 */
.portfolioSwiper .swiper-button-next,
.portfolioSwiper .swiper-button-prev {
  display: none !important;
}

.swiper-pagination {
  margin-top: 20px;
  position: relative;
  text-align: center;
}

@media (max-width: 992px) {
  .swiper {
	padding-bottom: 40px;
  }
}


/* 디자인 구매가이드 */
/*.section-2.hero-slide {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background-color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
}*/

.section-2.hero-slide {
  position: relative;
  width: 100%;

  min-height: 700px;     /* 최소 높이만 보장 */
  height: auto;          /* 콘텐츠에 맞게 늘어남 */
  overflow: visible;     /* 넘치는 콘텐츠도 표시 */
  padding: 80px 20px; 
  background-color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.section-2 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(60%); /* 이미지 어둡게 */
}

.overlay-section {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}

.overlay-section h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.overlay-section p {
  font-size: 18px;
  margin-bottom: 60px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/*.pro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC 4개 고정 *
  gap: 40px;
  width: 1300px;
}*/

.pro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC 4개 고정 */
  gap: 40px;
  max-width: 1300px; width: 100%;
}

.pro-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px 30px 0;
  color: #222;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.pro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

.pro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #0056d2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

/*.pro-card:hover::before {
  transform: scaleX(1);
}*/

.icon-circle {
  width: 80px;
  height: 80px;
  background: #cdd9f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: transform 0.3s ease;
}

.pro-card:hover .icon-circle {
  transform: scale(1.1);
}

.icon-circle img {
  width: 40px;
  height: 40px;
}

.pro-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.pro-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  font-weight: 400;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 1024px) {
  .pro-grid {
	grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pro-grid {
	grid-template-columns: 1fr;
  }
}





.section-3 {
  padding: 100px 20px;
  background: #fff;
}

.board-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* ✅ 2개 고정 */
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.board-box {
    background: #000;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.board-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: white;
}

.plus-icon {
  font-size: 22px;
  font-weight: bold;
  background: #eee;
  color: #333;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.board-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.board-box li {
  margin-bottom: 18px;
  display: flex;
  gap: 14px;
  line-height: 1.6;
}

.board-box ul li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #a9a9a9; /* ✅ 얇은 회색 밑줄 */
}



.board-box .date {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  min-width: 60px;
}

.board-box .text {
  color: #fff;
  font-size: 15px;
}

.board-box .text strong {
  display: block;
  color: #ffb400;
  font-weight: 700;
  font-size: 18px;
  margin-top: -2px;
}

@media (max-width: 768px) {
  .board-wrapper {
    grid-template-columns: 1fr;
  }

  .board-box {
    padding: 24px;
  }

  .board-header h3 {
    font-size: 20px;
  }

  .board-box .text {
    font-size: 14px;
  }
}


	.port-conta {
		width: 100%;
		max-width: 1300px;
		margin: 0 auto;
	}

	.port_title {
		font-size: 38px;
		margin-bottom: 60px;
		font-weight: 600;
		text-align: center;
		color: #111;
	}


	/* 550px 이하 */
	@media (max-width: 550px) {
	.box-area_hp01 {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
		flex-wrap: wrap;
	}

	.box-area_hp01 .item01 {
		width:100%;
		border: 1px solid #cdcdcd;
	}

	.box-area_hp01 .item01 img {
		width: 100%;
		box-sizing: border-box;
		display: block;
	}
	}



	/* 551px ~ 1200px 구간 */
	@media (min-width: 551px) and (max-width: 1200px) {
	.box-area_hp01 {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
		flex-wrap: wrap;
	}

	.box-area_hp01 .item01 {
		width: calc((100% - (1 * 20px)) /2);
		border: 1px solid #cdcdcd;
	}

	.box-area_hp01 .item01 img {
		width: 100%;
		box-sizing: border-box;
		display: block;
	}
	}



	/* 1201px 이상 pc 크기*/
	@media (min-width: 1201px) {
	.box-area_hp01 {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
		flex-wrap: wrap;
	}

	.box-area_hp01 .item01 {
		width: calc((100% - (3 * 20px)) /4);
		border: 1px solid #cdcdcd;
	}

	.box-area_hp01 .item01 img {
		width: 100%;
		box-sizing: border-box;
		display: block;
	}
	}




	/* 550px 이하 */
	@media (max-width: 550px) {
	.container-custom {
		width: 100%;
		margin: 0 auto;
	}

	.box-area_custom {
		display: flex;
		gap: 40px;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}

	.box-area_custom .item {
		width:100%;
		background: #000;
		height: auto;
		border-radius: 20px;
		padding: 30px 0;
		margin: 0 20px;
	}

	.box-area_custom .item img {
		width: 100%;
		height: auto;
		box-sizing: border-box;
	}

	.text-1 {
		font-size: 22px;
		font-weight: 600;
		text-align: center;
		padding-bottom: 20px;
		color: #fff;
	}

	.item-1 {
	}

	.item-1 .gp {
		display: flex;
		padding-left: 20px;
		padding-top: 10px;
	}

	.item-1 .gp-1 {
		font-size: 15px;
		color: #fa9404;
	}

	.item-1 .gp-2 {
		font-size: 15px;
		color: #fff;
		padding-left: 30px;
	}

	.line {
		border-bottom: 1px solid #fff;
		margin:10px 20px;
	}
	}

	/* 551px ~ 1200px 구간 */
	@media (min-width: 551px) and (max-width: 1200px) {
	.container-custom {
		width: 1300px;
		margin: 0 auto;
	}

	.box-area_custom {
		display: flex;
		gap: 40px;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}

	.box-area_custom .item {
		width: calc((100% - (1 * 40px)) / 2);
		background: #000;
		height: auto;
		border-radius: 20px;
		padding: 30px 0;
	}

	.box-area_custom .item img {
		width: 100%;
		height: auto;
		box-sizing: border-box;
	}

	.text-1 {
		font-size: 22px;
		font-weight: 600;
		text-align: center;
		padding-bottom: 20px;
		color: #fff;
	}

	.item-1 {

	}

	.item-1 .gp {
		display: flex;
		padding-left: 20px;
		padding-top: 10px;
	}

	.item-1 .gp-1 {
		font-size: 15px;
		color: #fa9404;
	}

	.item-1 .gp-2 {
		font-size: 15px;
		color: #fff;
		padding-left: 30px;
	}

	.line {
		border-bottom: 1px solid #fff;
		margin:10px 20px;
	}
	}
	/* 1201px 이상 pc 크기*/
	@media (min-width: 1201px) {
	.container-custom {
		width: 1300px;
		margin: 0 auto;
	}

	.box-area_custom {
		display: flex;
		gap: 40px;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}

	.box-area_custom .item {
		width: calc((100% - (2 * 40px)) / 3);
		background: #000;
		height: auto;
		border-radius: 20px;
		padding: 30px 0;
	}

	.box-area_custom .item img {
		width: 100%;
		height: auto;
		box-sizing: border-box;
	}

	.text-1 {
		font-size: 22px;
		font-weight: 600;
		text-align: center;
		padding-bottom: 20px;
		color: #fff;
	}

	.item-1 {

	}

	.item-1 .gp {
		display: flex;
		padding-left: 20px;
		padding-top: 10px;
	}

	.item-1 .gp-1 {
		font-size: 15px;
		color: #fa9404;
	}

	.item-1 .gp-2 {
		font-size: 15px;
		color: #fff;
		padding-left: 30px;
	}

	.line {
		border-bottom: 1px solid #fff;
		margin:10px 20px;
	}
	}
