.sta-landing-page{
  display:grid;
  gap:20px;
  width:100%;
}

.sta-landing-section{
  --sta-landing-ink:#1F2A20;
  --sta-landing-muted:#5b635c;
  --sta-landing-border:#e9e5e1;
  --sta-landing-bg:#ffffff;
  --sta-landing-soft:#faf9f7;
  --sta-landing-green:#3D7031;
  --sta-landing-gold:#C3A890;
  background:var(--sta-landing-bg);
  border:1px solid var(--sta-landing-border);
  border-radius:18px;
  box-shadow:0 12px 32px rgba(0,0,0,.05);
  padding:clamp(18px,2.2vw,28px);
  color:var(--sta-landing-ink);
}

.sta-landing-section.is-plain{
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
}

.sta-landing-section.is-plain .sta-landing-shortcodes{
  display:grid;
  gap:0;
}

.sta-landing-section.is-fullbleed{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

.sta-landing-section__header{
  margin-bottom:16px;
}

.sta-landing-section__eyebrow{
  margin:0 0 6px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--sta-landing-green);
}

.sta-landing-section__title{
  margin:0;
  font-size:clamp(26px,3vw,40px);
  line-height:1.12;
}

.sta-landing-section__intro{
  margin-top:10px;
  color:var(--sta-landing-muted);
  line-height:1.75;
}

.sta-landing-section__intro > *:last-child,
.sta-landing-rich-text__content > *:last-child,
.sta-landing-card__text > *:last-child,
.sta-landing-team-card__bio > *:last-child,
.sta-landing-cta__text > *:last-child,
.sta-landing-faq__answer > *:last-child,
.sta-resource-card__description > *:last-child,
.sta-landing-comparison__footnote > *:last-child{
  margin-bottom:0;
}

.sta-landing-grid{
  display:grid;
  gap:16px;
}

.sta-landing-grid--2{ grid-template-columns:repeat(2,minmax(0,1fr)); }
.sta-landing-grid--3{ grid-template-columns:repeat(3,minmax(0,1fr)); }
.sta-landing-grid--4{ grid-template-columns:repeat(4,minmax(0,1fr)); }

.sta-landing-card,
.sta-landing-team-card,
.sta-landing-media-card,
.sta-resource-card{
  border:1px solid var(--sta-landing-border);
  border-radius:16px;
  overflow:hidden;
  background:var(--sta-landing-soft);
  box-shadow:0 8px 22px rgba(0,0,0,.04);
}

.sta-landing-card__media img,
.sta-landing-team-card__media img,
.sta-landing-media-card__media img,
.sta-resource-card__media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.sta-landing-card__media img,
.sta-landing-media-card__media img,
.sta-resource-card__media img{
  aspect-ratio:4/3;
}

.sta-landing-team-card__media img{
  aspect-ratio:1/1;
}

.sta-landing-card__body,
.sta-landing-team-card__body,
.sta-landing-media-card__body,
.sta-resource-card__body{
  padding:16px;
}

.sta-landing-card__eyebrow,
.sta-resource-card__eyebrow{
  margin:0 0 8px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--sta-landing-green);
}

.sta-landing-card__title,
.sta-landing-team-card__name,
.sta-landing-media-card__title,
.sta-resource-card__title{
  margin:0;
  font-size:20px;
  line-height:1.25;
}

.sta-landing-card__text,
.sta-landing-team-card__bio,
.sta-resource-card__description{
  margin-top:10px;
  color:var(--sta-landing-muted);
  line-height:1.65;
}

.sta-landing-team-card__role{
  margin:8px 0 0;
  font-weight:700;
  color:var(--sta-landing-green);
}

.sta-landing-card__link,
.sta-resource-card__button,
.sta-landing-media-card__link{
  color:inherit;
  text-decoration:none;
}

.sta-landing-card__link,
.sta-resource-card__button{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  font-weight:800;
  color:var(--sta-landing-green);
}

.sta-landing-promo-grid{
  display:grid;
  gap:18px;
}

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

.sta-landing-promo-card{
  position:relative;
  min-height:540px;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.16);
  isolation:isolate;
  background:#1F2A20;
}

.sta-landing-promo-card__link{
  position:relative;
  display:flex;
  min-height:100%;
  color:#fff;
  text-decoration:none;
}

.sta-landing-promo-card__media,
.sta-landing-promo-card__media img,
.sta-landing-promo-card__overlay,
.sta-landing-promo-card__content{
  position:absolute;
  inset:0;
}

.sta-landing-promo-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1);
  transition:transform .45s ease;
}

.sta-landing-promo-card__overlay{
  background:linear-gradient(180deg,rgba(31,42,32,.22) 0%,rgba(31,42,32,.24) 18%,rgba(31,42,32,.36) 46%,rgba(31,42,32,.52) 72%,rgba(31,42,32,.68) 100%);
  transition:background .35s ease;
}

.sta-landing-promo-card__content{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:24px;
  padding:34px 26px 24px;
  z-index:2;
}

.sta-landing-promo-card__copy{
  max-width:100%;
}

.sta-landing-promo-card__eyebrow{
  margin:0 0 10px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#E8E3D5;
}

.sta-landing-promo-card__title{
  margin:0 0 16px;
  font-size:clamp(28px,3vw,44px);
  line-height:1.04;
  font-weight:800;
  color:#fff;
  text-shadow:0 2px 12px rgba(0,0,0,.22);
}

.sta-landing-promo-card__text{
  max-width:28rem;
  color:#E8E3D5;
  font-size:clamp(17px,1.15vw,22px);
  line-height:1.7;
  font-weight:700;
  text-shadow:0 2px 10px rgba(0,0,0,.18);
}

.sta-landing-promo-card__text p{
  margin:0;
}

.sta-landing-promo-card__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:fit-content;
  max-width:100%;
  padding:14px 24px;
  border-radius:999px;
  background:#3D7031;
  color:#E8E3D5;
  font-size:17px;
  font-weight:800;
  line-height:1.1;
  box-shadow:0 10px 24px rgba(0,0,0,.16);
  transition:background-color .28s ease,color .28s ease,transform .28s ease,box-shadow .28s ease;
}

.sta-landing-promo-card__link:hover .sta-landing-promo-card__media img{
  transform:scale(1.06);
}

.sta-landing-promo-card__link:hover .sta-landing-promo-card__overlay{
  background:linear-gradient(180deg,rgba(31,42,32,.34) 0%,rgba(31,42,32,.36) 18%,rgba(31,42,32,.46) 46%,rgba(31,42,32,.58) 72%,rgba(31,42,32,.74) 100%);
}

.sta-landing-promo-card__link:hover .sta-landing-promo-card__button{
  background:#C3A890;
  color:#1F2A20;
  box-shadow:0 14px 28px rgba(0,0,0,.2);
}

.sta-landing-section.sta-summer-camps-links{
  position:relative;
  overflow:hidden;
  padding:36px 0;
}

.sta-landing-section.sta-summer-camps-links::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 10% 0%,rgba(255,204,102,.18),transparent 55%),
    radial-gradient(900px 420px at 90% 10%,rgba(255,153,102,.18),transparent 55%),
    linear-gradient(180deg,#fff9f1 0%,#fff4e9 45%,#fffdfb 100%);
  pointer-events:none;
}

.sta-summer-camps-links .sta-landing-section__header,
.sta-summer-camps-links .sta-landing-promo-grid{
  position:relative;
  z-index:1;
  width:100%;
  max-width:1280px;
  margin-inline:auto;
  padding-inline:16px;
}

.sta-summer-camps-links .sta-landing-section__header{
  text-align:center;
  margin-bottom:22px;
}

.sta-summer-camps-links .sta-landing-section__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:34px;
  margin:0;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.65);
  border:1px solid rgba(255,255,255,.45);
  box-shadow:0 8px 20px rgba(0,0,0,.05);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  color:#9a4d1f;
  font-size:12px;
  font-weight:800;
  letter-spacing:0;
  text-transform:none;
}

.sta-summer-camps-links .sta-landing-section__eyebrow::before{
  content:"☀️";
  font-size:13px;
}

.sta-summer-camps-links .sta-landing-section__title{
  margin:12px 0 8px;
  color:#1b2230;
  font-size:clamp(26px,3vw,42px);
  line-height:1.15;
}

.sta-summer-camps-links .sta-landing-section__intro{
  max-width:860px;
  margin:0 auto;
  color:rgba(27,34,48,.72);
  font-size:15px;
  line-height:1.75;
}

.sta-summer-camps-links .sta-landing-promo-grid{
  gap:20px;
}

.sta-summer-camps-links .sta-landing-promo-card{
  position:relative;
  min-width:0;
  min-height:auto;
  border-radius:0;
  overflow:visible;
  box-shadow:none;
  background:transparent;
}

.sta-summer-camps-links .sta-landing-promo-card__link{
  position:relative;
  display:block;
  width:100%;
  min-height:520px;
  aspect-ratio:918 / 650;
  border-radius:28px;
  overflow:hidden;
  color:inherit;
  box-shadow:0 18px 44px rgba(0,0,0,.12);
  transform:translateY(0);
  transition:transform .22s ease,box-shadow .22s ease;
}

.sta-summer-camps-links .sta-landing-promo-card__link:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 54px rgba(0,0,0,.16);
}

.sta-summer-camps-links .sta-landing-promo-card__media,
.sta-summer-camps-links .sta-landing-promo-card__overlay,
.sta-summer-camps-links .sta-landing-promo-card__content{
  position:absolute;
  inset:0;
}

.sta-summer-camps-links .sta-landing-promo-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1);
  transition:transform .35s ease;
}

.sta-summer-camps-links .sta-landing-promo-card__link:hover .sta-landing-promo-card__media img{
  transform:scale(1.03);
}

.sta-summer-camps-links .sta-landing-promo-card__overlay{
  background:linear-gradient(180deg,rgba(15,23,42,.18) 0%,rgba(15,23,42,.08) 22%,rgba(15,23,42,.68) 100%);
}

.sta-summer-camps-links .sta-landing-promo-card__content{
  display:flex;
  align-items:flex-end;
  justify-content:stretch;
  gap:0;
  padding:0;
  z-index:2;
}

