/* 상품권 서비스 메인 */
.ghome{
  --orange:#ff8a32;
  --blue:#16a6e8;
  --deep:#16569d;
  --yellow:#ffd91f;
  --text:#202329;
  --muted:#737b86;
  --line:#e8eaee;
  --shadow:0 12px 34px rgba(34,45,62,.10);
  color:var(--text);
  background:#fff;
  font-family:"Noto Sans KR","Malgun Gothic","Apple SD Gothic Neo",Arial,sans-serif;
}
.ghome *{box-sizing:border-box}
.ghome a{text-decoration:none}
.ghome-shell{
  width:min(1120px,calc(100% - 36px));
  margin:0 auto;
}

.ghome-hero{
  min-height:420px;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 18% 82%,rgba(80,24,190,.35),transparent 38%),
    linear-gradient(110deg,#6b24e7 0%,#b40cdd 100%);
  background-size:cover;
  background-position:center;
  color:#fff;
}
.ghome-hero__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:center;
}
.ghome-kicker{
  margin:0 0 10px;
  font-weight:800;
  opacity:.88;
}
.ghome-hero h1{
  margin:0;
  font-size:40px;
  line-height:1.26;
}
.ghome-hero__description{
  margin:16px 0 0;
  color:rgba(255,255,255,.9);
  line-height:1.75;
}
.ghome-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}
.ghome-button{
  display:inline-flex;
  min-height:46px;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border-radius:999px;
  font-weight:900;
}
.ghome-button--light{
  background:#fff;
  color:#6350bd;
}
.ghome-button--ghost{
  border:1px solid rgba(255,255,255,.55);
  color:#fff;
}
.ghome-hero__visual{
  display:flex;
  justify-content:center;
  align-items:center;
}
.ghome-hero__visual img{
  width:100%;
  max-height:330px;
  object-fit:contain;
}
.ghome-ticket{
  width:min(360px,100%);
  padding:34px;
  border:8px solid #fff;
  border-radius:10px;
  background:linear-gradient(135deg,#f5e1c3,#fff);
  color:#30343a;
  box-shadow:0 26px 60px rgba(30,0,70,.28);
  transform:rotate(2deg);
}
.ghome-ticket span{display:block;font-size:18px;font-weight:900}
.ghome-ticket strong{display:block;margin-top:16px;font-size:36px}
.ghome-ticket small{display:block;margin-top:24px;color:#7b6e60}
.ghome-section{
  padding:62px 0;
}
.ghome-section--compact{
  padding-top:52px;
  padding-bottom:22px;
}
.ghome-live-grid{
  display:grid;
  grid-template-columns:minmax(0,1.7fr) minmax(290px,.8fr);
  gap:34px;
  align-items:start;
}
.ghome-section-title{
  text-align:center;
}
.ghome-section-title--left{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:end;
  text-align:left;
}
.ghome-section-title p{
  margin:0;
  color:var(--blue);
  font-size:13px;
  font-weight:900;
}
.ghome-section-title h2{
  margin:7px 0 0;
  font-size:28px;
}
.ghome-section-title span{
  display:block;
  margin-top:10px;
  color:var(--muted);
}
.ghome-section-title a{
  color:var(--blue);
  font-weight:800;
}
.ghome-live-list{
  margin-top:18px;
}
.ghome-live-list article{
  display:grid;
  grid-template-columns:minmax(0,1fr) 92px 105px 82px;
  gap:12px;
  align-items:center;
  padding:8px 0;
}
.ghome-live__product{
  display:flex;
  gap:8px;
  align-items:center;
  min-width:0;
}
.ghome-live__product strong{
  overflow:hidden;
  font-size:14px;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.ghome-live__icon{color:#ef473a}
.ghome-live-list time,
.ghome-live__user{
  color:#8b929d;
  font-size:12px;
}
.ghome-status{
  display:inline-flex;
  min-height:28px;
  align-items:center;
  justify-content:center;
  padding:0 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
}
.ghome-status--orange{background:#ffedf0;color:#ef6b75}
.ghome-status--blue{background:#e8f5ff;color:#2995d3}
.ghome-status--green{background:#eaf8ef;color:#147a40}
.ghome-status--yellow{background:#fff8dc;color:#856500}
.ghome-status--red{background:#fff0f0;color:#b42318}
.ghome-status--gray{background:#eef0f3;color:#5d6570}
.ghome-contact-card{
  padding:28px;
  border-radius:20px;
  background:#fff;
  box-shadow:var(--shadow);
}
.ghome-contact-card>p{
  margin:0;
  font-weight:800;
}
.ghome-contact-card>strong{
  display:block;
  margin-top:8px;
  font-size:30px;
}
.ghome-contact-card dl{
  margin:20px 0 0;
}
.ghome-contact-card dl div{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:7px 0;
}
.ghome-contact-card dt{
  font-size:13px;
  font-weight:800;
}
.ghome-contact-card dd{
  margin:0;
  font-size:13px;
}
.ghome-contact-card__actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:20px;
}
.ghome-contact-card__actions a{
  display:flex;
  min-height:40px;
  align-items:center;
  justify-content:center;
  border:1px solid #7ec5f0;
  border-radius:6px;
  color:#51a6dd;
  font-size:12px;
  font-weight:900;
}
.ghome-contact-card__actions a:last-child{
  border-color:var(--yellow);
  background:var(--yellow);
  color:#594b00;
}
.ghome-apply-card{
  padding:46px 52px;
  border-radius:20px;
  background:#fff;
  box-shadow:var(--shadow);
}
.ghome-product-tabs{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  margin-top:28px;
}
.ghome-product-tabs button{
  min-height:58px;
  padding:8px 10px;
  border:1px solid #e1e5e9;
  border-radius:6px;
  background:#fff;
  cursor:pointer;
}
.ghome-product-tabs button strong,
.ghome-product-tabs button span{
  display:block;
}
.ghome-product-tabs button strong{
  overflow:hidden;
  font-size:12px;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.ghome-product-tabs button span{
  margin-top:4px;
  color:var(--muted);
  font-size:12px;
}
.ghome-product-tabs button.is-active{
  border-color:#6ebff1;
  background:#6ebff1;
  color:#fff;
}
.ghome-product-tabs button.is-active span{
  color:#fff;
}
.ghome-quick-form{
  margin-top:26px;
}
.ghome-form-row{
  display:grid;
  grid-template-columns:120px minmax(0,1fr);
  gap:18px;
  align-items:center;
  padding:16px 0;
  border-bottom:1px solid var(--line);
}
.ghome-form-row>label{
  font-weight:800;
}
.ghome-input-wrap{
  display:flex;
  align-items:center;
  gap:8px;
}
.ghome-input-wrap input{
  width:100%;
  height:48px;
  padding:0 14px;
  border:1px solid #dfe3e8;
  border-radius:7px;
  background:#f7f8fa;
  font-size:16px;
}
.ghome-form-row--result{
  grid-template-columns:1fr 1fr;
  gap:12px;
  border-bottom:0;
}
.ghome-form-row--result>div{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:16px;
  border-radius:8px;
  background:#f7f8fa;
}
.ghome-form-row--result span{
  color:var(--muted);
}
.ghome-apply-submit{
  display:flex;
  min-height:54px;
  margin:24px auto 0;
  align-items:center;
  justify-content:center;
  padding:0 28px;
  border:0;
  border-radius:999px;
  background:var(--orange);
  color:#fff;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
}
.ghome-apply-submit:disabled{
  opacity:.55;
  cursor:not-allowed;
}
.ghome-section--banner{
  padding-top:18px;
  padding-bottom:20px;
}
.ghome-banner{
  display:block;
  width:100%;
  max-height:260px;
  border-radius:20px;
  object-fit:cover;
  box-shadow:var(--shadow);
}
.ghome-benefits{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin-top:28px;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.ghome-benefits article{
  min-height:210px;
  padding:28px 22px;
  border-right:1px solid var(--line);
  background:#fff;
  text-align:center;
}
.ghome-benefits article:last-child{border-right:0}
.ghome-benefits article>span{
  display:grid;
  width:64px;
  height:64px;
  margin:0 auto;
  place-items:center;
  border-radius:50%;
  background:#edf7fe;
  color:var(--blue);
  font-size:18px;
  font-weight:900;
}
.ghome-benefits h3{
  margin:18px 0 8px;
  font-size:16px;
}
.ghome-benefits p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}
.ghome-section--faq{
  background:#f8f9fb;
}
.ghome-faq{
  max-width:860px;
  margin:28px auto 0;
}
.ghome-faq details{
  border-bottom:1px solid #dfe3e8;
  background:#fff;
}
.ghome-faq details:first-child{
  border-radius:12px 12px 0 0;
}
.ghome-faq details:last-child{
  border-bottom:0;
  border-radius:0 0 12px 12px;
}
.ghome-faq summary{
  padding:18px 20px;
  font-weight:900;
  cursor:pointer;
}
.ghome-faq details p{
  margin:0;
  padding:0 20px 20px;
  color:var(--muted);
  line-height:1.7;
}
.ghome-floating{
  position:fixed;
  right:22px;
  top:50%;
  z-index:90;
  width:86px;
  overflow:hidden;
  border-radius:12px;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
  transform:translateY(-50%);
}
.ghome-floating a{
  display:flex;
  min-height:72px;
  align-items:center;
  justify-content:center;
  padding:8px;
  text-align:center;
  font-size:12px;
  font-weight:900;
}
.ghome-floating__apply{
  background:var(--blue);
  color:#fff;
}
.ghome-floating__kakao{
  background:var(--yellow);
  color:#423800;
}
.ghome-floating__phone{
  background:var(--deep);
  color:#fff;
}
.ghome-mobile-bar{display:none}
.ghome-footer{
  padding:34px 0 86px;
  background:#444;
  color:#d9d9d9;
}
.ghome-footer__grid{
  display:flex;
  justify-content:space-between;
  gap:24px;
}
.ghome-footer strong{
  color:#fff;
  font-size:18px;
}
.ghome-footer p{
  margin:8px 0 0;
  font-size:12px;
  line-height:1.7;
}
.ghome-footer__links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-content:flex-start;
}
.ghome-footer__links a{
  color:#fff;
  font-size:12px;
}
.ghome-empty{
  padding:28px;
  text-align:center;
  color:var(--muted);
}
@media(max-width:980px){
  .ghome-live-grid{grid-template-columns:1fr}
  .ghome-product-tabs{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:760px){
  .ghome-shell{
    width:min(100% - 24px,1120px);
  }
  .ghome-header__inner{
    min-height:64px;
  }
  .ghome-nav{
    top:64px;
    left:12px;
    right:12px;
    grid-template-columns:1fr!important;
  }
  .ghome-hero{
    min-height:auto;
    padding:44px 0 34px;
  }
  .ghome-hero__grid{
    grid-template-columns:1fr;
    gap:26px;
  }
  .ghome-hero__content{
    text-align:center;
  }
  .ghome-hero h1{
    font-size:30px;
  }
  .ghome-hero__actions{
    display:grid;
    grid-template-columns:1fr;
  }
  .ghome-hero__visual img{
    max-height:230px;
  }
  .ghome-ticket{
    padding:24px;
  }
  .ghome-section{
    padding:42px 0;
  }
  .ghome-section-title h2{
    font-size:24px;
  }
  .ghome-section-title--left{
    align-items:start;
  }
  .ghome-live-list article{
    grid-template-columns:minmax(0,1fr) 80px;
    gap:8px;
    padding:10px 0;
    border-bottom:1px solid var(--line);
  }
  .ghome-live-list time{
    text-align:right;
  }
  .ghome-live__user{
    padding-left:28px;
  }
  .ghome-status{
    justify-self:end;
  }
  .ghome-contact-card{
    padding:22px;
  }
  .ghome-contact-card__actions{
    grid-template-columns:1fr;
  }
  .ghome-apply-card{
    padding:28px 18px;
  }
  .ghome-product-tabs{
    grid-template-columns:1fr 1fr;
  }
  .ghome-form-row{
    grid-template-columns:1fr;
    gap:8px;
  }
  .ghome-form-row--result{
    grid-template-columns:1fr;
  }
  .ghome-benefits{
    grid-template-columns:1fr 1fr;
  }
  .ghome-benefits article{
    min-height:190px;
    border-bottom:1px solid var(--line);
  }
  .ghome-benefits article:nth-child(2n){
    border-right:0;
  }
  .ghome-floating{
    display:none;
  }
  .ghome-mobile-bar{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:110;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    min-height:62px;
    box-shadow:0 -8px 24px rgba(0,0,0,.14);
  }
  .ghome-mobile-bar a{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#333;
    font-size:13px;
    font-weight:900;
  }
  .ghome-mobile-bar a:first-child{
    background:var(--blue);
    color:#fff;
  }
  .ghome-footer{
    padding-bottom:90px;
  }
  .ghome-footer__grid{
    display:block;
  }
  .ghome-footer__links{
    margin-top:18px;
  }
}
@media(max-width:480px){
  .ghome-brand strong{
    max-width:170px;
    overflow:hidden;
    font-size:15px;
    text-overflow:ellipsis;
    white-space:nowrap;
  }
  .ghome-product-tabs{
    grid-template-columns:1fr;
  }
  .ghome-benefits{
    grid-template-columns:1fr;
  }
  .ghome-benefits article{
    border-right:0;
  }
}
