@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
  --bg-dark: #040910;
  --bg-light: #f4f4f4;
  --text: #111827;
  --muted: #717783;
  --line: #e8eaed;
  --teal: #11c4c8;
  --teal-dark: #0eaeb2;
  --button: #2a3946;
  --container: 1440px;
  --content: 1120px;
  --bg-page:#fff;
  --text-main:#222830;
  --text-sub:#5f6770;
  --accent:#14b5bc;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(calc(100% - 80px), var(--container));
  margin: 0 auto;
}
.content-wrap {
  width: min(100%, var(--content));
  margin: 0 auto;
}

/* Çì´õ ÀüÃ¼ (¹è°æÀº Ç®Æø À¯Áö) */
.header {
  width: 100%;
  position: relative;
  z-index: 100;
}

/* ±âº» */
.inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 160px;
  box-sizing: border-box;
}

.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  height: 26px;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}


/* 1440 ÀÌÇÏ */
@media (max-width: 1440px) {
  .inner {
    padding: 0 100px;
  }
}


/* 1200 ÀÌÇÏ */
@media (max-width: 1200px) {
  .inner {
    padding: 0 64px;
  }

  .header .inner {
    height: 56px;
  }

  .nav {
    gap: 32px;
  }

  .nav a {
    font-size: 14px;
  }
}


/* 900 ÀÌÇÏ */
@media (max-width: 900px) {
  .inner {
    padding: 0 20px;
  }

  .header .inner {
    height: 48px;
  }

  .logo {
    height: 20px;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 13px;
  }
}