.sta-summer-camps-links .sta-landing-promo-card__panel{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  padding:18px 18px 16px;
  border-radius:22px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.26);
  box-shadow:0 14px 34px rgba(0,0,0,.12);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.sta-summer-camps-links .sta-landing-promo-card__pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:10px;
}

.sta-summer-camps-links .sta-landing-promo-card__pill{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(255,255,255,.5);
  color:#7a3b1b;
  font-size:12px;
  font-weight:800;
  line-height:1;
}

.sta-summer-camps-links .sta-landing-promo-card__copy{
  max-width:none;
}

.sta-summer-camps-links .sta-landing-promo-card__title{
  margin:0 0 8px;
  color:#fff;
  font-size:clamp(22px,2.2vw,32px);
  line-height:1.12;
  text-shadow:none;
}

.sta-summer-camps-links .sta-landing-promo-card__text{
  max-width:95%;
  color:rgba(255,255,255,.92);
  font-size:14px;
  line-height:1.7;
  font-weight:700;
  text-shadow:none;
}

.sta-summer-camps-links .sta-landing-promo-card__text p{
  margin:0 0 14px;
}

.sta-summer-camps-links .sta-landing-promo-card__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  width:auto;
  max-width:100%;
  padding:10px 16px;
  border-radius:999px;
  background:linear-gradient(180deg,#ffffff 0%,#f6f1eb 100%);
  color:#7a4b22;
  font-size:13px;
  font-weight:900;
  line-height:1;
  box-shadow:0 8px 18px rgba(0,0,0,.10);
}

.sta-summer-camps-links .sta-landing-promo-card__link:hover .sta-landing-promo-card__button{
  background:linear-gradient(180deg,#ffffff 0%,#f6f1eb 100%);
  color:#7a4b22;
  box-shadow:0 8px 18px rgba(0,0,0,.10);
}

.sta-landing-media-grid{
  display:grid;
  gap:16px;
}

.sta-landing-media-grid--2{ grid-template-columns:repeat(2,minmax(0,1fr)); }
.sta-landing-media-grid--3{ grid-template-columns:repeat(3,minmax(0,1fr)); }
.sta-landing-media-grid--4{ grid-template-columns:repeat(4,minmax(0,1fr)); }

.sta-landing-media-card__description{
  margin:10px 0 0;
  color:var(--sta-landing-muted);
}

.sta-landing-timeline{
  display:grid;
  gap:14px;
  margin:0;
  padding:0;
  list-style:none;
}

.sta-landing-timeline__item{
  display:grid;
  grid-template-columns:62px minmax(0,1fr);
  gap:14px;
  align-items:start;
  padding:16px;
  border:1px solid var(--sta-landing-border);
  border-radius:16px;
  background:var(--sta-landing-soft);
}

.sta-landing-timeline__index{
  display:grid;
  place-items:center;
  width:62px;
  height:62px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--sta-landing-gold);
  color:var(--sta-landing-green);
  font-size:18px;
  font-weight:900;
}

.sta-landing-timeline__title{
  margin:0;
  font-size:20px;
}

.sta-landing-timeline__text{
  margin-top:8px;
  color:var(--sta-landing-muted);
  line-height:1.65;
}

.sta-landing-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:22px;
  border-radius:18px;
  background:linear-gradient(135deg,#f9f7f3 0%,#ffffff 100%);
  border:1px solid var(--sta-landing-border);
}

.sta-landing-cta__copy{
  flex:1;
  min-width:0;
}

.sta-landing-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.sta-landing-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:180px;
  padding:12px 20px;
  border-radius:999px;
  background:var(--sta-landing-green);
  border:1px solid var(--sta-landing-green);
  color:#fff;
  font-weight:800;
  text-decoration:none;
  transition:.2s ease;
}

.sta-landing-button:hover{
  background:#2f5827;
  border-color:#2f5827;
  color:#fff;
}

.sta-landing-button.is-secondary{
  background:#fff;
  border-color:var(--sta-landing-gold);
  color:var(--sta-landing-green);
}

.sta-landing-button.is-secondary:hover{
  background:#f7f3ec;
  color:var(--sta-landing-green);
}

.sta-landing-faq{
  display:grid;
  gap:16px;
}

.sta-landing-faq__group-title{
  margin:0 0 10px;
  font-size:20px;
}

.sta-landing-faq__items{
  display:grid;
  gap:10px;
}

.sta-landing-faq__item{
  border:1px solid var(--sta-landing-border);
  border-radius:14px;
  background:var(--sta-landing-soft);
}

.sta-landing-faq__item summary{
  list-style:none;
  cursor:pointer;
  padding:14px 16px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:12px;
}

.sta-landing-faq__item summary::-webkit-details-marker{ display:none; }

.sta-landing-faq__item summary::after{
  content:"▾";
  margin-left:auto;
  color:var(--sta-landing-muted);
}

.sta-landing-faq__item[open] summary::after{
  transform:rotate(180deg);
}

.sta-landing-faq__answer{
  padding:0 16px 16px;
  color:var(--sta-landing-muted);
  line-height:1.65;
}

.sta-landing-comparison{
  overflow-x:auto;
}

.sta-landing-comparison__table{
  width:100%;
  min-width:720px;
  border-collapse:collapse;
}

.sta-landing-comparison__table th,
.sta-landing-comparison__table td{
  padding:14px 16px;
  border:1px solid var(--sta-landing-border);
  text-align:left;
  vertical-align:top;
}

.sta-landing-comparison__table thead th{
  background:#f7f3ec;
}

.sta-landing-comparison__heading{
  display:block;
  font-size:16px;
  font-weight:900;
}

.sta-landing-comparison__note,
.sta-landing-comparison__footnote{
  color:var(--sta-landing-muted);
  line-height:1.6;
}

.sta-landing-comparison-matrix__badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 14px;
}

.sta-landing-comparison-matrix__badge{
  display:inline-flex;
  align-items:center;
  border:1px solid var(--sta-landing-border);
  background:#fff;
  border-radius:999px;
  padding:8px 14px;
  font-size:13px;
  font-weight:800;
  color:var(--sta-landing-ink);
}

.sta-landing-comparison-matrix{
  overflow-x:auto;
  border:1px solid var(--sta-landing-border);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
}

.sta-landing-comparison-matrix__table{
  width:max-content;
  min-width:100%;
  border-collapse:separate;
  border-spacing:0;
}

.sta-landing-comparison-matrix__table th,
.sta-landing-comparison-matrix__table td{
  min-width:220px;
  padding:16px 16px;
  border-right:1px solid var(--sta-landing-border);
  border-bottom:1px solid var(--sta-landing-border);
  text-align:left;
  vertical-align:top;
  background:#fff;
}

.sta-landing-comparison-matrix__table thead th{
  font-weight:900;
}

.sta-landing-comparison-matrix__table thead tr:first-child th{
  background:#f7f3ec;
}

.sta-landing-comparison-matrix__group-row th:first-child{
  min-width:180px;
}

.sta-landing-comparison-matrix__group-row th:not(:first-child){
  color:var(--sta-landing-green);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
}

.sta-landing-comparison-matrix__campus-row th{
  background:#faf9f7;
  color:var(--sta-landing-ink);
  font-size:14px;
}

.sta-landing-comparison-matrix__campus.is-group-start,
.sta-landing-comparison-matrix__cell.is-group-start{
  border-left:3px solid var(--sta-landing-gold);
}

.sta-landing-comparison-matrix__row-label{
  position:sticky;
  left:0;
  z-index:1;
  min-width:180px;
  background:#faf9f7 !important;
  color:var(--sta-landing-ink);
}

.sta-landing-comparison-matrix__cell-lines{
  display:grid;
  gap:6px;
}

.sta-landing-comparison-matrix__line{
  color:var(--sta-landing-muted);
  line-height:1.55;
}

.sta-landing-comparison-matrix__footnote{
  margin-top:12px;
  color:var(--sta-landing-muted);
  line-height:1.6;
}

.sta-resource-hub__controls{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-bottom:14px;
}

.sta-resource-hub__control label{
  display:block;
  margin-bottom:6px;
  font-size:14px;
  font-weight:700;
}

.sta-resource-hub__control input,
.sta-resource-hub__control select{
  width:100%;
  min-height:48px;
  border:1px solid var(--sta-landing-border);
  border-radius:12px;
  background:#fff;
  padding:0 14px;
}

.sta-resource-hub__presets,
.sta-resource-card__tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.sta-resource-hub__preset,
.sta-resource-card__tags span{
  border:1px solid var(--sta-landing-border);
  background:#fff;
  border-radius:999px;
  padding:8px 12px;
  font-size:13px;
  font-weight:700;
}

.sta-resource-hub__preset{
  cursor:pointer;
}

.sta-resource-hub__count{
  margin:0 0 14px;
  color:var(--sta-landing-muted);
  font-weight:700;
}

.sta-resource-hub__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.sta-resource-hub__empty{
  margin:12px 0 0;
  padding:14px 16px;
  border:1px dashed var(--sta-landing-gold);
  border-radius:14px;
  background:#fbf9f4;
  color:var(--sta-landing-muted);
}

.sta-resource-card.is-hidden{
  display:none;
}

@media (max-width: 1024px){
  .sta-landing-grid--4,
  .sta-landing-grid--3,
  .sta-landing-media-grid--4,
  .sta-landing-media-grid--3,
  .sta-resource-hub__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .sta-landing-promo-grid--2{
    grid-template-columns:1fr;
  }
}

