main{
  margin: 100px 0 0 ;
}
/* 상단 영역 */
.sub-visual {
  background-image: url('../images/experiences/corporate-top-bg.png');
}


/* 상단 코퍼레이트 타이틀 */
.corporate-title{
  width: 85%;
  margin: 0 auto;
  padding: 100px 0;
}


/* package */

.workshop-title-bg-wrap{
  width: 100%;
  height: 70px;
  background-color: var(--color-secondary);
}
.workshop-title{
  width: 85%;
  height: 100%;
  margin: 0 auto;
  display: flex;  
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
}
.small-title-wrap{
  display: flex;
  height: 100%;
  align-items: center;
  gap: 10px;
}
.small-title-wrap h3{
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}
.small-title-wrap span{
  padding-top: 5px;
}
.workshop-title a{
  color: var(--color-white);
  border: 1px solid var(--color-white);
  padding: 7px 15px;
  display: block;
  font-size: var(--fs-sm);
  transition: all 0.2s;
}
.workshop-title a:hover{
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  background-color: var(--color-white);
}
.workshop-detail {
  width: 85%;
  margin: 50px auto 0;
}
.workshop-detail .package-wrap{
  display: flex;
  gap: 20px;
}
.workshop-cont{
  flex: 1;
  position: relative;
}
.workshop-cont .img-wrap img{
  width: 100%;
}
.text-wrap{
  position: absolute;
  bottom: 0; left: 0;
  background-color: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 35%;
  padding: 20px 30px;
  color: var(--color-white);
}
.text-wrap h4{
  font-size: var(--fs-lg);
  margin-bottom: 10px;
}
.text-wrap p{
  font-size: var(--fs-md);
  line-height: 1.5;
  font-weight: 300;
}
.detail-text{
  color: #7d7d7d;
  margin-top: 30px;
  line-height: 1.5;
}



/* 하단 정보 배너 */
.bottom-banner{
  width: 100%;
  height: 350px;
  background-image: url(../images/experiences/corporate-bnr-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  color: var(--color-white);
  padding-left: 7%;
  padding-top: 40px;
  background-size: cover;
  margin-top: 100px;
}
.bottom-banner h3{
  font-size: clamp(1.35rem, 1.9vw, 1.45rem);
  font-weight: 500;
}
.bottom-banner p{
  font-size: clamp(0.97em, 1.6vw, 1.25rem);
  margin: 10px 0 60px;
  font-weight: 300;
  line-height: 1.4;
}
.bottom-banner .info{
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  font-weight: 300;
}
.bottom-banner .info b{
  font-weight: 500;
}
.bottom-banner .info a{
  color: var(--color-white);
}


/* 1280이하 */
@media (max-width : 1279px){
  .workshop-detail .package-wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .text-wrap{
    height: 25%;
  }
}

/* 980이하 */
@media (max-width : 980px){
  .text-wrap{
    height: 35%;
    border-radius: 0 0 10px 10px;
  }
    .workshop-cont .img-wrap {
    border-radius: 10px;
    overflow: hidden;
  }
}
/* 767이하 */
@media (max-width: 767px) {
  .sub-visual {
    height: 300px;
  }
  .corporate-title{     
    padding: 40px 20px;   
  }

/* package */
  .workshop-title-bg-wrap{
    height: 100px;
  }
  .small-title-wrap{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 20px;
  }


  /* 하단배너 */
  .bottom-banner{
    width: 85%;
    margin: 50px auto 40px;
    border-radius: 10px;
    padding: 60px 5% 0;
    background-position: 70% 0;
  }
  .bottom-banner .info{
    padding-right: 15px;
    line-height: 1.6;
  }
  .bottom-banner p{
    margin: 10px 0 30px;
  }
}

@media (max-width: 629px){
  .workshop-detail .package-wrap{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .text-wrap{
    height: 35%;
  }
}
@media (max-width: 431px){
   /* 하단배너 */
  .bottom-banner{
    padding: 30px 5% 0;
  }
}