/* Main */
.page-main { background: #fff; }
.hero-band {
  position: relative;
  width: 100%;
  min-height: 1160px;
  background: var(--bg-dark);
  overflow: hidden;
}
.hero-band::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 720px;
  background: url('./assets/hero_photo2.png') center top / cover no-repeat;
  filter: none;
}
.hero-band::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 620px;
  height: 180px;
  background: linear-gradient(to bottom, rgba(4,9,16,0) 0%, rgba(4,9,16,0.05) 20%, rgba(4,9,16,0.88) 48%, var(--bg-dark) 64%, var(--bg-dark) 100%);
  z-index: 1;
}
.hero-head {
  margin-bottom: 180px; 
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 300px;
}
.hero-grid {
  position: relative;
  min-height: 1240px;
}
.hero-title {
  margin: 0;
  color: #fff;
  font-weight: 800;
  font-size: 64px;
  line-height: 1.12;
  letter-spacing: -0.04em;text-align:center;
}
.hero-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: url('./assets/hero_bubbles.png') no-repeat;
  background-position: right 0px top 480px;
}
.hero-copy {
  margin-top: 280px;
  color: #fff;
}
.hero-copy p {
  margin: 0;
  font-size: 48px;
  line-height: 1.42;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.hero-stats {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 270px 220px;
  gap: 72px 68px;
  width: 510px;
}
.stat small {
  display: block;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.stat strong {
  display: block;
  color: #fff;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}
.stat:nth-child(3) {
  grid-column: 1 / 2;
}
.hero-bubbles {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 520px;
  height: 430px;
}
/*.bubble {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.04em;
  box-shadow: 0 0 0 1px rgba(87,107,131,0.25);
}
.bubble::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(69, 94, 119, 0.35);
}
.bubble.education {
  width: 188px;
  height: 188px;
  right: 12px;
  bottom: 6px;
  background: var(--teal);
  font-size: 22px;
  line-height: 1.35;
}
.bubble.mentoring {
  width: 132px;
  height: 132px;
  right: 24px;
  top: 32px;
  background: #596675;
  font-size: 18px;
}
.bubble.ai {
  width: 98px;
  height: 98px;
  right: 146px;
  top: 136px;
  background: #c6c8cc;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}
.bubble.ebs {
  width: 104px;
  height: 104px;
  left: 128px;
  bottom: 66px;
  background: #09abae;
  font-size: 12px;
  line-height: 1.28;
}
.bubble.lms {
  width: 52px;
  height: 52px;
  left: 196px;
  bottom: 18px;
  background: #465363;
  font-size: 10px;
}
.bubble .ebs-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin: 0 auto 8px;
  background: radial-gradient(circle at 36% 44%, #0de0e2 0 22%, #1f3f66 23% 52%, #0de0e2 53% 70%, transparent 71%), #2a3947;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.16);
}
*/
.dot {
  position: absolute;
  border-radius: 50%;
  background: #58697a;
  opacity: 0.9;
}
.dot.d1 { width: 14px; height: 14px; left: 160px; top: 210px; }
.dot.d2 { width: 18px; height: 18px; left: 70px; top: 282px; background: #404c59; }
.dot.d3 { width: 14px; height: 14px; left: 188px; bottom: 44px; background: #98a8b8; }
.dot.d4 { width: 12px; height: 12px; right: 172px; top: 52px; background: #5f7389; }

.services-section {
  background: var(--bg-light);
  padding: 126px 0 112px;
}
.section-title {
  margin: 0;
  text-align: center;
  font-size: 54px;
  line-height: 1.35;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #1b2430;
}
.section-copy {
  margin: 24px auto 0;
  max-width: 920px;
  text-align: center;
  color: #5e6673;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: -0.03em;
}
.service-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 62px 56px;
}
.service-card {
  color: #111827;
}
.service-card img {
  width: 100%;
  aspect-ratio: 1.02 / 1;
  object-fit: cover;
  border-radius: 16px;
}
.service-card h3 {
  margin: 30px 0 10px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.service-card p {
  margin: 0;
  color: #676f7b;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: -0.03em;
}
.service-card a {
  display: inline-flex;
  margin-top: 16px;
  color:var(--accent);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-section {
  background: var(--bg-light);
  padding: 54px 0 132px;
}
.logo-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.logo-item {
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 4px;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-item img {
  max-width: 100%;
  object-fit: contain;
}

/* Footer */
.site-footer { width: 100%;;
 }
.footer-cta {
  position: relative;
  min-height: 380px;
  background: #000;
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./assets/cta_bg.png') center / cover no-repeat;
}
.footer-cta .container {
  position: relative;
  z-index: 1;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-eyebrow {
  color:var(--accent);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 800;
}
.footer-title {
  margin: 30px 0 0;
  color: #fff;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.footer-button {
  margin-top: 56px;
  min-width: 260px;
  height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  background: #2d3b47;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}
.footer-bottom {
  background: var(--bg-light);  padding: 56px 0 72px;
}
.footer-bottom .content-wrap {
  color: #777d87;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.02em;
}
.footer-company {
  color: #1f2937;
  font-weight: 700;
  font-size:19px;margin-bottom:8px;
}
.footer-policy {
  margin-top: 16px;
  color: #95a0ad;
  font-weight: 600;
}

.full-page-demo {
  border: 0;
  width: 100%;
  display: block;
}

@media (max-width: 1200px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .hero-band { min-height: 980px; }
  .hero-inner { padding-top: 240px; }
  .hero-title { font-size: 56px; }
  .hero-copy { margin-top: 210px; }
  .hero-copy p { font-size: 42px; }
  .hero-stats { grid-template-columns: 1fr 1fr; width: 420px; gap: 28px 40px; }
  .stat strong { font-size: 46px; }
  .hero-bubbles { transform: scale(0.85); transform-origin: right bottom; right: 0; }
  .section-title { font-size: 44px; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header .container { height: 54px; }
  .main-nav { gap: 16px; font-size: 10px; }
  .hero-band { min-height: 760px; }
  .hero-band::before { height: 260px; }
  .hero-band::after { inset: 160px 0 0 0; }
  .hero-inner { padding-top: 120px; padding-bottom: 56px; }
  .hero-head {margin-bottom: 56px;}
  .hero-grid { min-height: 540px;}
  .hero-grid {
    background-size: 300px auto;
    background-position: right 0px bottom 0px;
  }
  .hero-title { font-size: 34px; }
  .hero-copy { margin-top: 40px; max-width: 100%; }
  .hero-copy p { font-size: 20px; }
  .hero-stats {
    width: 100%;margin-top:50px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }
  .stat strong { font-size: 32px; }
  .stat small { font-size: 12px; }
  .hero-bubbles {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 280px;
    margin-top: 38px;
    transform: scale(0.72);
    transform-origin: center center;
  }
  .services-section { padding: 72px 0 70px; }
  .section-title { font-size: 30px; }
  .section-copy { font-size: 13px; }
  .service-card p { font-size: 13px; }
  /*.service-grid { grid-template-columns: 1fr; gap: 34px; }*/
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 26px;}
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-title { font-size: 24px; }
  .footer-eyebrow{ font-size: 15px; }
	.footer-bottom .content-wrap {
	  font-size: 13px;
	}
}


.about-page{
  background:var(--bg-page);
  color:var(--text-main);
}

.about-page *{
  box-sizing:border-box;
}
.about-intro{
  
}

.section-space{
  padding:118px 0;
    width: min(calc(100% - 80px), var(--container));
    margin: 0 auto;}

.section-divider{
  border-top:1px solid var(--line);
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

.section-kicker{
  margin:0 0 20px;
  font-size:24px;
  font-weight:700;
  line-height:1;
  color:var(--accent);
}

.history-head .section-kicker{
  margin:0 0 20px;
  font-size:24px;
  font-weight:700;
  line-height:1;
  color:var(--accent);
}

.page-title{
  margin:0;
  font-size:48px;
  line-height:1.2;
  letter-spacing:-0.04em;
  font-weight:700;
}

.page-desc{
  margin:18px 0 0;
  font-size:20px;
  line-height:1.8;
  color:var(--text-sub);
}

.about-hero-image img{
  display:block;
  width:100%;
  height:440px;
  object-fit:cover;
}

.value-card{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 520px;
  /*align-items:center;*/
  gap:82px;
}

.value-card.reverse{
  grid-template-columns:520px minmax(0, 1fr);
}

.value-copy h2{
  margin:0 0 30px;
  font-size:40px;
  line-height:1.4;
  letter-spacing:-0.04em;
  font-weight:700;
}

.history-head h2{
  margin:0 0 30px;
  font-size:40px;
  line-height:1.4;
  letter-spacing:-0.04em;
  font-weight:700;
}

.cert-head h2{
  margin:0 0 30px;
  font-size:40px;
  line-height:1.4;
  letter-spacing:-0.04em;
  font-weight:700;
}

.value-copy p:last-child{
  margin:0;
  font-size:19px;
  line-height:1.8;
  color:var(--text-sub);
}

.value-media{
  justify-self:end;
}

.value-card.reverse .value-media{
  justify-self:start;
}

.value-media img{
  display:block;
  width:100%;
  max-width:584px;
  object-fit:cover;
  border-radius:8px;
}

.history-head{
  max-width:780px;
  margin-bottom:58px;
}

.history-head p{
  margin:0;
  font-size:19px;
  line-height:1.8;
  color:var(--text-sub);
}

.timeline{
  position:relative;
  padding:32px 0 0;
}

.timeline::before{
  content:"";
  position:absolute;
  top:10px;
  bottom:0;
  left:50%;
  width:1px;
  background:#d8d8d8;
  transform:translateX(-50%);
}

.timeline-item{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:74px;
  /*align-items:center;*/
  margin-bottom:58px;
}

.timeline-item::before{
  content:"";
  position:absolute;
  top:20px;
  left:50%;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
  transform:translateX(-50%);
  box-shadow:0 0 0 12px var(--bg-page);
}

.timeline-item.left .timeline-card,
.timeline-item.left .timeline-content{
  grid-row:1;
}

.timeline-item.right .timeline-content{
  order:1;
  text-align:left;
  padding-left:30px;
}
.timeline-item.right .timeline-card{
  order:2;
}

.timeline-card{
  width:100%;
}

.timeline-item.left .timeline-card{
  padding-right:38px;
}

.timeline-item.right .timeline-card{
  padding-left:38px;
}

.timeline-card img{
  display:block;
  width:100%;
  max-width:426px;
  height:330px;
  object-fit:cover;
  border-radius:12px;
}

.timeline-item.left .timeline-card{
  display:flex;
  justify-content:flex-start;
}

.timeline-item.right .timeline-card{
  display:flex;
  justify-content:flex-end;
}

.timeline-content{
  max-width:500px;
}

.timeline-item.left .timeline-content{
  padding-left:100px;
}

.timeline-content h3{
  margin:0 0 24px;
  font-size:48px;
  line-height:1;
  letter-spacing:-0.03em;
  color:var(--accent);
  font-weight:600;
}

.timeline-year-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline-year-list > li {
  display: grid;
  grid-template-columns: 100px 1fr;
  column-gap: 28px;
  align-items: start;
  margin-bottom: 22px;
}

.timeline-year-list > li > span {
  display: block;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
  color: #5d6875;
  letter-spacing: -0.02em;
}

.timeline-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timeline-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  color: #2f3640;
  letter-spacing: -0.05em;
}

.timeline-text small {
  display: block;
  margin-top: -2px;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 400;
  color: #8e97a3;
  letter-spacing: -0.01em;
}

.cert-head{
  margin-bottom:44px;
}

.cert-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:40px 60px;
  align-items:start;
}

.cert-item{
  margin:0;
}

.cert-item img{
  display:block;
  width:100%;
  background:#fff;
  object-fit:contain;
}

.cert-item figcaption{
  margin-top:12px;
  font-size:15px;
  line-height:1.5;
  color:#6f7681;
}

.cert-grid .cert-item:nth-child(5),
.cert-grid .cert-item:nth-child(6){
  grid-column:span 1;
}

@media (max-width: 1200px){
  .container,
  .container.narrow{
    width:min(100% - 64px, var(--container));
  }

  .value-card,
  .value-card.reverse{
    grid-template-columns:1fr 440px;
    gap:56px;
  }

  .page-title,
  .value-copy h2,
  .history-head h2,
  .cert-head h2{
    font-size:44px;
  }

  .timeline-item{
    gap:52px;
  }

  .timeline-card img{
    max-width:360px;
    height:206px;
  }
}

@media (max-width: 900px){
  .section-space{
    padding:56px 0;
  }

  .about-hero-image img{
    height:250px;
  }

  .value-card,
  .value-card.reverse{
    grid-template-columns:1fr;
    gap:28px;
  }

  .value-card.reverse .value-media{
    order:-1;
  }

  .value-media,
  .value-card.reverse .value-media{
    justify-self:start;
  }

  .value-media img{
    max-width:100%;
    height:auto;
  }

  .timeline {
    padding-top: 8px;
    padding-left: 0;
  }

  .timeline::before {
    left: 14px;
    top: 0;
    bottom: 0;
    transform: none;
  }

  .timeline-item {
    position: relative;
    display: block;
    margin-bottom: 40px;
    padding-left: 40px; /* ¸ðµç itemÀÇ ½ÃÀÛ ±âÁØ ÅëÀÏ */
  }

  .timeline-item::before {
    left: 14px;
    top: 14px;
    transform: translateX(-50%);
  }


  .timeline-content h3 {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1;
  }

  .timeline-year-list {
    margin: 0;
    padding: 0;
  }

  .timeline-year-list > li {
    display: grid;
    grid-template-columns: 66px 1fr;
    column-gap: 14px;
    align-items: start;
    margin-bottom: 18px;
  }

  .timeline-year-list > li > span {
    font-size: 15px;
    line-height: 1.35;
    white-space: nowrap;
  }

  .timeline-text {
    gap: 8px;
  }

  .timeline-text p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.03em;
    word-break: keep-all;
  }

  .timeline-text small {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .timeline-card {
    display: none;
  }
  /* left / right Â÷ÀÌ ¿ÏÀüÈ÷ Á¦°Å */
  .timeline-item.left .timeline-content,
  .timeline-item.right .timeline-content {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  .timeline-item.left .timeline-card,
  .timeline-item.right .timeline-card {
    display: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
  }

  .timeline-content {
    max-width: none;
    margin: 0;
  }
  .timeline-card img{
    display:none;
  }

  .history-head{
    max-width:none;
  }

  .cert-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .page-title,
  .value-copy h2,
  .history-head h2,
  .cert-head h2{
    font-size:28px;
  }

  .page-desc,
  .value-copy p:last-child,
  .history-head p{
    font-size:14px;
  }
.section-kicker{
  font-size:18px;
}

}


.service-tabs-wrap{
  border-bottom:1px solid var(--line);
}
.service-tabs{
  display:flex;
  align-items:center;
  gap:38px;
  min-height:44px;
  overflow-x:auto;
  white-space:nowrap;
}
.service-tabs a{
  position:relative;
  padding:24px 2px;
  font-size:17px;
  line-height:1;
  color:#788991;
  text-decoration:none;
  flex:0 0 auto;
  font-weight:600;
}
.service-tabs a.is-active{
  color:var(--accent);
}
.service-tabs a.is-active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:3px; background:var(--accent);
}
.section-head{
  /*max-width:940px;*/
  margin-bottom:28px;
}
.section-head h2,
.service-copy h2{
  margin:0 0 18px;
  font-size:40px;
  line-height:1.28;
  font-weight:700;
  letter-spacing:-0.03em;
}
.section-head p,
.service-copy p,
.section-copy p{
  margin:0 0 18px;
  font-size:19px;
  line-height:1.8;
  letter-spacing:-0.01em;
  color:var(--text-sub);
}
.accent{
  color:var(--accent)!important;
  font-weight:600;
}
.thumb-row{
  display:grid;
  gap:40px;
  padding:20px 0;
  width:100%;
}
.thumb-row-3{grid-template-columns:repeat(3, minmax(0,1fr))}
.thumb-row-2{grid-template-columns:repeat(2, minmax(0,1fr))}
.thumb-card{
  margin:0;
  border-radius:12px;
  overflow:hidden;
  background:#ddd;
}
.thumb-card img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.thumb-row-3 .thumb-card{height:340px}
.thumb-row-2 .thumb-card{height:340px}
.top-gap-sm{margin-top:10px}
.mt-22{margin-top:22px}
.section-copy{
  max-width:1160px;
  margin-top:18px;
}
.text-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:60px;
  height:24px;
  margin-top:22px;
  padding:0 12px;
  border:1px solid #ddd;
  border-radius:4px;
  background:#f8f8f8;
  color:#9da5af;
  font-size:11px;
  text-decoration:none;
}
.service-grid-poster{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:52px;
  align-items:start;
}
.poster-card{
  margin:0;
  justify-self:end;
  width:360px;
  border-radius:12px;
  overflow:hidden;
}
.poster-card img{
  display:block;
  width:100%;
  height:auto;
}
.service-copy{max-width:1160px}
.service-copy p:last-child{margin-bottom:0}


html{
  scroll-behavior:smooth;
}

/* ÅÇ sticky */
.service-tabs-wrap{
  position:sticky;
  top:0;
  z-index:80;
  background:#fff;
}

/* sticky »óÅÂÀÏ ¶§ »ìÂ¦ ±×¸²ÀÚ
.service-tabs-wrap.is-stuck{
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
} */

/* ÅÇ ½ºÅ©·Ñ¹Ù ¼û±è */
.service-tabs{
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.service-tabs::-webkit-scrollbar{
  display:none;
}

/* ¼½¼Ç µµÂø À§Ä¡ º¸Á¤ */
.service-section{
  scroll-margin-top:65px;
}


@media (max-width:900px){
  .container{width:min(100% - 40px, var(--container))}
  .thumb-row-3{grid-template-columns:1fr}
  .thumb-row-2{grid-template-columns:1fr}
  .service-grid,
  .service-grid-right{grid-template-columns:1fr; gap:24px}
  .poster-card,.poster-note,.lms-card{justify-self:start}

.service-tabs{
  gap:24px;
}
.service-tabs a{
  position:relative;
  padding:18px 2px;
  font-size:14px;
  line-height:1;
  color:#788991;
  text-decoration:none;
  flex:0 0 auto;
  font-weight:600;
}

.section-head{
  /*max-width:940px;
  margin-bottom:28px;*/
}
.section-head h2,
.service-copy h2{
  font-size:28px;
}
.section-head p,
.service-copy p,
.section-copy p{
  font-size:14px;
}

  .service-grid-poster {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .service-copy {
    max-width: 100%;
    min-width: 0;
  }

  .service-copy h2 {
    font-size: 28px;
    line-height: 1.3;
    margin: 0 0 16px;
    word-break: keep-all;
  }

  .service-copy p {
    font-size: 15px;
    line-height: 1.7;
    word-break: keep-all;
  }

  .poster-card {
    width: 100%;
    max-width: 360px;
    justify-self: center;
  }

  .service-grid-poster {
    grid-template-columns: 1fr;
    gap: 24px;
  }

}