@media (max-width: 767px){
  .sta-landing-grid--4,
  .sta-landing-grid--3,
  .sta-landing-grid--2,
  .sta-landing-media-grid--4,
  .sta-landing-media-grid--3,
  .sta-landing-media-grid--2,
  .sta-resource-hub__grid,
  .sta-resource-hub__controls{
    grid-template-columns:1fr;
  }

  .sta-landing-cta,
  .sta-landing-timeline__item{
    grid-template-columns:1fr;
  }

  .sta-landing-timeline__index{
    width:52px;
    height:52px;
  }

  .sta-landing-button{
    width:100%;
  }

  .sta-landing-promo-card{
    min-height:460px;
  }

  .sta-landing-promo-card__content{
    padding:24px 18px 18px;
  }

  .sta-landing-promo-card__title{
    font-size:clamp(24px,7vw,34px);
  }

  .sta-landing-promo-card__text{
    font-size:16px;
  }

  .sta-landing-comparison-matrix__table th,
  .sta-landing-comparison-matrix__table td{
    min-width:190px;
    padding:14px 12px;
  }

  .sta-landing-comparison-matrix__row-label,
  .sta-landing-comparison-matrix__group-row th:first-child{
    min-width:150px;
  }

  .sta-landing-section.sta-summer-camps-links{
    padding:28px 0;
  }

  .sta-summer-camps-links .sta-landing-promo-card__link{
    min-height:300px;
    border-radius:20px;
  }

  .sta-summer-camps-links .sta-landing-promo-card__panel{
    left:12px;
    right:12px;
    bottom:12px;
    padding:14px;
    border-radius:16px;
  }

  .sta-summer-camps-links .sta-landing-promo-card__title{
    font-size:22px;
  }

  .sta-summer-camps-links .sta-landing-promo-card__text{
    max-width:100%;
    font-size:13px;
    line-height:1.6;
  }

  .sta-summer-camps-links .sta-landing-promo-card__button{
    width:100%;
    text-align:center;
  }
}

/* FAQ online parity */
.sta-faq-online-shell{
  --sta-faq-gold:#c3a890;
  --sta-faq-green:#3d7031;
  --sta-faq-ink:#2f3541;
  --sta-faq-line:rgba(195,168,144,.22);
  --sta-faq-shadow:0 12px 28px rgba(17,24,39,.08);
  width:min(1200px,100% - 32px);
  margin:0 auto;
  padding:0 0 32px;
}

.sta-faq-online-shell + .sta-faq-online-shell{
  padding-top:8px;
}

.sta-faq-online__lead{
  padding:18px 24px 2px;
}

.sta-faq-online__lead p{
  margin:0;
  font-size:clamp(16px,1.45vw,20px);
  line-height:1.9;
  color:var(--sta-faq-ink);
}

.sta-faq-online__lead strong{
  color:var(--sta-faq-green);
  font-weight:800;
}

.sta-faq-online__grid{
  display:grid;
  grid-template-columns:minmax(280px,420px) minmax(0,1fr);
  gap:28px;
  align-items:start;
  background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,248,242,.94));
  border:1px solid var(--sta-faq-line);
  border-radius:28px;
  box-shadow:var(--sta-faq-shadow);
  padding:28px;
}

.sta-faq-online__media{
  overflow:hidden;
  border-radius:24px;
  background:#f7f0e6;
}

.sta-faq-online__media img{
  display:block;
  width:100%;
  height:auto;
}

.sta-faq-online__title{
  margin:0 0 18px;
  font-size:clamp(28px,4vw,50px);
  line-height:1.08;
  font-weight:800;
  color:#2f2f2f;
}

.sta-faq-online__items{
  display:grid;
  gap:14px;
}

.sta-faq-online__item{
  border:1px solid rgba(61,112,49,.12);
  border-radius:18px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 8px 18px rgba(17,24,39,.04);
}

.sta-faq-online__item summary{
  position:relative;
  list-style:none;
  cursor:pointer;
  padding:18px 58px 18px 18px;
  font-size:16px;
  line-height:1.6;
  font-weight:700;
  color:var(--sta-faq-ink);
}

.sta-faq-online__item summary::-webkit-details-marker{
  display:none;
}

.sta-faq-online__item summary::after{
  content:"+";
  position:absolute;
  top:50%;
  right:18px;
  width:28px;
  height:28px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:translateY(-50%);
  color:var(--sta-faq-green);
  background:rgba(61,112,49,.08);
  font-size:18px;
  font-weight:800;
}

.sta-faq-online__item[open] summary::after{
  content:"−";
}

.sta-faq-online__answer{
  padding:0 18px 18px;
  color:var(--sta-faq-ink);
  font-size:15px;
  line-height:1.85;
}

.sta-faq-online__answer p,
.sta-faq-online__answer ul{
  margin:0;
}

.sta-faq-online__answer p + p,
.sta-faq-online__answer ul + p,
.sta-faq-online__answer p + ul,
.sta-faq-online__answer ul + ul{
  margin-top:12px;
}

.sta-faq-online__answer ul{
  padding-left:20px;
}

.sta-faq-online__answer a{
  color:#b42318;
  font-weight:700;
}

.sta-faq-online__promo{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:28px;
  align-items:stretch;
}

.sta-faq-online__benefits{
  display:grid;
  gap:14px;
  background:#fff;
  border:1px solid var(--sta-faq-line);
  border-radius:28px;
  padding:24px;
  box-shadow:var(--sta-faq-shadow);
}

.sta-faq-online__benefit{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.sta-faq-online__icon{
  width:52px;
  height:52px;
  border-radius:16px;
  background:#fff7ef;
  border:1px solid rgba(195,168,144,.28);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.sta-faq-online__icon img{
  width:28px;
  height:28px;
  object-fit:contain;
}

.sta-faq-online__benefit h3{
  margin:0 0 6px;
  font-size:20px;
  line-height:1.25;
  font-weight:800;
  color:#2f2f2f;
}

.sta-faq-online__benefit p{
  margin:0;
  font-size:15px;
  line-height:1.8;
  color:var(--sta-faq-ink);
}

.sta-faq-online__cta{
  position:relative;
  overflow:hidden;
  min-height:100%;
  border-radius:28px;
  background-size:cover;
  background-position:center;
  box-shadow:var(--sta-faq-shadow);
}

.sta-faq-online__cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(32,34,39,.74),rgba(61,112,49,.42));
}

.sta-faq-online__cta-body{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  min-height:100%;
  padding:34px;
  color:#fff;
}

.sta-faq-online__cta-kicker{
  margin:0 0 10px;
  font-size:13px;
  line-height:1.2;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#f6e9d9;
}

.sta-faq-online__cta h2{
  margin:0 0 12px;
  font-size:clamp(28px,3.4vw,44px);
  line-height:1.08;
  font-weight:800;
  color:#fff;
}

.sta-faq-online__cta p{
  margin:0 0 18px;
  font-size:16px;
  line-height:1.8;
  color:rgba(255,255,255,.92);
  max-width:34rem;
}

.sta-faq-online__cta-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 20px;
  border-radius:999px;
  background:#fff;
  color:#7c2d12;
  font-weight:800;
  text-decoration:none;
  width:max-content;
}

/* FAQ component parity */
.sta-faq-advantages,
.sta-faq-visa{
  --sta-bg:#f7f5f0;
  --sta-card:#233125;
  --sta-card-2:#1f2b21;
  --sta-card-open:#2d4932;
  --sta-card-open-2:#28422d;
  --sta-title:#c3a890;
  --sta-line:#3d7031;
  --sta-text:#f7f5f0;
  --sta-text-dark:#27312a;
  --sta-link:#cc0000;
  --sta-shadow:0 10px 26px rgba(0,0,0,.10);
  --sta-shadow-hover:0 16px 34px rgba(0,0,0,.16);
  --sta-shadow-gold:0 0 0 1px rgba(195,168,144,.16), 0 10px 28px rgba(195,168,144,.10);
  --sta-radius:14px;
  --sta-max:1200px;
  background:var(--sta-bg);
  padding:clamp(30px,4vw,70px) 18px;
  font-family:"Poppins","Noto Sans TC","PingFang TC","Microsoft JhengHei",sans-serif;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

html[lang="zh-cn"] .sta-faq-advantages,
html[lang="zh-cn"] .sta-faq-visa,
html[lang="zh-CN"] .sta-faq-advantages,
html[lang="zh-CN"] .sta-faq-visa,
html[lang^="zh-Hans"] .sta-faq-advantages,
html[lang^="zh-Hans"] .sta-faq-visa{
  font-family:"Noto Sans SC","PingFang SC","Hiragino Sans GB","Microsoft YaHei","Source Han Sans SC","Noto Sans TC",sans-serif;
}

html[lang^="ko"] .sta-faq-advantages,
html[lang^="ko"] .sta-faq-visa,
html[lang^="ko"] .sta-big-intro,
html[lang^="ko"] .sta-benefits-promo{
  font-family:"Noto Sans KR","Apple SD Gothic Neo","Malgun Gothic","Nanum Gothic",sans-serif;
}

html[lang^="ja"] .sta-faq-advantages,
html[lang^="ja"] .sta-faq-visa,
html[lang^="ja"] .sta-big-intro,
html[lang^="ja"] .sta-benefits-promo{
  font-family:"Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic","Meiryo",sans-serif;
}

.sta-faq-advantages *,
.sta-faq-visa *,
.sta-big-intro *,
.sta-benefits-promo *{
  box-sizing:border-box;
}

.sta-faq-advantages__wrap,
.sta-faq-visa__wrap{
  max-width:none;
  width:100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(280px,420px) minmax(320px,1fr);
  gap:clamp(26px,4vw,56px);
  align-items:start;
}

.sta-faq-advantages__visual,
.sta-faq-visa__visual{
  display:flex;
  flex-direction:column;
  align-self:stretch;
}

.sta-faq-advantages__heading,
.sta-faq-visa__heading{
  margin-bottom:clamp(20px,2.5vw,30px);
}

.sta-faq-advantages__heading h2,
.sta-faq-visa__heading h2{
  margin:0 0 16px;
  font-size:clamp(28px,3.1vw,48px);
  line-height:1.15;
  font-weight:800;
  color:var(--sta-title);
  letter-spacing:-.02em;
}

.sta-faq-advantages__line,
.sta-faq-visa__line{
  display:block;
  width:150px;
  height:4px;
  border-radius:999px;
  background:var(--sta-line);
}

.sta-faq-advantages__art,
.sta-faq-visa__art{
  width:100%;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  min-height:320px;
}

.sta-faq-advantages__art img,
.sta-faq-visa__art img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  opacity:.3;
}

.sta-faq-advantages__art img{
  max-width:470px;
}

.sta-faq-visa__art img{
  max-width:420px;
}

