:root{
  --corp-bg: #F1EEFF;
  --corp-ink: #151C29;
  --corp-accent: var(--brand-600);
}

.corp_hero{
  background: var(--corp-bg);
  overflow: hidden;
}

.corp_hero .container{
  width: 100%;
  max-width: 1240px;
  min-width: 997px;
  padding: 96px 80px 84px;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  /* gap: 60px; */
  position: relative;
}

.corp_title{
  font: var(--title-title2-b);
  letter-spacing: var(--ls-title-title2-b);
  color: var(--corp-ink);
  line-height: 1.25;
}
.corp_title .brand{
  color: var(--corp-accent);
}

.corp_left{
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 10px;
}

.corp_illust{
  width: 100%;
  max-width: 720px;
  margin-left: -8px;
}
.corp_illust img{
  width: 100%;
  height: auto;
  display: block;
}
.corp_illust .illust_main{
    width: 100%;
    height: 100%;
    min-height: 300px;
    background : url('/images/member/illust.png') no-repeat left  center;
    background-size: contain;

}


.corp_right{
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 36px;
}

.corp_desc{
  display: flex;
  flex-direction: column;
  /* gap: 16px; */
  color: var(--neutral-750);
  /* font: var(--body-body2-r); */
  font-size: 17px;
  letter-spacing: var(--ls-body-body2-r);
  line-height: 1.55;
  margin-top: 66px;
}

.corp_emphasis{
  margin-top: 8px;
  color: var(--corp-accent);
  font: var(--title-title5-b);
  letter-spacing: var(--ls-title-title5-b);
  line-height: 1.35;
}

.corp_sign{
  margin-top: 10px;
  color: var(--neutral-750);
  font: var(--body-body2-m);
  letter-spacing: var(--ls-body-body2-m);
  line-height: 1.55;
}

/* decorations (simple doodle 느낌) */
.corp_deco{
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.95;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,0.02));
}

.corp_deco.cloud{
    background: url('/images/member/icons-cloud.png') no-repeat center center;
    background-repeat: no-repeat;
}

.corp_deco.cloud.large{
    background-size: calc(370px / 3) calc(300px / 3);
    width: calc(370px / 3); 
    height: calc(300px / 3);
}
.corp_deco.cloud.medium{
    background-size: calc(370px / 4) calc(300px / 4);
    width: calc(370px / 4);
    height: calc(300px / 4);
}



.corp_deco.star{
  background: url('/images/member/icons-star.png') no-repeat center center;
  background-repeat: no-repeat;
}

.corp_deco.star.small {
    background-size: calc(313px / 9) calc(331px / 9);
  width: calc(313px / 9);
  height: calc(331px / 9);
}
.corp_deco.star.medium {
    transform: rotate(30deg);
    background-size: calc(313px / 6) calc(331px / 6);
    width: calc(313px / 6);
    height: calc(331px / 6);
}
.corp_deco.star.large {
    background-size: calc(313px / 5) calc(331px / 5);
    width: calc(313px / 5);
    height: calc(331px / 5);
}


.corp_deco.swirl{
    background: url('/images/member/icons-swirl.png') no-repeat center center;
    background-repeat: no-repeat;
    background-size: calc(299px / 7) calc(322px / 7);
    width: calc(299px / 7);
    height: calc(322px / 7);
}

.corp_deco.tl{left: 44px;top: 70px;transform: rotate(-162deg);}
.corp_deco.t{left: 46%; top: 22%; }
.corp_deco.tr{right: 80px; top: 22%}
.corp_deco.bl{left: 64px; bottom: 92px;}

.corp_deco.br0{right: 60px; bottom: 180px;}
.corp_deco.br{right: 50px; bottom: 120px;}
.corp_deco.br2{right: 72px; bottom: 26px; transform: scale(0.9);}

/* wide but slightly smaller screens */
@media (max-width: 1200px){
  .corp_hero .container{
    padding: 84px 48px 72px;
    gap: 40px;
  }
  .corp_title{font: var(--title-title3-b); letter-spacing: var(--ls-title-title3-b);}
}