.sta-faq-advantages__faq,
.sta-faq-visa__faq{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.sta-faq-item,
.sta-faq-visa-item{
  background:linear-gradient(90deg,var(--sta-card-2) 0%,var(--sta-card) 100%);
  border-radius:var(--sta-radius);
  box-shadow:var(--sta-shadow);
  overflow:hidden;
  transition:transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.sta-faq-item:hover,
.sta-faq-visa-item:hover{
  transform:translateY(-3px);
  box-shadow:var(--sta-shadow-hover), var(--sta-shadow-gold);
}

.sta-faq-item[open],
.sta-faq-visa-item[open]{
  background:linear-gradient(90deg,var(--sta-card-open-2) 0%,var(--sta-card-open) 100%);
  box-shadow:0 14px 32px rgba(0,0,0,.14);
}

.sta-faq-item summary,
.sta-faq-visa-item summary{
  list-style:none;
  cursor:pointer;
  position:relative;
  padding:18px 64px 18px 28px;
  color:var(--sta-text);
  font-size:clamp(15px,1.15vw,20px);
  line-height:1.35;
  font-weight:800;
  outline:none;
  transition:color .25s ease, text-shadow .25s ease;
}

html[lang="zh-cn"] .sta-faq-item summary,
html[lang="zh-cn"] .sta-faq-visa-item summary,
html[lang="zh-CN"] .sta-faq-item summary,
html[lang="zh-CN"] .sta-faq-visa-item summary,
html[lang^="zh-Hans"] .sta-faq-item summary,
html[lang^="zh-Hans"] .sta-faq-visa-item summary{
  font-family:"Noto Sans SC","PingFang SC","Hiragino Sans GB","Microsoft YaHei","Source Han Sans SC","Noto Sans TC",sans-serif;
  font-weight:700;
}

.sta-faq-item summary::-webkit-details-marker,
.sta-faq-visa-item summary::-webkit-details-marker{
  display:none;
}

.sta-faq-item summary:hover,
.sta-faq-visa-item summary:hover{
  color:var(--sta-title);
  text-shadow:0 0 10px rgba(195,168,144,.10);
}

.sta-faq-item[open] summary,
.sta-faq-visa-item[open] summary{
  color:#f3eadb;
}

.sta-faq-item[open] summary:hover,
.sta-faq-visa-item[open] summary:hover{
  color:var(--sta-title);
}

.sta-faq-item summary::after,
.sta-faq-visa-item summary::after{
  content:"";
  position:absolute;
  right:22px;
  top:50%;
  width:12px;
  height:12px;
  border-right:2.5px solid var(--sta-text);
  border-bottom:2.5px solid var(--sta-text);
  transform:translateY(-65%) rotate(45deg);
  transition:transform .28s ease, border-color .25s ease, opacity .25s ease;
}

.sta-faq-item summary:hover::after,
.sta-faq-visa-item summary:hover::after{
  border-right-color:var(--sta-title);
  border-bottom-color:var(--sta-title);
}

.sta-faq-item[open] summary::after,
.sta-faq-visa-item[open] summary::after{
  transform:translateY(-30%) rotate(-135deg);
}

.sta-faq-item__content,
.sta-faq-visa-item__content{
  padding:0 28px 24px;
  color:var(--sta-text-dark);
  background:#f7f5f0;
}

.sta-faq-item__content p,
.sta-faq-visa-item__content p,
.sta-faq-visa-item__content li{
  font-size:clamp(15px,1.08vw,17px);
  line-height:1.8;
  color:var(--sta-text-dark);
}

.sta-faq-item__content ul,
.sta-faq-item__content li,
.sta-faq-item__content strong,
.sta-faq-visa-item__content ul,
.sta-faq-visa-item__content strong{
  color:var(--sta-text-dark);
}

.sta-faq-item__content strong,
.sta-faq-visa-item__content strong{
  font-weight:800;
}

.sta-faq-item__content p,
.sta-faq-visa-item__content p{
  margin:0 0 16px;
}

.sta-faq-item__content p:last-child,
.sta-faq-visa-item__content p:last-child{
  margin-bottom:0;
}

.sta-faq-visa-item__content ul{
  margin:0 0 16px;
  padding-left:20px;
}

.sta-faq-visa-item__content li{
  margin:0 0 10px;
}

.sta-faq-item__content a,
.sta-faq-visa-item__content a{
  color:var(--sta-link);
  text-decoration:none;
  word-break:break-word;
}

.sta-faq-item__content a:hover,
.sta-faq-visa-item__content a:hover{
  text-decoration:underline;
}

.sta-big-intro{
  --sta-gold:#c3a890;
  --sta-max:1280px;
  background:transparent;
  padding:12px 0 34px;
  font-family:"Poppins","Noto Sans TC","PingFang TC","Microsoft JhengHei",sans-serif;
}

.sta-big-intro__wrap{
  max-width:var(--sta-max);
  margin:0 auto;
  padding:0 24px;
}

.sta-big-intro h2{
  margin:0;
  color:var(--sta-gold);
  font-size:clamp(40px,6vw,104px);
  line-height:.92;
  font-weight:800;
  letter-spacing:-.04em;
  width:100%;
  max-width:none;
  text-wrap:balance;
  word-break:keep-all;
  overflow-wrap:normal;
}

.sta-benefits-promo{
  --sta-bg:#f7f5ef;
  --sta-green:#3d7031;
  --sta-green-dark:#233125;
  --sta-text:#33443a;
  --sta-gold:#c3a890;
  --sta-btn:#2c3a2a;
  --sta-white:#f7f5f0;
  width:100%;
  background:var(--sta-bg);
  font-family:"Poppins","Noto Sans TC","PingFang TC","Microsoft JhengHei",sans-serif;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

.sta-benefits-promo__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  width:100%;
  align-items:stretch;
}

.sta-benefits-panel,
.sta-promo-panel{
  min-width:0;
}

.sta-benefits-panel{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(rgba(247,245,239,.92),rgba(247,245,239,.92)),
    var(--sta-benefits-panel-image, url("/wp-content/uploads/2025/08/Faq-4.jpg.webp")) center center / cover no-repeat;
}

.sta-benefits-panel::before{
  content:"";
  position:absolute;
  inset:auto -12% -16% auto;
  width:min(72vw,920px);
  aspect-ratio:1/1;
  border:34px solid rgba(195,168,144,.14);
  border-radius:50%;
  pointer-events:none;
}

.sta-benefits-panel__inner{
  position:relative;
  z-index:2;
  min-height:720px;
  height:100%;
  padding:clamp(44px,5vw,68px) clamp(20px,4vw,56px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:clamp(26px,2.3vw,36px);
}

.sta-benefit-row{
  display:grid;
  grid-template-columns:72px minmax(0,1fr);
  gap:18px;
  align-items:start;
  position:relative;
}

.sta-benefit-row:not(:last-child)::after{
  content:"";
  position:absolute;
  left:35px;
  top:46px;
  width:2px;
  height:calc(100% + 22px);
  background:rgba(61,112,49,.5);
}

.sta-benefit-row__icon{
  display:flex;
  justify-content:center;
}

.sta-benefit-row__icon-circle{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#7b9d69;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 18px rgba(0,0,0,.06), inset 0 0 0 1px rgba(255,255,255,.18);
}

.sta-benefit-row__icon-circle img{
  width:38px;
  height:38px;
  display:block;
  object-fit:contain;
  filter:brightness(0) saturate(100%) invert(76%) sepia(18%) saturate(459%) hue-rotate(351deg) brightness(92%) contrast(90%);
}

.sta-benefit-row__content h2,
.sta-benefit-row__content h3{
  margin:0 0 8px;
  color:#203126;
  line-height:1.16;
  font-weight:900;
  letter-spacing:-.01em;
  font-size:clamp(22px,2vw,34px);
}

.sta-benefit-row__content p{
  margin:0;
  color:#314236;
  font-size:clamp(16px,1.08vw,20px);
  line-height:1.68;
  font-weight:500;
  max-width:54ch;
}

.sta-promo-panel{
  display:flex;
  min-width:0;
  min-height:720px;
}

.sta-promo-card{
  position:relative;
  flex:1 1 auto;
  width:100%;
  min-height:720px;
  overflow:hidden;
}

.sta-promo-card__media{
  position:absolute;
  inset:0;
  background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;
  transform:scale(1);
  transition:transform .45s ease;
}

.sta-promo-card:hover .sta-promo-card__media{
  transform:scale(1.06);
}

.sta-promo-card__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.06) 26%, rgba(20,29,22,.18) 100%),
    linear-gradient(90deg, rgba(247,245,239,.08) 0%, rgba(247,245,239,0) 42%);
}

.sta-promo-card__content{
  position:relative;
  z-index:2;
  min-height:720px;
  width:100%;
  padding:clamp(44px,5vw,74px) clamp(22px,4vw,56px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}

.sta-promo-card__content h2{
  margin:0 0 18px;
  color:#1d3222;
  font-size:clamp(30px,5.1vw,86px);
  line-height:.98;
  font-weight:900;
  letter-spacing:-.03em;
  max-width:11ch;
  text-shadow:0 2px 10px rgba(255,255,255,.18);
  text-wrap:balance;
  word-break:keep-all;
  overflow-wrap:normal;
}

.sta-promo-card__content p{
  margin:0 0 28px;
  color:rgba(27,40,31,.95);
  font-size:clamp(16px,1.18vw,21px);
  line-height:1.72;
  font-weight:700;
  max-width:35ch;
  text-shadow:0 1px 8px rgba(255,255,255,.15);
}

html[lang^="zh"] .sta-big-intro h2{
  font-size:clamp(32px,4.6vw,72px);
  line-height:1.04;
  max-width:none;
  font-weight:900;
}

html[lang^="zh"] .sta-benefit-row__content h2,
html[lang^="zh"] .sta-benefit-row__content h3{
  font-size:clamp(22px,2.1vw,38px);
  line-height:1.22;
  font-weight:900;
}

html[lang^="zh"] .sta-promo-card__content h2{
  font-size:clamp(28px,3.8vw,58px);
  line-height:1.08;
  max-width:100%;
  font-weight:900;
}

html[lang^="zh"] .sta-promo-card__content p{
  font-weight:800;
  line-height:1.75;
}

.sta-promo-card__btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-height:48px;
  padding:14px 34px;
  border-radius:999px;
  background:var(--sta-btn);
  color:var(--sta-white);
  text-decoration:none;
  font-weight:800;
  font-size:16px;
  letter-spacing:.01em;
  border:2px solid rgba(247,245,240,.92);
  box-shadow:0 12px 26px rgba(0,0,0,.10);
  transition:transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease, border-color .22s ease;
}

html[lang="zh-cn"] .sta-promo-card__btn,
html[lang="zh-CN"] .sta-promo-card__btn,
html[lang^="zh-Hans"] .sta-promo-card__btn{
  font-family:"Noto Sans SC","PingFang SC","Hiragino Sans GB","Microsoft YaHei","Source Han Sans SC",sans-serif;
  font-weight:700;
  letter-spacing:0;
}

.sta-promo-card__btn span{
  font-size:18px;
  line-height:1;
}

.sta-promo-card__btn:hover{
  background:var(--sta-gold);
  color:#1f2b21;
  border-color:rgba(31,43,33,.12);
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(0,0,0,.14);
}

/* Grammar online parity */
.sta-grammar-online{
  width:min(1180px,100% - 32px);
  margin:0 auto;
  padding:22px 0 36px;
}

.sta-grammar-online .section{
  background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,249,244,.94));
  border:1px solid rgba(195,168,144,.22);
  border-radius:24px;
  box-shadow:0 12px 28px rgba(15,23,42,.06);
  padding:22px;
}

.sta-grammar-online .section + .section{
  margin-top:18px;
}

.sta-grammar-online .filters{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:12px;
}

.sta-grammar-online .field label{
  display:block;
  margin:0 0 6px;
  font-weight:700;
  color:#2f3541;
}

.sta-grammar-online input,
.sta-grammar-online select{
  width:100%;
  min-height:44px;
  border:1px solid rgba(195,168,144,.35);
  border-radius:12px;
  padding:10px 12px;
  background:#fff;
  color:#2f3541;
}

.sta-grammar-online .helper{
  margin:14px 0 0;
  font-size:15px;
  line-height:1.8;
  color:#2f3541;
}

.sta-grammar-online .topic-links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.sta-grammar-online .topic-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(61,112,49,.08);
  color:#3d7031;
  font-weight:700;
  text-decoration:none;
}

.sta-grammar-online .toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.sta-grammar-online .count{
  font-size:14px;
  color:#6b7280;
}

.sta-grammar-online .grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.sta-grammar-online .card{
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(195,168,144,.18);
  background:#fff;
  box-shadow:0 10px 24px rgba(15,23,42,.05);
}

.sta-grammar-online .thumb img{
  display:block;
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}

.sta-grammar-online .card-body{
  padding:18px;
}

.sta-grammar-online .meta{
  font-size:13px;
  line-height:1.5;
  font-weight:700;
  color:#7c2d12;
  margin-bottom:8px;
}

.sta-grammar-online h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.2;
  font-weight:800;
  color:#2f2f2f;
}

.sta-grammar-online .desc{
  margin:0;
  font-size:15px;
  line-height:1.8;
  color:#2f3541;
}

.sta-grammar-online .tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.sta-grammar-online .tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  background:#fff7ef;
  border:1px solid rgba(195,168,144,.24);
  font-size:12px;
  font-weight:700;
  color:#7c2d12;
}

.sta-grammar-online .cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:16px;
  padding:11px 16px;
  border-radius:999px;
  background:#3d7031;
  color:#fff;
  font-weight:800;
  text-decoration:none;
}

.sta-grammar-online .empty{
  display:none;
  padding:18px 0 0;
  font-size:15px;
  line-height:1.8;
  color:#2f3541;
}

.sta-grammar-online .empty.is-visible{
  display:block;
}

.sta-grammar-online__more{
  display:flex;
  justify-content:center;
  margin-top:18px;
}

.sta-grammar-online__more[hidden]{
  display:none;
}

.sta-grammar-online__more-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 18px;
  border:1px solid rgba(61,112,49,.18);
  border-radius:999px;
  background:#fff;
  color:#3d7031;
  font:inherit;
  font-weight:800;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow:0 10px 20px rgba(15,23,42,.05);
}

.sta-grammar-online__more-btn:hover{
  background:#3d7031;
  color:#fff;
  transform:translateY(-1px);
}

.sta-grammar-online .level-cta{
  display:grid;
  grid-template-columns:240px minmax(0,1fr);
  gap:18px;
  align-items:center;
  background:linear-gradient(135deg,#fff8ef,#ffffff);
  border:1px solid rgba(195,168,144,.22);
  border-radius:24px;
  padding:20px;
}

.sta-grammar-online .level-cta img{
  display:block;
  width:100%;
  border-radius:18px;
  aspect-ratio:4/3;
  object-fit:cover;
}

.sta-grammar-online .level-cta-kicker{
  margin-bottom:6px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#3d7031;
}

.sta-grammar-online .level-cta h3{
  margin:0 0 10px;
}

.sta-grammar-online .level-cta p{
  margin:0 0 12px;
  font-size:15px;
  line-height:1.8;
  color:#2f3541;
}

.sta-grammar-online .level-cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.sta-grammar-online .level-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:12px;
  background:#3d7031;
  color:#fff;
  text-decoration:none;
  font-weight:800;
}

.sta-grammar-online .level-cta-note{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:12px;
  background:#fff;
  border:1px solid rgba(195,168,144,.26);
  color:#2f3541;
  font-size:14px;
  line-height:1.5;
}

.sta-grammar-online .grammar-item.is-hidden{
  display:none;
}

/* Explore online parity */
.sta-explore-online{
  width:min(1200px,100% - 32px);
  margin:0 auto;
  padding:22px 0 36px;
}

.sta-explore-online__lead{
  background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,249,244,.94));
  border:1px solid rgba(195,168,144,.22);
  border-radius:24px;
  box-shadow:0 12px 28px rgba(15,23,42,.06);
  padding:24px;
}

.sta-explore-online__lead p{
  margin:0;
  font-size:clamp(16px,1.45vw,20px);
  line-height:1.9;
  color:#2f3541;
}

.sta-explore-online__lead strong{
  color:#3d7031;
  font-weight:800;
}

.sta-explore-why,
.sta-explore-help,
.sta-explore-exp,
.sta-explore-fit,
.sta-explore-faq,
.sta-explore-costcalc{
  max-width:1200px;
  margin:0 auto;
  padding:clamp(28px,4vw,52px) clamp(14px,2.4vw,22px);
}

.sta-explore-why__title,
.sta-explore-city__intro h2,
.sta-explore-help__intro h2,
.sta-explore-exp__head h2,
.sta-explore-climate__head h2,
.sta-explore-fit__head h2,
.sta-explore-faq__head h2,
.sta-explore-costcalc__head h2{
  margin:0 0 12px;
  font-family:'Poppins','Noto Sans TC','PingFang TC','Microsoft JhengHei',sans-serif;
  font-size:clamp(28px,4vw,52px);
  line-height:1.08;
  font-weight:800;
  text-align:center;
  color:#2f2f2f;
}

.sta-explore-why__text,
.sta-explore-fit__box,
.sta-explore-costcalc__panel,
.sta-explore-costcalc__result{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(195,168,144,.24);
  box-shadow:0 12px 28px rgba(0,0,0,.05);
}

.sta-explore-why__text{
  max-width:1080px;
  margin:0 auto;
  padding:clamp(18px,2.8vw,30px);
  border-radius:18px;
}

.sta-explore-why__text p,
.sta-explore-city__intro p,
.sta-explore-help__intro p,
.sta-explore-exp__head p,
.sta-explore-climate__head p,
.sta-explore-fit__head p,
.sta-explore-faq__head p,
.sta-explore-costcalc__head p{
  margin:0;
  font-size:clamp(16px,1.45vw,20px);
  line-height:1.9;
  color:#374151;
}

.sta-explore-why__text p + p{
  margin-top:18px;
}

.sta-explore-climate{
  display:grid;
  gap:clamp(20px,3vw,34px);
}

.sta-explore-climate__layout{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);
  gap:clamp(18px,2.5vw,28px);
  align-items:stretch;
}

.sta-explore-climate__media{
  min-width:0;
}

.sta-explore-climate__img{
  display:block;
  width:100%;
  height:100%;
  min-height:100%;
  aspect-ratio:1.25 / 1;
  object-fit:cover;
  border-radius:22px;
  box-shadow:0 14px 32px rgba(0,0,0,.08);
}

.sta-explore-climate__panel{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(195,168,144,.24);
  box-shadow:0 12px 28px rgba(0,0,0,.05);
  border-radius:22px;
  padding:clamp(22px,3vw,32px);
}

.sta-explore-climate__item{
  display:grid;
  grid-template-columns:38px minmax(0,1fr);
  gap:14px;
  align-items:start;
  padding:0 0 18px;
  margin:0 0 18px;
  border-bottom:1px solid rgba(195,168,144,.18);
}

.sta-explore-climate__item:last-of-type{
  margin-bottom:0;
}

.sta-explore-climate__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  color:#3d7031;
}

.sta-explore-climate__icon svg{
  width:24px;
  height:24px;
  display:block;
}

.sta-explore-climate__copy h3{
  margin:0 0 8px;
  color:#c3a890;
  font-size:clamp(19px,1.6vw,24px);
  line-height:1.28;
  font-weight:800;
}

.sta-explore-climate__copy p{
  margin:0;
  color:#374151;
  font-size:clamp(15px,1.1vw,17px);
  line-height:1.82;
}

.sta-explore-climate__tip{
  display:flex;
  flex-wrap:wrap;
  gap:8px 12px;
  align-items:center;
  margin-top:8px;
  padding:14px 16px;
  border-radius:16px;
  background:#f4eee4;
  color:#4b5563;
  font-size:clamp(14px,1.02vw,16px);
  line-height:1.7;
}

.sta-explore-climate__tip strong{
  color:#8f775f;
  font-weight:800;
}

.sta-explore-atmosphere{
  padding-bottom:clamp(12px,2vw,24px);
}

.sta-explore-atmosphere__marquee{
  margin-top:clamp(18px,3vw,30px);
}

.sta-city-marquee--study-atmosphere{
  --sta-city-marquee-gap:18px;
  --sta-city-marquee-height:320px;
  --sta-city-marquee-speed:40;
}

.sta-city-marquee--study-atmosphere .sta-city-marquee__slide{
  flex:0 0 var(--sta-city-marquee-item-width, var(--sta-city-marquee-slide-width));
  width:var(--sta-city-marquee-item-width, var(--sta-city-marquee-slide-width));
  min-width:var(--sta-city-marquee-item-width, var(--sta-city-marquee-slide-width));
  max-width:var(--sta-city-marquee-item-width, var(--sta-city-marquee-slide-width));
}

.sta-explore-why__text strong,
.sta-explore-city__intro strong,
.sta-explore-city__seo strong,
.sta-explore-help__intro strong,
.sta-explore-exp__head strong,
.sta-explore-exp__card strong,
.sta-explore-fit__head strong,
.sta-explore-faq__answer strong,
.sta-explore-costcalc__head strong,
.sta-explore-costcalc__note strong{
  color:#3d7031;
  font-weight:800;
}

.sta-explore-city{
  --gold:#c3a890;
  --green:#3d7031;
  --border:#eaeaea;
  --shadow:0 10px 28px rgba(0,0,0,.08);
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:8px 12px 34px;
  font-family:'Poppins','Noto Sans TC','PingFang TC','Microsoft JhengHei',sans-serif;
}

.sta-explore-city__intro{
  margin-bottom:20px;
}

.sta-explore-city__grid{
  display:grid;
  gap:26px;
  grid-template-columns:1fr;
}

.sta-explore-city__card{
  display:flex;
  flex-direction:column;
}

.sta-explore-city__link{
  display:block;
  color:inherit;
  text-decoration:none;
}

.sta-explore-city__figure{
  position:relative;
  margin:0;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  background:#f6f6f6;
  min-height:340px;
}

.sta-explore-city__figure::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.48));
}

.sta-explore-city__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:filter .35s ease, transform .35s ease;
}

.sta-explore-city__title,
.sta-explore-city__cta{
  position:absolute;
  z-index:1;
}

.sta-explore-city__title{
  left:16px;
  bottom:16px;
  right:16px;
  margin:0;
  color:#fff;
  font-weight:700;
  letter-spacing:.02em;
  font-size:clamp(22px,2.2vw,30px);
  text-shadow:0 2px 10px rgba(0,0,0,.35);
}

.sta-explore-city__cta{
  inset:auto 16px 16px auto;
  background:rgba(0,0,0,.38);
  color:#fff;
  border:1px solid rgba(255,255,255,.55);
  border-radius:10px;
  padding:8px 14px;
  font-weight:700;
  letter-spacing:.04em;
  font-size:12px;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .25s ease, transform .25s ease, background .25s ease;
}

.sta-explore-city__link:hover .sta-explore-city__img{
  filter:grayscale(100%) brightness(.88);
  transform:scale(1.01);
}

.sta-explore-city__link:hover .sta-explore-city__cta{
  opacity:1;
  transform:translateY(0);
  background:rgba(61,112,49,.85);
}

.sta-explore-city__seo{
  margin-top:22px;
  color:#374151;
  font-size:clamp(15px,1.2vw,18px);
  line-height:1.85;
}

.sta-explore-help__intro,
.sta-explore-exp__head,
.sta-explore-fit__head,
.sta-explore-faq__head,
.sta-explore-costcalc__head{
  max-width:1080px;
  margin:0 auto 24px;
}

.sta-explore-help__grid,
.sta-explore-exp__grid,
.sta-explore-fit__list{
  display:grid;
  gap:18px;
  grid-template-columns:1fr;
}

.sta-explore-help__card,
.sta-explore-exp__card,
.sta-explore-fit__item{
  background:rgba(255,255,255,.9);
  border:1px solid rgba(195,168,144,.22);
  border-radius:18px;
  padding:22px 20px;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
}

.sta-explore-help__card h3,
.sta-explore-exp__card h3,
.sta-explore-fit__item h3{
  margin:0 0 10px;
  color:#c3a890;
  font-size:clamp(20px,2vw,26px);
  line-height:1.25;
  font-weight:800;
}

.sta-explore-help__card p,
.sta-explore-exp__card p,
.sta-explore-fit__item p{
  margin:0;
  color:#374151;
  font-size:clamp(15px,1.2vw,17px);
  line-height:1.85;
}

.sta-explore-fit__box{
  border-radius:22px;
  padding:clamp(22px,3vw,34px);
}

.sta-explore-faq__items{
  display:grid;
  gap:14px;
}

.sta-explore-faq details{
  background:#fff;
  border:1px solid rgba(195,168,144,.22);
  border-radius:16px;
  box-shadow:0 10px 28px rgba(0,0,0,.05);
  overflow:hidden;
}

.sta-explore-faq summary{
  list-style:none;
  cursor:pointer;
  padding:18px 20px;
  font-size:clamp(17px,1.5vw,21px);
  line-height:1.5;
  font-weight:800;
  color:#c3a890;
}

.sta-explore-faq summary::-webkit-details-marker{
  display:none;
}

.sta-explore-faq summary::after{
  content:"+";
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  width:28px;
  height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#faf7f1;
  border:1px solid rgba(195,168,144,.24);
  color:#3d7031;
  font-size:18px;
  font-weight:800;
  line-height:1;
  transition:transform .18s ease, background-color .18s ease, color .18s ease;
}

.sta-explore-faq details[open] summary::after{
  content:"−";
  background:#3d7031;
  border-color:#3d7031;
  color:#fff;
}

.sta-explore-faq__answer{
  padding:0 20px 18px;
  color:#374151;
  font-size:clamp(15px,1.18vw,17px);
  line-height:1.85;
}

.sta-explore-costcalc{
  --green:#3D7031;
  --gold:#C3A890;
  --ink:#374151;
  --muted:#6b7280;
  --line:rgba(195,168,144,.24);
  --soft:#faf7f1;
  --shadow:0 14px 34px rgba(0,0,0,.06);
}

.sta-explore-costcalc__wrap{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
  align-items:start;
}

.sta-explore-costcalc__panel{
  padding:clamp(18px,2.8vw,28px);
  border-radius:22px;
}

.sta-explore-costcalc__result{
  padding:clamp(20px,3vw,30px);
  position:sticky;
  top:24px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(250,247,241,.96),rgba(255,255,255,.98));
}

.sta-explore-costcalc__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px 18px;
}

.sta-explore-costcalc .sta-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.sta-explore-costcalc .sta-field--full{
  grid-column:1 / -1;
}

.sta-explore-costcalc .sta-field label{
  font-size:14px;
  font-weight:700;
  color:#2f2f2f;
}

.sta-explore-costcalc .sta-field select,
.sta-explore-costcalc .sta-field input{
  width:100%;
  min-height:48px;
  border:1px solid rgba(195,168,144,.34);
  border-radius:14px;
  background:#fff;
  color:var(--ink);
  padding:12px 14px;
  font-size:15px;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
  box-sizing:border-box;
}

.sta-explore-costcalc .sta-field select:focus,
.sta-explore-costcalc .sta-field input:focus{
  border-color:var(--green);
  box-shadow:0 0 0 3px rgba(61,112,49,.10);
}

.sta-explore-costcalc__sub{
  margin:20px 0 12px;
  font-size:clamp(20px,2vw,25px);
  line-height:1.2;
  font-weight:800;
  color:var(--gold);
}

.sta-explore-costcalc__tiny{
  margin:4px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

.sta-explore-costcalc__checks{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 14px;
}

.sta-explore-costcalc .sta-check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 13px;
}

.sta-explore-costcalc .sta-check input{
  width:18px;
  height:18px;
  margin-top:2px;
  accent-color:var(--green);
  flex:0 0 auto;
}

.sta-explore-costcalc .sta-check span{
  font-size:14px;
  line-height:1.55;
  color:var(--ink);
}

.sta-explore-costcalc__result h3{
  margin:0 0 14px;
  font-size:clamp(22px,2vw,28px);
  line-height:1.15;
  color:#2f2f2f;
  font-weight:800;
}

.sta-explore-costcalc .sta-total{
  display:flex;
  align-items:end;
  gap:10px;
  margin:0 0 18px;
  padding:0 0 16px;
  border-bottom:1px solid var(--line);
}

.sta-explore-costcalc .sta-total__label{
  font-size:15px;
  color:var(--muted);
  font-weight:700;
}

.sta-explore-costcalc .sta-total__value{
  font-size:clamp(34px,4vw,54px);
  line-height:1;
  font-weight:900;
  color:var(--green);
  letter-spacing:-.03em;
}

.sta-explore-costcalc .sta-breakdown{
  display:grid;
  gap:10px;
}

.sta-explore-costcalc .sta-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:12px 0;
  border-bottom:1px dashed rgba(195,168,144,.26);
}

.sta-explore-costcalc .sta-row:last-child{
  border-bottom:none;
}

.sta-explore-costcalc .sta-row__label{
  color:var(--ink);
  font-size:15px;
  line-height:1.45;
}

.sta-explore-costcalc .sta-row__value{
  color:#2f2f2f;
  font-size:15px;
  font-weight:800;
  white-space:nowrap;
}

.sta-explore-costcalc__note{
  margin-top:18px;
  padding:14px 15px;
  border-radius:14px;
  background:rgba(61,112,49,.06);
  border:1px solid rgba(61,112,49,.12);
  color:var(--ink);
  font-size:13.5px;
  line-height:1.7;
}

.sta-explore-costcalc__pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:16px;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

.sta-explore-cost{
  max-width:1200px;
  margin:0 auto;
  padding:clamp(28px,4vw,52px) clamp(14px,2.4vw,22px);
}

.sta-explore-cost__head{
  max-width:1080px;
  margin:0 auto 24px;
}

.sta-explore-cost__head h2{
  margin:0 0 12px;
  font-family:'Poppins','Noto Sans TC','PingFang TC','Microsoft JhengHei',sans-serif;
  font-size:clamp(28px,4vw,52px);
  line-height:1.08;
  font-weight:800;
  text-align:center;
  color:#2f2f2f;
}

.sta-explore-cost__head p{
  margin:0;
  font-size:clamp(16px,1.45vw,20px);
  line-height:1.9;
  color:#374151;
  text-align:center;
}

.sta-explore-cost__highlight{
  max-width:1080px;
  margin:0 auto 24px;
  padding:clamp(24px,3.6vw,38px);
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(250,247,241,.98));
  border:1px solid rgba(195,168,144,.24);
  box-shadow:0 12px 28px rgba(0,0,0,.05);
  text-align:center;
}

.sta-explore-cost__main-number{
  display:grid;
  gap:10px;
  justify-items:center;
}

.sta-explore-cost__amount{
  display:block;
  color:#3d7031;
  font-size:clamp(40px,5vw,68px);
  line-height:1;
  font-weight:900;
}

.sta-explore-cost__period{
  display:block;
  color:#6b7280;
  font-size:clamp(14px,1.2vw,17px);
  font-weight:700;
  letter-spacing:.04em;
}

.sta-explore-cost__housing{
  margin:18px auto 0;
  display:inline-flex;
  flex-wrap:wrap;
  gap:8px 10px;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  background:#f6f1eb;
  border:1px solid rgba(195,168,144,.24);
  color:#374151;
}

.sta-explore-cost__housing strong{
  color:#c3a890;
  font-weight:800;
  font-size:clamp(20px,2vw,28px);
}

.sta-explore-cost__highlight-note{
  margin:18px auto 0;
  max-width:760px;
  color:#374151;
  font-size:clamp(15px,1.2vw,17px);
  line-height:1.85;
}

.sta-explore-cost__grid{
  display:grid;
  gap:18px;
  grid-template-columns:1fr;
}

.sta-explore-cost__card{
  background:#EEE7DC;
  border:1px solid #E9E5E1;
  border-radius:20px;
  padding:28px 24px;
  box-shadow:0 12px 32px rgba(0,0,0,.06);
}

.sta-explore-cost__icon{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  margin:0 0 14px;
  border-radius:14px;
  background:rgba(255,255,255,.78);
  font-size:24px;
  line-height:1;
}

.sta-explore-cost__card h3{
  margin:0 0 10px;
  color:#3D7031;
  font-size:clamp(20px,2vw,26px);
  line-height:1.25;
  font-weight:800;
}

.sta-explore-cost__card p{
  margin:0;
  color:#374151;
  font-size:clamp(15px,1.2vw,17px);
  line-height:1.85;
}

.sta-explore-cost__note{
  max-width:1080px;
  margin:20px auto 0;
  color:#374151;
  font-size:clamp(15px,1.2vw,17px);
  line-height:1.85;
}

.sta-explore-cost__footer{
  max-width:1080px;
  margin:18px auto 0;
  color:#6b7280;
  font-size:13px;
  line-height:1.7;
  text-align:center;
}

.sta-explore-cost__footer strong{
  color:#3d7031;
  font-weight:800;
}

.sta-explore-cost__footer a{
  color:inherit;
  text-decoration:underline;
  text-decoration-color:rgba(195,168,144,.6);
}

.sta-explore-cost__footer a:hover{
  color:#3d7031;
}

@media (max-width: 1024px){
  .sta-explore-climate__layout{
    grid-template-columns:1fr;
  }

  .sta-explore-climate__img{
    aspect-ratio:1.45 / 1;
  }

  .sta-city-marquee--study-atmosphere{
    --sta-city-marquee-gap:14px;
    --sta-city-marquee-height:250px;
  }

  .sta-faq-online__grid,
  .sta-faq-online__promo,
  .sta-grammar-online .filters,
  .sta-grammar-online .grid,
  .sta-grammar-online .level-cta,
  .sta-explore-city__grid,
  .sta-explore-help__grid,
  .sta-explore-exp__grid,
  .sta-explore-fit__list,
  .sta-explore-cost__grid,
  .sta-explore-costcalc__wrap{
    grid-template-columns:1fr;
  }

  .sta-grammar-online .level-cta-note{
    width:100%;
    justify-content:flex-start;
  }
}

@media (min-width: 768px){
  .sta-explore-city__grid,
  .sta-explore-help__grid,
  .sta-explore-exp__grid,
  .sta-explore-fit__list,
  .sta-explore-cost__grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (min-width: 992px){
  .sta-explore-city__grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media (max-width: 767px){
  .sta-city-marquee--study-atmosphere{
    --sta-city-marquee-gap:12px;
    --sta-city-marquee-height:200px;
  }

  .sta-city-marquee--study-atmosphere .sta-city-marquee__slide{
    flex:0 0 84vw;
    width:84vw;
    min-width:84vw;
    max-width:84vw;
  }

  .sta-faq-online-shell{
    width:min(100% - 20px,1200px);
  }

  .sta-faq-online__lead{
    padding:8px 2px 8px;
  }

  .sta-faq-online__grid,
  .sta-faq-online__benefits{
    border-radius:20px;
    padding:18px;
  }

  .sta-faq-online__cta{
    border-radius:20px;
  }

  .sta-faq-online__cta-body{
    padding:24px 20px;
    min-height:320px;
  }

  .sta-faq-online__title{
    font-size:32px;
  }

  .sta-faq-online__benefit h3{
    font-size:18px;
  }

  .sta-grammar-online{
    width:min(100% - 20px,1180px);
  }

  .sta-grammar-online h3{
    font-size:22px;
  }

  .sta-explore-online{
    width:min(100% - 20px,1200px);
  }

  .sta-explore-why__title,
  .sta-explore-city__intro h2,
  .sta-explore-help__intro h2,
  .sta-explore-exp__head h2,
  .sta-explore-climate__head h2,
  .sta-explore-fit__head h2,
  .sta-explore-faq__head h2,
  .sta-explore-costcalc__head h2,
  .sta-explore-cost__head h2{
    text-align:left;
  }

  .sta-explore-costcalc__grid,
  .sta-explore-costcalc__checks{
    grid-template-columns:1fr;
  }

  .sta-explore-climate__panel{
    padding:20px 18px;
  }

  .sta-explore-climate__item{
    grid-template-columns:34px minmax(0,1fr);
    gap:12px;
    padding-bottom:16px;
    margin-bottom:16px;
  }

  .sta-explore-climate__icon{
    width:34px;
    height:34px;
  }

  .sta-explore-costcalc__result{
    position:static;
  }

  .sta-explore-costcalc .sta-total__value{
    font-size:42px;
  }
}

@media (max-width:1024px){
  .sta-faq-advantages__wrap,
  .sta-faq-visa__wrap{
    grid-template-columns:1fr;
    gap:30px;
  }

  .sta-faq-advantages__art,
  .sta-faq-visa__art{
    min-height:auto;
  }

  .sta-faq-advantages__art img{
    max-width:420px;
  }

  .sta-faq-visa__art img{
    max-width:340px;
  }

  .sta-big-intro{
    padding:14px 0 18px;
  }

  .sta-big-intro__wrap{
    padding:0 20px;
  }

  .sta-big-intro h2{
    font-size:clamp(34px,6.6vw,72px);
    line-height:.96;
  }

  .sta-benefits-panel__inner,
  .sta-promo-panel,
  .sta-promo-card,
  .sta-promo-card__content{
    min-height:720px;
  }

  .sta-benefits-panel__inner{
    padding:40px 28px 34px;
    gap:24px;
  }

  .sta-promo-card__content{
    padding:42px 28px;
  }

  .sta-promo-card__content h2{
    max-width:9ch;
    font-size:clamp(34px,8vw,64px);
  }

  .sta-promo-card__content p{
    max-width:42ch;
  }
}

@media (max-width:767px){
  .sta-faq-advantages,
  .sta-faq-visa{
    padding:28px 14px;
  }

  .sta-faq-advantages__heading h2,
  .sta-faq-visa__heading h2{
    font-size:clamp(24px,7vw,34px);
    margin-bottom:14px;
  }

  .sta-faq-advantages__line,
  .sta-faq-visa__line{
    width:110px;
    height:4px;
  }

  .sta-faq-advantages__art,
  .sta-faq-visa__art{
    justify-content:center;
  }

  .sta-faq-advantages__art img{
    max-width:320px;
  }

  .sta-faq-visa__art img{
    max-width:260px;
  }

  .sta-faq-item summary,
  .sta-faq-visa-item summary{
    padding:15px 52px 15px 18px;
    font-size:16px;
  }

  .sta-faq-item__content,
  .sta-faq-visa-item__content{
    padding:0 18px 18px;
  }

  .sta-faq-item__content p,
  .sta-faq-visa-item__content p,
  .sta-faq-visa-item__content li{
    font-size:15px;
    line-height:1.75;
  }

  .sta-faq-item summary::after,
  .sta-faq-visa-item summary::after{
    right:18px;
    width:10px;
    height:10px;
  }

  .sta-faq-item:hover,
  .sta-faq-visa-item:hover{
    transform:none;
  }

  .sta-big-intro{
    padding:14px 0 16px;
  }

  .sta-big-intro__wrap{
    padding:0 16px;
  }

  .sta-big-intro h2{
    font-size:clamp(28px,9vw,52px);
    line-height:1;
    letter-spacing:-.03em;
    max-width:11ch;
  }

  .sta-benefits-promo__grid{
    grid-template-columns:1fr;
  }

  .sta-benefits-panel__inner{
    min-height:auto;
    padding:28px 18px 26px;
    gap:22px;
  }

  .sta-benefit-row{
    grid-template-columns:56px minmax(0,1fr);
    gap:14px;
  }

  .sta-benefit-row:not(:last-child)::after{
    left:27px;
    top:37px;
    height:calc(100% + 12px);
  }

  .sta-benefit-row__icon-circle{
    width:38px;
    height:38px;
  }

  .sta-benefit-row__icon-circle img{
    width:38px;
    height:38px;
  }

  .sta-benefit-row__content h2,
  .sta-benefit-row__content h3{
    font-size:clamp(20px,6vw,27px);
    margin-bottom:8px;
  }

  .sta-benefit-row__content p{
    font-size:16px;
    line-height:1.68;
  }

  .sta-promo-panel,
  .sta-promo-card,
  .sta-promo-card__content{
    min-height:520px;
  }

  .sta-promo-card__content{
    padding:28px 18px;
    justify-content:flex-end;
  }

  .sta-promo-card__content h2{
    max-width:10ch;
    font-size:clamp(26px,10vw,40px);
    line-height:1.02;
    margin-bottom:12px;
  }

  .sta-promo-card__content p{
    font-size:15px;
    line-height:1.65;
    margin-bottom:20px;
    max-width:24ch;
  }

  .sta-promo-card__btn{
    padding:12px 22px;
    font-size:15px;
    min-height:44px;
  }
}

/* About Us landing */
.sta-about-page{
  box-sizing:border-box;
  width:min(1140px, calc(100% - 40px));
  max-width:100%;
  margin:0 auto;
  padding:0;
}

.sta-about-page--story{
  margin-top:0;
}

.sta-about-page--work{
  margin-top:50px;
}

.sta-about-page--team{
  margin-top:32px;
}

.sta-about-page--schools{
  margin-top:10px;
}

.sta-about-page--promo{
  margin-top:10px;
  margin-bottom:50px;
}

.sta-about-page__pair{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:42px;
  align-items:center;
}

.sta-about-page__copy,
.sta-about-page__visual{
  min-width:0;
}

.sta-about-page__copy h2,
.sta-about-page__center h2{
  margin:0;
  color:#222;
  font-family:"Poppins","Noto Sans TC","PingFang TC","Microsoft JhengHei",sans-serif;
  font-size:40px;
  font-weight:700;
  line-height:1.1;
}

.sta-about-page__center h2{
  font-family:"Noto Serif TC","Songti TC","PMingLiU",serif;
  font-size:clamp(22px, 4vw, 34px);
  line-height:1.25;
  text-align:center;
}

.sta-about-page__body,
.sta-about-page__body p,
.sta-about-page__body li,
.sta-about-page__schools-note{
  color:#000;
  font-family:"Poppins","Noto Sans TC","PingFang TC","Microsoft JhengHei",sans-serif;
  font-size:clamp(16px, 1.2vw, 18px);
  line-height:1.8;
}

.sta-about-page__body p{
  margin:0 0 20px;
}

.sta-about-page__body p:last-child{
  margin-bottom:0;
}

.sta-about-page__body strong,
.sta-about-page__schools-note strong,
.sta-about-page__message strong{
  font-weight:700;
}

.sta-about-page__rule{
  width:45%;
  min-width:140px;
  height:2px;
  margin:18px 0 22px;
  background:#84997D;
}

.sta-about-page__visual img{
  display:block;
  width:100%;
  height:auto;
}

.sta-about-page__visual--photo img{
  border-radius:100px 0 100px 0;
}

.sta-about-page__visual--logo img{
  width:100%;
  max-width:420px;
  margin:0 auto;
}

.sta-about-page__checks{
  display:grid;
  gap:14px;
  margin:18px 0 0;
  padding:0;
  list-style:none;
}

.sta-about-page__checks li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin:0;
  color:#000;
  font-family:"Poppins","Noto Sans TC","PingFang TC","Microsoft JhengHei",sans-serif;
  font-size:16px;
  line-height:1.7;
}

.sta-about-page__check{
  flex:0 0 auto;
  margin-top:3px;
  color:#BD0404;
  font-size:16px;
  font-weight:800;
  line-height:1;
}

.sta-about-page__team-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
  max-width:760px;
  margin:0 auto;
}

.sta-about-page__team-card{
  text-align:center;
}

.sta-about-page__team-card img{
  display:block;
  width:38%;
  max-width:172px;
  height:auto;
  margin:0 auto 14px;
  object-fit:contain;
}

.sta-about-page__team-card h3{
  margin:0 0 6px;
  color:#272727;
  font-size:20px;
  line-height:1.25;
  font-weight:700;
  text-transform:none;
}

.sta-about-page__team-card p{
  margin:0;
  color:#272727;
  font-size:14px;
  line-height:1.55;
  font-weight:400;
}

.sta-about-page__message{
  max-width:900px;
  margin:0 auto;
  padding:40px 20px;
  text-align:center;
}

.sta-about-page__message-rule{
  width:45%;
  min-width:160px;
  height:2px;
  margin:0 auto 24px;
  background:#84997D;
}

.sta-about-page__message p{
  margin:0;
  color:#2b2b2b;
  font-family:"Noto Sans TC","PingFang TC","Microsoft JhengHei","Poppins",sans-serif;
  font-size:clamp(16px, 2.2vw, 18px);
  line-height:1.65;
}

.sta-about-page__center{
  display:grid;
  gap:10px;
  justify-items:center;
  text-align:center;
  margin-bottom:30px;
}

.sta-about-page__mark{
  display:block;
  width:min(16%, 310px);
  min-width:160px;
  height:auto;
}

.sta-about-page__center-rule{
  width:25%;
  min-width:120px;
  height:1px;
  background:#DAD6CA;
}

.sta-about-page__schools-note{
  max-width:840px;
  margin:0;
  color:#2b2b2b;
  font-family:"Noto Sans TC","PingFang TC","Microsoft JhengHei","Poppins",sans-serif;
  font-size:clamp(16px, 2.2vw, 18px);
  line-height:1.6;
  text-align:center;
}

.sta-about-page__logo-slider-wrap{
  position:relative;
  padding:0 56px 8px;
}

.sta-about-page__logo-slider{
  overflow:hidden;
}

.sta-about-page__logo-slider .swiper-wrapper{
  align-items:center;
}

.sta-about-page__logo-slide{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:110px;
  padding:18px 20px;
  text-decoration:none;
}

.sta-about-page__logo-slide img{
  display:block;
  width:auto;
  max-width:100%;
  max-height:58px;
  object-fit:contain;
}

.sta-about-page__slider-arrow{
  position:absolute;
  top:50%;
  z-index:2;
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:1px solid rgba(31,42,32,.14);
  border-radius:999px;
  background:#fff;
  color:#1f2a20;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(31,42,32,.08);
  transform:translateY(-50%);
  transition:transform .2s ease, box-shadow .2s ease, color .2s ease;
}

.sta-about-page__slider-arrow--prev{
  left:0;
}

.sta-about-page__slider-arrow--next{
  right:0;
}

.sta-about-page__slider-arrow span{
  display:block;
  font-size:26px;
  line-height:1;
  transform:translateY(-1px);
}

.sta-about-page__slider-arrow:hover,
.sta-about-page__slider-arrow:focus-visible{
  color:#3D7031;
  box-shadow:0 14px 28px rgba(31,42,32,.14);
}

.sta-about-page__slider-arrow--prev:hover,
.sta-about-page__slider-arrow--prev:focus-visible{
  transform:translate(-1px, -50%);
}

.sta-about-page__slider-arrow--next:hover,
.sta-about-page__slider-arrow--next:focus-visible{
  transform:translate(1px, -50%);
}

.sta-about-page__slider-pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:16px;
  margin-top:18px;
}

.sta-about-page__slider-pagination .swiper-pagination-bullet{
  width:9px;
  height:9px;
  margin:0 !important;
  background:#c9c1b7;
  opacity:1;
}

.sta-about-page__slider-pagination .swiper-pagination-bullet-active{
  background:#3D7031;
}

.sta-about-page__promo-card{
  position:relative;
  min-height:374px;
  border-radius:20px;
  overflow:hidden;
}

.sta-about-page__promo-media{
  position:absolute;
  inset:0;
  background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;
  transform:scale(1);
  transition:transform .4s ease;
}

.sta-about-page__promo-overlay{
  position:absolute;
  inset:0;
  background:#1F2A2087;
  transition:background-color .3s ease;
}

.sta-about-page__promo-card:hover .sta-about-page__promo-media{
  transform:scale(1.04);
}

.sta-about-page__promo-card:hover .sta-about-page__promo-overlay{
  background:#1F2A20B8;
}

.sta-about-page__promo-content{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:374px;
  padding:50px;
  text-align:left;
}

.sta-about-page__promo-content h3{
  margin:0 0 10px;
  color:#fff;
  font-family:"Noto Serif TC","Songti TC","PMingLiU",serif;
  font-size:clamp(35px, 4vw, 45px);
  font-weight:700;
  line-height:1.12;
  text-wrap:balance;
}

.sta-about-page__promo-content p{
  margin:0 0 30px;
  max-width:700px;
  color:#E8E3D5;
  font-family:"Noto Serif TC","Songti TC","PMingLiU",serif;
  font-size:18px;
  font-weight:700;
  line-height:1.7;
}

.sta-about-page__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:flex-start;
  min-height:48px;
  padding:12px 35px;
  border:2px solid #fff;
  border-radius:999px;
  background:#3D7031;
  color:#fff;
  font-family:"Poppins","Noto Sans TC","PingFang TC","Microsoft JhengHei",sans-serif;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:background-color .2s ease, color .2s ease, border-color .2s ease;
}

.sta-about-page__button::after{
  content:"\2192";
  margin-left:10px;
  font-size:13px;
  line-height:1;
}

.sta-about-page__button:hover,
.sta-about-page__button:focus-visible{
  background:#C3A890;
  border-color:#C3A890;
  color:#1F2A20;
}

@media (max-width:1024px){
  .sta-about-page{
    width:min(1140px, calc(100% - 40px));
  }

  .sta-about-page__pair{
    grid-template-columns:1fr;
    gap:30px;
  }

  .sta-about-page__team-grid{
    gap:24px;
  }

  .sta-about-page__logo-slider-wrap{
    padding:0 14px 8px;
  }

  .sta-about-page__slider-arrow{
    display:none;
  }

  .sta-about-page__promo-content{
    padding:40px 32px;
  }
}

@media (max-width:767px){
  .sta-about-page{
    width:min(100% - 20px, 1140px);
  }

  .sta-about-page--work{
    margin-top:40px;
  }

  .sta-about-page__copy h2{
    font-size:33px;
  }

  .sta-about-page__visual--photo img{
    border-radius:70px 0 70px 0;
  }

  .sta-about-page__team-grid{
    grid-template-columns:1fr;
  }

  .sta-about-page__team-card img{
    width:46%;
    max-width:164px;
  }

  .sta-about-page__message{
    padding:28px 10px 34px;
  }

  .sta-about-page__mark{
    width:59%;
    min-width:0;
  }

  .sta-about-page__visual--logo img{
    max-width:320px;
  }

  .sta-about-page__logo-slide{
    min-height:92px;
    padding:14px 12px;
  }

  .sta-about-page__logo-slide img{
    max-height:48px;
  }

  .sta-about-page__promo-content{
    min-height:360px;
    padding:28px 22px;
  }

  .sta-about-page__promo-content h3{
    font-size:35px;
  }

  .sta-about-page__promo-content p{
    font-size:16px;
  }
}

