
:root{
  --bg:#f5f8fa;
  --panel:#ffffff;
  --line:#d8e3e8;
  --line2:#edf2f5;
  --text:#1f2f37;
  --muted:#607d8b;
  --brand:#45baf3;
  --brand2:#3498c9;
  --side:#f8fbfc;
  --hover:#eef9fe;
  --radius:12px;
  --shadow:0 10px 30px rgba(15,23,42,.08);
  --max:1440px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Pretendard,-apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans KR",Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  font-size:14px;
  line-height:1.58;
  word-break:keep-all;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.site-topbar{
  height:58px;
  background:var(--panel);
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  gap:16px;
  padding:0 22px;
  position:sticky;
  top:0;
  z-index:50;
}
.site-logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:19px;
  white-space:nowrap;
  color:var(--brand2);
}
.logo-mark{
  width:31px;height:31px;
  border-radius:8px;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  display:grid;place-items:center;
  color:#fff;font-weight:900;
  box-shadow:0 6px 15px rgba(239,79,135,.22);
}
.site-search{flex:1;max-width:580px;margin-left:auto;position:relative}
.site-search input{
  width:100%;height:36px;
  border:1px solid var(--line);
  border-radius:8px;
  padding:0 72px 0 13px;
  outline:none;background:#fff;
}
.site-search input:focus{border-color:#9fd5ef;box-shadow:0 0 0 3px rgba(239,79,135,.10)}
.site-search button{
  position:absolute;right:4px;top:4px;height:28px;
  border:0;border-radius:7px;
  background:var(--brand);color:#fff;
  padding:0 12px;cursor:pointer;font-weight:800;
}
.mobile-menu{
  display:none;border:1px solid var(--line);
  background:#fff;border-radius:8px;height:34px;padding:0 10px;
  cursor:pointer;font-weight:800;
}
.site-layout{
  display:grid;
  grid-template-columns:260px minmax(0,1fr);
  max-width:var(--max);
  margin:0 auto;
  min-height:calc(100vh - 58px);
}
.site-sidebar{
  background:var(--side);
  border-right:1px solid var(--line);
  padding:18px 14px 30px;
  position:sticky;
  top:58px;
  height:calc(100vh - 58px);
  overflow:auto;
}
.side-title{
  font-size:12px;font-weight:900;color:var(--muted);
  letter-spacing:.04em;margin:12px 10px 8px;
}
.menu-group{margin-bottom:8px}
.menu-main{
  width:100%;border:0;background:transparent;border-radius:9px;
  padding:10px;font-weight:800;text-align:left;
  display:flex;justify-content:space-between;align-items:center;
  cursor:pointer;color:#374851;
}
.menu-main:hover,.menu-main.active{background:var(--hover);color:var(--brand2)}
.menu-sub{display:none;padding:2px 0 8px 10px}
.menu-group.open .menu-sub{display:block}
.menu-sub a{
  display:block;padding:7px 10px 7px 18px;border-radius:8px;
  color:#475c67;border-left:2px solid #d7e0e5;margin-left:4px;
}
.menu-sub a:hover,.menu-sub a.active{
  background:#fff;color:var(--brand2);border-left-color:var(--brand);
}
.site-content{padding:26px 28px 50px;min-width:0}
.breadcrumb{
  color:var(--muted);font-size:13px;margin:0 0 14px;
  width:auto!important;max-width:none!important;padding:0!important;
}
.page-shell{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero{
  padding:0!important;
  background:none!important;
}
.hero .wrap{width:auto!important;max-width:none!important;margin:0!important}
.hero-card{
  display:grid;grid-template-columns:minmax(0,1.2fr) minmax(220px,.8fr);
  gap:28px;align-items:center;
  padding:28px 30px!important;
  border:0!important;border-radius:0!important;
  background:linear-gradient(180deg,#fff,#fafdff)!important;
  box-shadow:none!important;
  border-bottom:1px solid var(--line2)!important;
}
.eyebrow{
  display:inline-flex;padding:4px 9px;border-radius:999px;
  color:var(--brand2);background:#eef9fe;
  font-size:12px;font-weight:900;
}
.hero h1{margin:13px 0 10px;font-size:34px;line-height:1.18;letter-spacing:-1.6px}
.hero h1 em{font-style:normal;color:var(--brand)}
.hero p{margin:0;color:var(--muted);font-size:15px}
.hero-art{
  min-height:0;display:block;border-radius:14px;
  background:#fff;
  border:1px solid #dbeef8;
  overflow:hidden;
}
.hero-art strong{font-size:36px;color:var(--brand2)}
.home-banner-img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}
.hero-actions{display:flex;gap:9px;flex-wrap:wrap;margin-top:20px}
.btn{
  min-height:42px;display:inline-flex;align-items:center;justify-content:center;
  padding:0 16px;border:1px solid var(--line);border-radius:9px;
  background:#fff;font-weight:850;
}
.btn.primary{color:#fff;background:var(--brand);border-color:var(--brand)}
.section{
  padding:24px 26px!important;
  border-bottom:1px solid var(--line2);
  background:#fff!important;
}
.section:last-child{border-bottom:0}
.section.soft{background:#fcfeff!important}
.section>.wrap{width:auto!important;max-width:none!important;margin:0!important}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:16px}
.section-head h2,.content h2{font-size:20px;margin:0 0 6px;letter-spacing:-.5px}
.section-head p{margin:0;color:var(--muted)}
.content{
  padding:0!important;border:0!important;border-radius:0!important;background:transparent!important;
}
.content p{margin:0;color:var(--muted)}
.content p+p{margin-top:12px}
.facts{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:18px}
.fact{
  padding:14px;border:1px solid var(--line2);
  border-radius:10px;background:#fbfeff;
}
.fact strong{display:block;margin-bottom:4px}
.tag-list{display:flex;flex-wrap:wrap;gap:9px}
.tag{
  min-height:38px;display:inline-flex;align-items:center;justify-content:center;
  padding:0 14px;border:1px solid var(--line);
  border-radius:999px;background:#fff;font-weight:800;
}
.tag:hover,.tag.active{color:#fff;background:var(--brand);border-color:var(--brand)}
.intro-tag-box{
  padding:18px;border:1px solid var(--line2);
  border-radius:11px;background:#fcfeff;
}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.card{
  padding:15px;border:1px solid var(--line2);
  border-radius:10px;background:#fff;
  transition:.18s;
}
.card:hover{background:var(--hover);border-color:#b2e2fa;transform:translateY(-1px)}
.icon{width:38px;height:38px;display:grid;place-items:center;border-radius:10px;background:#eef9fe;font-size:19px}
.card h3{margin:12px 0 5px;font-size:16px}
.card p{margin:0;color:var(--muted);font-size:13px}
.quick-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.quick{
  min-height:52px;display:flex;align-items:center;justify-content:space-between;
  padding:0 14px;border:1px solid var(--line2);border-radius:10px;background:#fff;font-weight:800;
}
.quick:hover{background:var(--hover);border-color:#b2e2fa}
.quick b{color:var(--brand)}
.faq{display:grid;gap:9px}
details{border:1px solid var(--line2);border-radius:10px;background:#fff;overflow:hidden}
summary{padding:15px 46px 15px 15px;cursor:pointer;font-weight:850;list-style:none;position:relative}
summary::-webkit-details-marker{display:none}
summary:after{content:"+";position:absolute;right:16px;top:50%;transform:translateY(-50%);color:var(--brand);font-size:21px}
details[open] summary:after{content:"−"}
details p{margin:0;padding:0 15px 15px;color:var(--muted)}
.cta{padding:22px;border-radius:11px;color:#fff;background:linear-gradient(135deg,#344954,#546c78)}
.cta h2{margin:0 0 7px;font-size:21px}
.cta p{margin:0;color:#e4e9ec}
.cta .btn{margin-top:15px}
.site-footer{
  margin-top:18px;text-align:center;color:#859eab;font-size:12px;
  padding:0 0 8px;
}
@media(max-width:1000px){
  .grid{grid-template-columns:repeat(2,1fr)}
  .quick-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:860px){
  .mobile-menu{display:block}
  .site-topbar{padding:0 12px}
  .site-search{display:none}
  .site-layout{display:block}
  .site-sidebar{
    position:fixed;left:-280px;top:58px;width:260px;z-index:45;
    transition:.25s;box-shadow:var(--shadow);
  }
  body.menu-open .site-sidebar{left:0}
  .site-content{padding:18px 12px 36px}
  .hero-card{grid-template-columns:1fr;padding:22px!important}
  .hero h1{font-size:28px}
  .hero-art{min-height:130px}
  .section{padding:18px!important}
  .grid,.quick-grid,.facts{grid-template-columns:1fr}
}


/* 사이드바 더보기형 메뉴 */
.site-sidebar{overflow:hidden}
.site-sidebar>.side-title:first-child{display:none}
.menu-group{border-bottom:1px solid var(--line2);padding-bottom:8px;margin-bottom:8px}
.menu-main{padding:11px 10px}
.menu-sub{
  display:block;
  padding:2px 0 2px 10px;
  max-height:none;
  overflow:hidden;
}
.menu-group:not(.open) .menu-sub{display:block}
.menu-sub a.extra-item{display:none}
.menu-group.expanded .menu-sub a.extra-item{display:block}
.more-toggle{
  width:calc(100% - 14px);
  height:34px;
  margin:7px 7px 1px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#f8fbfc;
  color:#627e8c;
  font-size:12px;
  font-weight:850;
  cursor:pointer;
  transition:.18s ease;
}
.more-toggle:hover{
  background:#fff;
  color:var(--brand2);
  border-color:#abd9ef;
}
.menu-group:not(.open) .menu-main b{transform:rotate(-90deg)}
.menu-main b{transition:transform .18s ease}
.menu-group.open .menu-main b{transform:rotate(0)}
@media(max-width:860px){
  .site-sidebar{overflow-y:auto}
}


/* 사이드바 최종 정리 */
.site-sidebar{overflow:hidden}
.menu-group .menu-sub{display:none}
.menu-group.open .menu-sub{display:block}
.menu-group:not(.open) .more-toggle{display:none}
.menu-group.open .more-toggle{display:block}
.menu-sub a.extra-item{display:none}
.menu-group.expanded .menu-sub a.extra-item{display:block}
.menu-group:not(.open) .menu-main b{transform:rotate(-90deg)}
.menu-group.open .menu-main b{transform:rotate(0)}
@media(max-width:860px){
  .site-sidebar{overflow-y:auto}
}


/* 전국 지역 고정 + 업종/조건 접힘 최종형 */
.menu-heading{
  width:100%;
  padding:11px 10px;
  border:0;
  border-radius:9px;
  color:#374851;
  font-weight:800;
  text-align:left;
  background:transparent;
}
.region-group .menu-sub{display:block}
.region-group .more-toggle{display:block}
.region-group .menu-sub a.extra-item{display:none}
.region-group.expanded .menu-sub a.extra-item{display:block}

.accordion-group .menu-sub{display:none}
.accordion-group.open .menu-sub{display:block}
.accordion-group .menu-main b{transform:rotate(-90deg);transition:transform .18s ease}
.accordion-group.open .menu-main b{transform:rotate(0)}

.region-group .menu-heading::after{content:none!important}


/* 아코디언 정상작동 최종 강제 규칙 */
.region-group .region-sub{
  display:block !important;
}
.region-group .extra-item{
  display:none !important;
}
.region-group.expanded .extra-item{
  display:block !important;
}
.region-group .more-toggle{
  display:block !important;
}

.accordion-group .accordion-sub{
  display:none !important;
}
.accordion-group.open .accordion-sub{
  display:block !important;
}
.accordion-group .menu-main b{
  transform:rotate(-90deg) !important;
  transition:transform .18s ease;
}
.accordion-group.open .menu-main b{
  transform:rotate(0deg) !important;
}
.accordion-group .menu-main.active{
  background:var(--hover);
  color:var(--brand2);
}


/* 사이드바: 전국 지역만 전체 노출 */
.site-sidebar{
  overflow-y:auto;
}
.region-group .region-sub{
  display:block !important;
}
.region-group .region-sub a{
  display:block !important;
}
.region-group .more-toggle{
  display:none !important;
}
.menu-heading{
  width:100%;
  padding:11px 10px;
  border:0;
  border-radius:9px;
  color:#374851;
  font-weight:800;
  text-align:left;
  background:transparent;
}


/* 조건별 빠른찾기: 테마·시간대·급여 */
.filter-row + .filter-row{margin-top:20px}
.filter-row-head{margin-bottom:10px}
.filter-row-head h3{
  margin:0 0 3px;
  font-size:16px;
  letter-spacing:-.3px;
}
.filter-row-head p{
  margin:0;
  color:var(--muted);
  font-size:13px;
}
.filter-row .intro-tag-box{
  padding:15px;
}


/* 전국형 홈 */
.home-hero .hero-art strong{font-size:32px}
.home-steps .fact{min-height:110px}
.safety-grid{grid-template-columns:repeat(4,1fr)}
.longtail-section{background:#fafbfc!important}
.longtail-box{
  padding:20px;
  border:1px solid var(--line2);
  border-radius:12px;
  background:#fff;
}
.longtail-group + .longtail-group{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid var(--line2);
}
.longtail-group>strong{
  display:block;
  margin-bottom:8px;
  font-size:14px;
}
.longtail-list{
  display:flex;
  flex-wrap:wrap;
  gap:7px 12px;
}
.longtail-list span{
  color:#718e9c;
  font-size:12px;
  line-height:1.6;
}
@media(max-width:1000px){
  .safety-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:680px){
  .safety-grid{grid-template-columns:1fr}
  .longtail-box{padding:16px}
}

.site-logo-img{height:42px;width:auto;display:block}
.site-logo{display:flex;align-items:center}

/* ===== 상단 로고·검색창 정렬 완성형 ===== */
.site-topbar{
  height:68px;
  padding:0;
}
.topbar-inner{
  width:100%;
  max-width:var(--max);
  height:100%;
  margin:0 auto;
  padding:0 18px;
  display:grid;
  grid-template-columns:240px minmax(0,1fr);
  align-items:center;
  column-gap:28px;
}
.site-logo{
  width:max-content;
  min-width:0;
  justify-self:start;
}
.site-logo-img{
  height:40px;
  width:auto;
  max-width:190px;
  object-fit:contain;
}
.site-search{
  width:min(100%,720px);
  max-width:none;
  margin:0;
  justify-self:start;
}
.site-search input{
  height:40px;
  border-radius:10px;
  padding-left:15px;
  padding-right:78px;
  font-size:13px;
}
.site-search button{
  right:4px;
  top:4px;
  height:32px;
  min-width:58px;
  border-radius:8px;
}
.site-layout{min-height:calc(100vh - 68px)}
.site-sidebar{top:68px;height:calc(100vh - 68px)}

@media(max-width:860px){
  .site-topbar{height:58px;padding:0}
  .topbar-inner{
    display:flex;
    padding:0 12px;
    gap:12px;
  }
  .site-logo-img{height:36px;max-width:160px}
  .site-search{display:none}
  .site-sidebar{top:58px;height:calc(100vh - 58px)}
  .site-layout{min-height:calc(100vh - 58px)}
}

/* 전체 페이지 GIF 로고 공통 적용 */
.site-logo{display:flex;align-items:center;flex:0 0 auto;text-decoration:none;overflow:visible}
.site-logo-img{display:block;width:auto;height:42px;max-width:230px;object-fit:contain}
@media (max-width:768px){.site-logo-img{height:36px;max-width:170px}}

/* 현재 선택 지역 강조 */
.region-sub a.active{
  background:#e8f7fe !important;
  color:#2fa1d9 !important;
  border-left-color:#45baf3 !important;
  font-weight:900 !important;
}
.tag.active{
  color:#fff !important;
  background:var(--brand) !important;
  border-color:var(--brand) !important;
}


/* 지역별 실제 Google 지도 카드 - 하단 정보영역을 지도 밖으로 분리 */
.region-map-card{
  position:relative!important;
  display:block!important;
  min-height:0!important;
  overflow:hidden;
  padding:0!important;
  background:#fff!important;
}
.region-map-card iframe{
  display:block;
  width:100%;
  height:250px;
  border:0;
}
.region-map-footer{
  position:static!important;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  width:100%;
  min-height:58px;
  padding:11px 13px;
  border:0;
  border-top:1px solid #e8eff2;
  border-radius:0;
  background:#fff;
  box-shadow:none;
  backdrop-filter:none;
  pointer-events:auto;
  box-sizing:border-box;
}
.region-map-footer strong{
  font-size:18px!important;
  color:var(--brand2)!important;
}
.region-map-footer a{
  flex:0 0 auto;
  padding:8px 11px;
  border-radius:8px;
  color:#fff;
  background:var(--brand);
  font-size:12px;
  font-weight:900;
  pointer-events:auto;
}
@media(max-width:860px){
  .region-map-card{min-height:0!important}
  .region-map-card iframe{height:220px}
  .region-map-footer{min-height:56px;padding:10px 12px}
}


/* 지역명 옆 초성 빠른 찾기 */
.region-title-line{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px 16px;
}
.region-title-line h2{margin:0;flex:0 0 auto}
.choseong-nav{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:5px;
}
.choseong-btn{
  min-width:31px;
  height:31px;
  padding:0 8px;
  border:1px solid #a8d8f0;
  border-radius:8px;
  background:#fff;
  color:#2e8bb9;
  font-size:13px;
  font-weight:900;
  line-height:29px;
  text-align:center;
  cursor:pointer;
  transition:background .15s,border-color .15s,color .15s,transform .15s;
}
.choseong-btn:hover:not(.disabled){transform:translateY(-1px);border-color:#47b3e8;background:#f2fafe}
.choseong-btn.active{
  border-color:#209cd9;
  background:#209cd9;
  color:#fff;
  box-shadow:0 3px 8px rgba(230,63,114,.2);
}
.choseong-btn.disabled{
  border-color:#dde6ea;
  background:#f4f6f7;
  color:#b8c7ce;
  cursor:default;
  opacity:.68;
}
@media(max-width:768px){
  .region-title-line{align-items:flex-start;gap:10px}
  .region-title-line h2{width:100%}
  .choseong-nav{width:100%;gap:4px}
  .choseong-btn{min-width:29px;height:29px;padding:0 7px;font-size:12px;line-height:27px}
}

/* Home industry cards: entire card is a direct clickable link */
a.industry-direct-link{
  display:block;
  position:relative;
  z-index:2;
  cursor:pointer;
  pointer-events:auto!important;
  text-decoration:none;
}
a.industry-direct-link *{pointer-events:none;}

/* 지역 선택 영역: 위·아래 경계선 + 안쪽 파스텔 레드 배경 */
.section.district-search-section{
  border-top:4px solid #2baae8 !important;
  border-bottom:4px solid #2baae8 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  background:linear-gradient(180deg,#f7fcff 0%,#eff9fe 50%,#f7fcff 100%) !important;
}
.section.district-search-section > .wrap{
  background:transparent !important;
}

/* 지역 선택 영역 안쪽 흰색 박스 제거 */
.section.district-search-section .intro-tag-box{
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  padding:18px 0 !important;
}


/* 지역 채용정보 메인 CTA - 플랫 + 초록 LED 테두리 */
.region-cta-btn{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width:270px;
  min-height:54px;
  padding:13px 25px!important;
  border:1px solid #19a0e3!important;
  border-radius:12px!important;
  background:#1594d2!important;
  color:#fff!important;
  font-size:20px!important;
  font-weight:800!important;
  letter-spacing:-.3px;
  text-decoration:none!important;
  box-shadow:none!important;
  transform:none!important;
  transition:background-color .18s ease!important;
}

/* 얇은 초록 LED 빛 한 줄이 테두리를 따라 순환 */
.region-cta-btn::before{
  content:"";
  position:absolute;
  inset:-1px;
  z-index:0;
  border-radius:inherit;
  padding:2px;
  pointer-events:none;
  background:conic-gradient(
    from 0deg,
    transparent 0deg 326deg,
    rgba(56,174,240,0) 328deg,
    rgba(56,174,240,.55) 333deg,
    #0997dd 338deg,
    #8fd7fa 341deg,
    #0997dd 344deg,
    rgba(56,174,240,.55) 349deg,
    rgba(56,174,240,0) 354deg,
    transparent 360deg
  );
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  animation:regionLedRun 2.8s linear infinite;
}
.region-cta-btn > *{position:relative;z-index:1;}
.region-cta-btn::after{
  content:"→";
  position:relative;
  z-index:1;
  font-size:22px;
  font-weight:700;
  line-height:1;
  transition:none;
}
@keyframes regionLedRun{
  to{transform:rotate(360deg);}
}
.region-cta-btn:hover{
  background:#1594d2!important;
  transform:none!important;
  box-shadow:none!important;
}
.region-cta-btn:hover::after{transform:none!important;}
.region-cta-btn:active{
  transform:none!important;
  box-shadow:none!important;
}
.region-cta-btn:focus-visible{
  outline:2px solid #0997dd;
  outline-offset:3px;
}
@media (max-width:640px){
  .region-cta-btn{
    width:100%;
    min-width:0;
    min-height:52px;
    padding:12px 18px!important;
    font-size:18px!important;
  }
}
@media (prefers-reduced-motion:reduce){
  .region-cta-btn::before{animation:none!important;}
}

/* Region map population information */
.region-map-footer{display:flex;align-items:center;gap:14px}
.region-map-footer>strong{flex:0 0 auto}
.region-population{display:flex;align-items:baseline;gap:5px;min-width:0;flex:1;color:#627f8d;white-space:nowrap}
.region-population span{font-size:12px;font-weight:700;color:#94acb8}
.region-population b{font-size:14px;color:#249fdb}
.region-population small{font-size:10px;color:#94acb8}
.region-map-footer>a{margin-left:auto;flex:0 0 auto}
@media(max-width:640px){
  .region-map-footer{gap:8px}
  .region-population{gap:3px}
  .region-population span{display:none}
  .region-population b{font-size:12px}
  .region-population small{display:none}
}


/* Regional SEO long-tail links */
.seo-copy{padding:20px 22px;margin-bottom:18px;border:1px solid #d7e9f2;border-radius:16px;background:#fff;color:#475c67;line-height:1.85}
.seo-copy p{margin:0}.seo-copy p+p{margin-top:8px}
.seo-link-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px}
.seo-link-grid a{display:flex;align-items:center;justify-content:center;min-height:46px;padding:10px 12px;border:1px solid #c8e3f0;border-radius:12px;background:#fff;color:#1f8ec5;font-size:14px;font-weight:800;text-align:center;text-decoration:none;transition:.2s ease}
.seo-link-grid a:hover{border-color:#249fdb;background:#f5fcff;transform:translateY(-2px)}
@media(max-width:900px){.seo-link-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:520px){.seo-copy{padding:16px}.seo-link-grid{grid-template-columns:1fr}.seo-link-grid a{min-height:43px}}


/* region live weather */
.region-weather-card{margin:0 0 18px;border:1px solid #dcebf3;border-radius:16px;background:#fff;box-shadow:0 8px 24px rgba(112,43,70,.07);overflow:hidden}
.weather-topline{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 14px;border-bottom:1px solid #e7f2f7;font-size:13px;font-weight:800;color:#182d38}
.weather-topline a{font-size:12px;color:#3eb5ef;text-decoration:none;white-space:nowrap}
.weather-main{display:grid;grid-template-columns:auto auto minmax(115px,1fr) minmax(130px,auto);align-items:center;gap:10px;padding:13px 14px}
.weather-icon{font-size:42px;line-height:1;filter:drop-shadow(0 5px 6px rgba(45,62,80,.12))}
.weather-temp{display:flex;align-items:flex-start;line-height:1;color:#102028}.weather-temp strong{font-size:45px;font-weight:700;letter-spacing:-2px}.weather-temp span{font-size:14px;margin:5px 0 0 4px}
.weather-details{display:flex;flex-direction:column;gap:4px;padding-left:8px;border-left:1px solid #edf2f4;font-size:12px;color:#607d8b}.weather-details b{color:#344954}
.weather-summary{padding-left:12px;border-left:1px solid #edf2f4;text-align:right;display:flex;flex-direction:column;gap:2px}.weather-summary strong{font-size:13px;color:#102028}.weather-summary span{font-size:11px;color:#95abb6}.weather-summary b{font-size:14px;color:#475c67}
.weather-error{padding:0 14px 12px;color:#3d83a5;font-size:12px}
@media(max-width:760px){.weather-main{grid-template-columns:auto auto 1fr;gap:8px}.weather-summary{grid-column:1/-1;border-left:0;border-top:1px solid #edf2f4;padding:9px 0 0;text-align:left;flex-direction:row;align-items:center;gap:8px}.weather-temp strong{font-size:39px}.weather-icon{font-size:36px}}
@media(max-width:420px){.weather-main{grid-template-columns:auto auto}.weather-details{grid-column:1/-1;border-left:0;border-top:1px solid #edf2f4;padding:9px 0 0;flex-direction:row;flex-wrap:wrap;gap:12px}.weather-topline{padding:9px 11px}.weather-main{padding:12px 11px}}

/* 2026 minimum wage information */
.minimum-wage-section{padding-top:28px;padding-bottom:28px}
.minimum-wage-card{overflow:hidden;border:1px solid #dbe8ef;border-radius:18px;background:#fff;box-shadow:0 12px 32px rgba(25,42,70,.08)}
.minimum-wage-head{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:22px 26px;background:linear-gradient(135deg,#103649 0%,#254b5d 100%);color:#fff}
.minimum-wage-title-wrap{display:flex;align-items:center;gap:14px;min-width:0}
.minimum-wage-icon{display:grid;place-items:center;flex:0 0 46px;width:46px;height:46px;border-radius:14px;background:#1194d5;color:#fff;font-size:22px;font-weight:900;box-shadow:0 8px 18px rgba(243,38,104,.28)}
.minimum-wage-eyebrow{margin:0 0 3px;font-size:12px;font-weight:800;letter-spacing:.06em;color:#a8dcf6}
.minimum-wage-head h2{margin:0;font-size:22px;line-height:1.25;color:#fff}
.minimum-wage-official{flex:0 0 auto;color:#fff;text-decoration:none;font-size:13px;font-weight:800;padding:10px 14px;border:1px solid rgba(255,255,255,.38);border-radius:999px;background:rgba(255,255,255,.08);transition:.2s ease}
.minimum-wage-official:hover{background:#fff;color:#1d4152;transform:translateY(-1px)}
.minimum-wage-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));padding:0 22px}
.minimum-wage-item{position:relative;padding:26px 20px 23px;text-align:center}
.minimum-wage-item:not(:last-child)::after{content:"";position:absolute;right:0;top:22px;bottom:22px;width:1px;background:#e7eef2}
.minimum-wage-label{display:inline-flex;align-items:center;justify-content:center;min-width:56px;padding:5px 11px;border-radius:999px;background:#f1fafe;color:#0d88c4;font-size:13px;font-weight:900}
.minimum-wage-value{margin-top:10px;color:#103649;font-size:31px;line-height:1.15;font-weight:900;letter-spacing:-.04em}
.minimum-wage-value small{font-size:16px;font-weight:800;letter-spacing:0}
.minimum-wage-note{margin-top:7px;color:#698796;font-size:12px;line-height:1.5}
.minimum-wage-foot{display:flex;align-items:center;justify-content:space-between;gap:16px;margin:0 22px 22px;padding:15px 17px;border-radius:12px;background:#f5f9fb;color:#566f7c;font-size:13px;line-height:1.55}
.minimum-wage-foot strong{color:#264250}
.minimum-wage-source{white-space:nowrap;color:#0d88c4;text-decoration:none;font-weight:900}
.minimum-wage-source:hover{text-decoration:underline}
@media(max-width:760px){
  .minimum-wage-section{padding-top:20px;padding-bottom:20px}
  .minimum-wage-head{align-items:flex-start;padding:19px 18px}
  .minimum-wage-icon{flex-basis:40px;width:40px;height:40px;border-radius:12px;font-size:19px}
  .minimum-wage-head h2{font-size:19px}
  .minimum-wage-official{padding:8px 10px;font-size:11px}
  .minimum-wage-grid{grid-template-columns:1fr;padding:4px 18px}
  .minimum-wage-item{display:grid;grid-template-columns:70px 1fr;grid-template-areas:"label value" "label note";align-items:center;text-align:left;padding:15px 0}
  .minimum-wage-item:not(:last-child)::after{left:0;right:0;top:auto;bottom:0;width:auto;height:1px}
  .minimum-wage-label{grid-area:label;justify-self:start}
  .minimum-wage-value{grid-area:value;margin:0;font-size:26px;text-align:right}
  .minimum-wage-note{grid-area:note;margin:3px 0 0;text-align:right}
  .minimum-wage-foot{display:block;margin:0 18px 18px;padding:13px 14px;font-size:12px}
  .minimum-wage-source{display:inline-block;margin-top:7px}
}
@media(max-width:430px){
  .minimum-wage-head{display:block}
  .minimum-wage-title-wrap{margin-bottom:12px}
  .minimum-wage-official{display:inline-flex}
}

/* Keep the CTA and minimum-wage information inside one continuous page card */
.page-shell > .minimum-wage-section{
  padding-top:24px;
  padding-bottom:28px;
  border-top:1px solid #e4edf1;
  background:#fff;
}
.page-shell > .minimum-wage-section .wrap{
  padding-top:0;
}
@media (max-width:720px){
  .page-shell > .minimum-wage-section{
    padding-top:18px;
    padding-bottom:20px;
  }
}

/* Alternating section backgrounds for easier visual scanning */
.page-shell > .section:not(.district-search-section):nth-of-type(odd){
  background:#eff9fe!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(even){
  background:#ffffff!important;
}
.page-shell > .section:not(.district-search-section){
  transition:background-color .2s ease;
}

/* 2026-07-19: blue section interior cards + unified black SEO buttons */
:root{
  --pastel-sky-section:#eff9fe;
  --pastel-sky-card:#e9f7fe;
  --pastel-sky-card-hover:#d3effd;
  --pastel-sky-border:#c7e7f7;
  --pastel-blue:#2f96c9;
  --pastel-blue-dark:#247ca8;
  --neutral-text:#182d38;
}

/* 파스텔 하늘색 섹션 안쪽 박스도 같은 파랑 계열로 통일 */
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .intro-tag-box,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .fact,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .card,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .quick,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .seo-copy,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) details{
  background:var(--pastel-sky-card)!important;
  border-color:var(--pastel-sky-border)!important;
}

.page-shell > .section:not(.district-search-section):nth-of-type(odd) .intro-tag-box:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .card:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .quick:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) details:hover{
  background:var(--pastel-sky-card-hover)!important;
  border-color:#8fd3f5!important;
}

/* FAQ 카드와 열림 상태를 파란 계열로 통일 */
.faq details{
  border-color:var(--pastel-sky-border)!important;
}
.faq details[open]{
  background:#dbf2fd!important;
  border-color:#8fd3f5!important;
}
.faq summary::after{
  color:var(--pastel-blue)!important;
}
.faq details[open] summary::after{
  color:var(--pastel-blue-dark)!important;
}

/* 조건 선택 박스: 섹션 톤과 자연스럽게 연결 */
.filter-row .intro-tag-box{
  border-color:var(--pastel-sky-border);
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .filter-row .intro-tag-box{
  background:var(--pastel-sky-card)!important;
}

/* 일반 태그는 흰 배경 + 검정 글씨 + 하늘색 테두리 */
.page-shell .tag{
  background:#fff;
  color:var(--neutral-text);
  border-color:#c9e0eb;
}
.page-shell .tag:hover,
.page-shell .tag.active{
  background:#dbf2fd;
  color:#152c38;
  border-color:#78c8ef;
}

/* 지역별 롱테일 버튼의 분홍 계열 제거 */
.seo-link-grid a{
  background:#fff!important;
  color:var(--neutral-text)!important;
  border-color:#c9e0eb!important;
}
.seo-link-grid a:hover{
  background:#e6f6fe!important;
  color:#112027!important;
  border-color:#78c8ef!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .seo-link-grid a{
  background:#f8fdff!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .seo-link-grid a:hover{
  background:#d3effd!important;
}

/* 2026-07-19: final alternating palette — sky blue / pastel pink */
:root{
  --pastel-pink-section:#f0fafe;
  --pastel-pink-card:#e0f4fe;
  --pastel-pink-card-hover:#d4f0fd;
  --pastel-pink-border:#c5eafc;
}

/* 기존 흰색 교차 섹션을 파스텔 핑크로 변경 */
.page-shell > .section:not(.district-search-section):nth-of-type(even){
  background:var(--pastel-pink-section)!important;
}

/* 핑크 섹션 내부 카드도 같은 계열로 통일 */
.page-shell > .section:not(.district-search-section):nth-of-type(even) .intro-tag-box,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .fact,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .card,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .quick,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .seo-copy,
.page-shell > .section:not(.district-search-section):nth-of-type(even) details{
  background:var(--pastel-pink-card)!important;
  border-color:var(--pastel-pink-border)!important;
}

.page-shell > .section:not(.district-search-section):nth-of-type(even) .intro-tag-box:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .card:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .quick:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(even) details:hover{
  background:var(--pastel-pink-card-hover)!important;
  border-color:#a6defa!important;
}

/* 핑크 섹션 안의 조건 박스 */
.page-shell > .section:not(.district-search-section):nth-of-type(even) .filter-row .intro-tag-box{
  background:var(--pastel-pink-card)!important;
  border-color:var(--pastel-pink-border)!important;
}

/* 핑크 섹션 안의 일반 태그는 흰색으로 또렷하게 유지 */
.page-shell > .section:not(.district-search-section):nth-of-type(even) .tag,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .seo-link-grid a{
  background:#fff!important;
}

.page-shell > .section:not(.district-search-section):nth-of-type(even) .tag:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .seo-link-grid a:hover{
  background:#f5fcff!important;
  border-color:#9bd9f7!important;
}

/* 최저임금 섹션도 교차 색상을 따르도록 기존 흰색 고정 해제 */
.page-shell > .minimum-wage-section{
  background:inherit!important;
}

/* 2026-07-19: final alternating palette — sky blue / pastel pink */
:root{
  --pastel-pink-section:#f0fafe;
  --pastel-pink-card:#e0f4fe;
  --pastel-pink-card-hover:#d4f0fd;
  --pastel-pink-border:#c5eafc;
}
.page-shell > .section:not(.district-search-section):nth-of-type(even){background:var(--pastel-pink-section)!important;}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .intro-tag-box,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .fact,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .card,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .quick,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .seo-copy,
.page-shell > .section:not(.district-search-section):nth-of-type(even) details{
  background:var(--pastel-pink-card)!important;
  border-color:var(--pastel-pink-border)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .intro-tag-box:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .card:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .quick:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(even) details:hover{
  background:var(--pastel-pink-card-hover)!important;
  border-color:#a6defa!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .filter-row .intro-tag-box{
  background:var(--pastel-pink-card)!important;
  border-color:var(--pastel-pink-border)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .tag,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .seo-link-grid a{background:#fff!important;}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .tag:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .seo-link-grid a:hover{
  background:#f5fcff!important;
  border-color:#9bd9f7!important;
}
.page-shell > .minimum-wage-section{background:inherit!important;}

/* 2026-07-19 FINAL COLOR SYSTEM: sky sections use blue accents, pink sections use pink accents */
:root{
  --fox-sky-section:#ecf8fe;
  --fox-sky-card:#d7f1fd;
  --fox-sky-card-hover:#c6ebfd;
  --fox-sky-border:#87cff3;
  --fox-sky-accent:#25a0dc;
  --fox-pink-section:#f2fafe;
  --fox-pink-card:#ddf3fe;
  --fox-pink-card-hover:#cdedfd;
  --fox-pink-border:#9bdbfa;
  --fox-pink-accent:#3ab0ea;
  --fox-chip-text:#263a44;
}

/* 지역 선택은 브랜드 핑크 섹션 */
.page-shell > .district-search-section{
  background:var(--fox-pink-section)!important;
  border-color:var(--fox-pink-accent)!important;
}
.page-shell > .district-search-section .intro-tag-box{
  background:var(--fox-pink-card)!important;
  border-color:var(--fox-pink-border)!important;
}
.page-shell > .district-search-section .tag{
  background:#fff!important;
  color:var(--fox-chip-text)!important;
  border-color:var(--fox-pink-border)!important;
}
.page-shell > .district-search-section .tag:hover,
.page-shell > .district-search-section .tag.active{
  background:#ffffff!important;
  color:#1887bd!important;
  border-color:var(--fox-pink-accent)!important;
}

/* 하늘색 섹션: 내부 박스·뱃지·아이콘 모두 파랑 계열 */
.page-shell > .section:not(.district-search-section):nth-of-type(odd){
  background:var(--fox-sky-section)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) :is(.intro-tag-box,.fact,.card,.quick,.seo-copy,details){
  background:var(--fox-sky-card)!important;
  border-color:var(--fox-sky-border)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) :is(.intro-tag-box,.card,.quick,details):hover{
  background:var(--fox-sky-card-hover)!important;
  border-color:#62bfed!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .tag,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .seo-link-grid a{
  background:#fff!important;
  color:var(--fox-chip-text)!important;
  border-color:var(--fox-sky-border)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .tag:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .tag.active,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .seo-link-grid a:hover{
  background:#e6f6fe!important;
  color:#1582b8!important;
  border-color:var(--fox-sky-accent)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .icon{
  background:#c4eafd!important;
  border:1px solid var(--fox-sky-border)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .faq summary::after{
  color:var(--fox-sky-accent)!important;
}

/* 핑크 섹션: 내부 박스·뱃지·아이콘 모두 핑크 계열 */
.page-shell > .section:not(.district-search-section):nth-of-type(even){
  background:var(--fox-pink-section)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(even) :is(.intro-tag-box,.fact,.card,.quick,.seo-copy,details){
  background:var(--fox-pink-card)!important;
  border-color:var(--fox-pink-border)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(even) :is(.intro-tag-box,.card,.quick,details):hover{
  background:var(--fox-pink-card-hover)!important;
  border-color:#70c9f5!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .tag,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .seo-link-grid a{
  background:#fff!important;
  color:var(--fox-chip-text)!important;
  border-color:var(--fox-pink-border)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .tag:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .tag.active,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .seo-link-grid a:hover{
  background:#ffffff!important;
  color:#1887bd!important;
  border-color:var(--fox-pink-accent)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .icon{
  background:#d0eefd!important;
  border:1px solid var(--fox-pink-border)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .faq summary::after{
  color:var(--fox-pink-accent)!important;
}

/* 열린 FAQ도 소속 섹션 색을 유지 */
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .faq details[open]{
  background:#ccedfd!important;
  border-color:var(--fox-sky-border)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .faq details[open]{
  background:#d4f0fd!important;
  border-color:var(--fox-pink-border)!important;
}

/* 필터 내부 박스는 각 섹션의 계열색을 정확히 상속 */
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .filter-row .intro-tag-box{
  background:var(--fox-sky-card)!important;
  border-color:var(--fox-sky-border)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .filter-row .intro-tag-box{
  background:var(--fox-pink-card)!important;
  border-color:var(--fox-pink-border)!important;
}

/* 2026-07-19 FINAL COLOR SYSTEM: sky sections use blue accents, pink sections use pink accents */
:root{
  --fox-sky-section:#ecf8fe;
  --fox-sky-card:#d7f1fd;
  --fox-sky-card-hover:#c6ebfd;
  --fox-sky-border:#87cff3;
  --fox-sky-accent:#25a0dc;
  --fox-pink-section:#f2fafe;
  --fox-pink-card:#ddf3fe;
  --fox-pink-card-hover:#cdedfd;
  --fox-pink-border:#9bdbfa;
  --fox-pink-accent:#3ab0ea;
  --fox-chip-text:#263a44;
}
.page-shell > .district-search-section{background:var(--fox-pink-section)!important;border-color:var(--fox-pink-accent)!important}
.page-shell > .district-search-section .intro-tag-box{background:var(--fox-pink-card)!important;border-color:var(--fox-pink-border)!important}
.page-shell > .district-search-section .tag{background:#fff!important;color:var(--fox-chip-text)!important;border-color:var(--fox-pink-border)!important}
.page-shell > .district-search-section .tag:hover,.page-shell > .district-search-section .tag.active{background:#ffffff!important;color:#1887bd!important;border-color:var(--fox-pink-accent)!important}
.page-shell > .section:not(.district-search-section):nth-of-type(odd){background:var(--fox-sky-section)!important}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) :is(.intro-tag-box,.fact,.card,.quick,.seo-copy,details){background:var(--fox-sky-card)!important;border-color:var(--fox-sky-border)!important}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) :is(.intro-tag-box,.card,.quick,details):hover{background:var(--fox-sky-card-hover)!important;border-color:#62bfed!important}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .tag,.page-shell > .section:not(.district-search-section):nth-of-type(odd) .seo-link-grid a{background:#fff!important;color:var(--fox-chip-text)!important;border-color:var(--fox-sky-border)!important}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .tag:hover,.page-shell > .section:not(.district-search-section):nth-of-type(odd) .tag.active,.page-shell > .section:not(.district-search-section):nth-of-type(odd) .seo-link-grid a:hover{background:#e6f6fe!important;color:#1582b8!important;border-color:var(--fox-sky-accent)!important}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .icon{background:#c4eafd!important;border:1px solid var(--fox-sky-border)!important}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .faq summary::after{color:var(--fox-sky-accent)!important}
.page-shell > .section:not(.district-search-section):nth-of-type(even){background:var(--fox-pink-section)!important}
.page-shell > .section:not(.district-search-section):nth-of-type(even) :is(.intro-tag-box,.fact,.card,.quick,.seo-copy,details){background:var(--fox-pink-card)!important;border-color:var(--fox-pink-border)!important}
.page-shell > .section:not(.district-search-section):nth-of-type(even) :is(.intro-tag-box,.card,.quick,details):hover{background:var(--fox-pink-card-hover)!important;border-color:#70c9f5!important}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .tag,.page-shell > .section:not(.district-search-section):nth-of-type(even) .seo-link-grid a{background:#fff!important;color:var(--fox-chip-text)!important;border-color:var(--fox-pink-border)!important}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .tag:hover,.page-shell > .section:not(.district-search-section):nth-of-type(even) .tag.active,.page-shell > .section:not(.district-search-section):nth-of-type(even) .seo-link-grid a:hover{background:#ffffff!important;color:#1887bd!important;border-color:var(--fox-pink-accent)!important}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .icon{background:#d0eefd!important;border:1px solid var(--fox-pink-border)!important}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .faq summary::after{color:var(--fox-pink-accent)!important}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .faq details[open]{background:#ccedfd!important;border-color:var(--fox-sky-border)!important}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .faq details[open]{background:#d4f0fd!important;border-color:var(--fox-pink-border)!important}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .filter-row .intro-tag-box{background:var(--fox-sky-card)!important;border-color:var(--fox-sky-border)!important}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .filter-row .intro-tag-box{background:var(--fox-pink-card)!important;border-color:var(--fox-pink-border)!important}

/* 2026-07-19: inner cards are white for a cleaner popular-search style */
.page-shell > .district-search-section .intro-tag-box,
.page-shell > .section:not(.district-search-section) :is(.intro-tag-box,.fact,.card,.quick,.seo-copy,details){
  background:#fff!important;
}

/* Keep the border matched to each section theme */
.page-shell > .district-search-section .intro-tag-box,
.page-shell > .section:not(.district-search-section):nth-of-type(even) :is(.intro-tag-box,.fact,.card,.quick,.seo-copy,details){
  border-color:var(--fox-pink-border)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) :is(.intro-tag-box,.fact,.card,.quick,.seo-copy,details){
  border-color:var(--fox-sky-border)!important;
}

/* Subtle themed hover while keeping cards visually white */
.page-shell > .district-search-section .intro-tag-box:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(even) :is(.intro-tag-box,.card,.quick,details):hover{
  background:#f7fcff!important;
  border-color:#70c9f5!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) :is(.intro-tag-box,.card,.quick,details):hover{
  background:#fafdff!important;
  border-color:#62bfed!important;
}

/* FAQ opened panels also stay white */
.page-shell > .section:not(.district-search-section) .faq details[open]{
  background:#fff!important;
}

/* Filter group boxes stay white inside both sky and pink sections */
.page-shell > .section:not(.district-search-section) .filter-row .intro-tag-box{
  background:#fff!important;
}


/* 2026-07-19: complete white inner-card system + section line icons */
.page-shell > .section .inner-white-card,
.page-shell > .section .inner-white-surface,
.page-shell > .section .content,
.page-shell > .section .home-steps,
.page-shell > .section .safety-grid,
.page-shell > .section .faq,
.page-shell > .section .cta,
.page-shell > .section .minimum-wage-card,
.page-shell > .section .filter-row {
  background:#fff!important;
}
.page-shell > .section .inner-white-card,
.page-shell > .section .content,
.page-shell > .section .filter-row {
  border:1px solid transparent;
  border-radius:18px;
  padding:24px;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) :is(.inner-white-card,.content,.filter-row,.inner-white-surface){
  border-color:var(--fox-sky-border)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(even) :is(.inner-white-card,.content,.filter-row,.inner-white-surface){
  border-color:var(--fox-pink-border)!important;
}
/* avoid a second colored panel inside filter cards */
.page-shell > .section .filter-row .intro-tag-box{
  background:#fff!important;
  box-shadow:none!important;
}
/* first-use step cards and information facts stay white */
.page-shell > .section .home-steps .fact,
.page-shell > .section .facts .fact,
.page-shell > .section .safety-grid .card{
  background:#fff!important;
}

.with-section-icon{
  display:flex;
  align-items:center;
  gap:10px;
}
.section-title-icon{
  width:32px;
  height:32px;
  flex:0 0 32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  box-sizing:border-box;
}
.section-title-icon svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .section-title-icon{
  color:var(--fox-sky-accent);
  background:#ddf3fe;
  border:1px solid var(--fox-sky-border);
}
.page-shell > .section:not(.district-search-section):nth-of-type(even) .section-title-icon{
  color:var(--fox-pink-accent);
  background:#d9f1fd;
  border:1px solid var(--fox-pink-border);
}
.page-shell > .district-search-section .section-title-icon{
  color:var(--fox-pink-accent);
  background:#d9f1fd;
  border:1px solid var(--fox-pink-border);
}
.filter-row-head h3.with-section-icon .section-title-icon{
  width:28px;
  height:28px;
  flex-basis:28px;
  border-radius:9px;
}
.filter-row-head h3.with-section-icon .section-title-icon svg{width:16px;height:16px}
@media(max-width:760px){
  .page-shell > .section .inner-white-card,
  .page-shell > .section .content,
  .page-shell > .section .filter-row{padding:18px;border-radius:15px}
  .section-title-icon{width:29px;height:29px;flex-basis:29px}
  .section-title-icon svg{width:16px;height:16px}
}


/* 2026-07-19 corrected section treatment: preserve original layout and colors */
/* Region guide and first-use content are not wrapped in a new white card. */
.page-shell > .section .content,
.page-shell > .section .home-steps,
.page-shell > .section .filter-row{
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  padding:0!important;
}
/* Original blue/pink information cards remain themed, not white. */
.page-shell > .section:not(.district-search-section):nth-of-type(odd) :is(.facts .fact,.home-steps .fact,.filter-row .intro-tag-box){
  background:var(--fox-sky-card)!important;
  border-color:var(--fox-sky-border)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(even) :is(.facts .fact,.home-steps .fact,.filter-row .intro-tag-box){
  background:var(--fox-pink-card)!important;
  border-color:var(--fox-pink-border)!important;
}
/* Keep natural spacing between theme/time/pay groups without making separate cards. */
.page-shell > .section .filter-row + .filter-row{margin-top:24px!important;}
/* CTA and minimum-wage already have their own identity; no added title icon. */
.page-shell > .section .cta h2,
.page-shell > .section .minimum-wage-card h2{display:block!important;}


/* corrected: preserve original layout and section colors */
.page-shell > .section .content,
.page-shell > .section .home-steps,
.page-shell > .section .filter-row{
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  padding:0!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) :is(.facts .fact,.home-steps .fact,.filter-row .intro-tag-box){
  background:var(--fox-sky-card)!important;
  border-color:var(--fox-sky-border)!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(even) :is(.facts .fact,.home-steps .fact,.filter-row .intro-tag-box){
  background:var(--fox-pink-card)!important;
  border-color:var(--fox-pink-border)!important;
}
.page-shell > .section .filter-row + .filter-row{margin-top:24px!important;}
.page-shell > .section .cta h2,
.page-shell > .section .minimum-wage-card h2{display:block!important;}

/* 2026-07-19 CTA white-card text visibility fix */
.page-shell > .section .cta.inner-white-surface{
  color:#172a33!important;
  background:#fff!important;
  padding:22px!important;
  min-height:0!important;
}
.page-shell > .section .cta.inner-white-surface h2{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  color:#172a33!important;
  margin:0 0 8px!important;
  font-size:21px!important;
  line-height:1.35!important;
}
.page-shell > .section .cta.inner-white-surface p{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  color:#607d8b!important;
  margin:0!important;
  line-height:1.65!important;
}
.page-shell > .section .cta.inner-white-surface .btn{
  margin-top:15px!important;
}

/* 2026-07-19 CTA white-card text visibility fix */
.page-shell > .section .cta.inner-white-surface{
  color:#172a33!important;
  background:#fff!important;
  padding:22px!important;
  min-height:0!important;
}
.page-shell > .section .cta.inner-white-surface h2{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  color:#172a33!important;
  margin:0 0 8px!important;
  font-size:21px!important;
  line-height:1.35!important;
}
.page-shell > .section .cta.inner-white-surface p{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  color:#607d8b!important;
  margin:0!important;
  line-height:1.65!important;
}
.page-shell > .section .cta.inner-white-surface .btn{
  margin-top:15px!important;
}

/* =========================================================
   FINAL CLEAN UI — keep only the district selector pink
   Everything below uses a calm white / neutral system.
   ========================================================= */
:root{
  --clean-bg:#f6f9fb;
  --clean-card:#ffffff;
  --clean-border:#e3ebef;
  --clean-border-strong:#d3e0e6;
  --clean-text:#172a33;
  --clean-muted:#607d8b;
  --clean-hover:#f7fafc;
  --clean-shadow:0 5px 18px rgba(15,23,42,.045);
}

/* Page canvas */
body{background:var(--clean-bg)!important;}
.page-shell{background:transparent!important;}

/* Keep the top district selector as the only pink section */
.page-shell > .district-search-section{
  background:#f2fafe!important;
  border-color:#38b3f0!important;
}
.page-shell > .district-search-section .intro-tag-box{
  background:#fff!important;
  border-color:#bce7fc!important;
  box-shadow:none!important;
}
.page-shell > .district-search-section .tag{
  background:#fff!important;
  border-color:#9fd5ef!important;
  color:#263a44!important;
}
.page-shell > .district-search-section .tag:hover,
.page-shell > .district-search-section .tag.active{
  background:#38b3f0!important;
  border-color:#38b3f0!important;
  color:#fff!important;
}

/* All content sections below become neutral white cards */
.page-shell > .section:not(.district-search-section){
  background:#fff!important;
  border-color:var(--clean-border)!important;
  box-shadow:none!important;
}

/* Remove all automatically added title icons */
.section-title-icon{display:none!important;}
.with-section-icon{display:block!important;}

/* Restore normal title spacing */
.page-shell > .section h2,
.page-shell > .section h3{
  color:var(--clean-text)!important;
}

/* Original containers stay structurally unchanged */
.page-shell > .section .content,
.page-shell > .section .home-steps,
.page-shell > .section .filter-row{
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  padding:0!important;
  box-shadow:none!important;
}

/* Every inner card/surface is white with a soft neutral outline */
.page-shell > .section:not(.district-search-section) :is(
  .intro-tag-box,
  .fact,
  .card,
  .quick,
  .seo-copy,
  details,
  .inner-white-card,
  .inner-white-surface,
  .faq,
  .cta,
  .minimum-wage-card
){
  background:var(--clean-card)!important;
  border-color:var(--clean-border)!important;
  box-shadow:none!important;
}

/* Information mini-cards */
.page-shell > .section:not(.district-search-section) :is(.facts .fact,.home-steps .fact,.safety-grid .card){
  background:#fbfdfe!important;
  border:1px solid var(--clean-border)!important;
}

/* Filter/tag containers */
.page-shell > .section:not(.district-search-section) .filter-row .intro-tag-box{
  background:#fbfdfe!important;
  border:1px solid var(--clean-border)!important;
}

/* Neutral tags and long-tail links */
.page-shell > .section:not(.district-search-section) .tag,
.page-shell > .section:not(.district-search-section) .seo-link-grid a{
  background:#fff!important;
  color:#263a44!important;
  border-color:#cfdce2!important;
  box-shadow:none!important;
}
.page-shell > .section:not(.district-search-section) .tag:hover,
.page-shell > .section:not(.district-search-section) .tag.active,
.page-shell > .section:not(.district-search-section) .seo-link-grid a:hover{
  background:var(--clean-hover)!important;
  color:#172a33!important;
  border-color:#98adb8!important;
}

/* FAQ */
.page-shell > .section:not(.district-search-section) .faq details,
.page-shell > .section:not(.district-search-section) .faq details[open]{
  background:#fff!important;
  border-color:var(--clean-border)!important;
}
.page-shell > .section:not(.district-search-section) .faq summary::after{
  color:#607d8b!important;
}

/* CTA card: ensure title/body remain visible and compact */
.page-shell > .section:not(.district-search-section) .cta,
.page-shell > .section:not(.district-search-section) .cta.inner-white-surface{
  background:#fff!important;
  color:var(--clean-text)!important;
  border:1px solid var(--clean-border)!important;
  padding:24px!important;
  min-height:0!important;
}
.page-shell > .section:not(.district-search-section) .cta h2,
.page-shell > .section:not(.district-search-section) .cta.inner-white-surface h2{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  color:var(--clean-text)!important;
  margin:0 0 8px!important;
}
.page-shell > .section:not(.district-search-section) .cta p,
.page-shell > .section:not(.district-search-section) .cta.inner-white-surface p{
  color:var(--clean-muted)!important;
  opacity:1!important;
  visibility:visible!important;
}

/* Keep minimum-wage card's own navy header, but neutralize outer frame */
.page-shell > .section:not(.district-search-section) .minimum-wage-card{
  border-color:var(--clean-border)!important;
}

/* Calm section separators */
.page-shell > .section:not(.district-search-section) + .section:not(.district-search-section){
  border-top:1px solid var(--clean-border)!important;
}

@media(max-width:760px){
  .page-shell > .section:not(.district-search-section) .cta,
  .page-shell > .section:not(.district-search-section) .cta.inner-white-surface{padding:20px!important;}
}

/* =========================================================
   TRUE FINAL WHITE UI FIX
   Old alternating nth-of-type rules had higher specificity.
   Neutralize them explicitly; only district selector stays pink.
   ========================================================= */
.page-shell > .section:not(.district-search-section):nth-of-type(odd),
.page-shell > .section:not(.district-search-section):nth-of-type(even),
.page-shell > .section.soft:not(.district-search-section){
  background:#ffffff!important;
  border-color:#e3ebef!important;
  box-shadow:none!important;
}

.page-shell > .section:not(.district-search-section):nth-of-type(odd) :is(.intro-tag-box,.fact,.card,.quick,.seo-copy,details,.inner-white-card,.inner-white-surface,.content,.home-steps,.faq,.cta,.minimum-wage-card,.filter-row),
.page-shell > .section:not(.district-search-section):nth-of-type(even) :is(.intro-tag-box,.fact,.card,.quick,.seo-copy,details,.inner-white-card,.inner-white-surface,.content,.home-steps,.faq,.cta,.minimum-wage-card,.filter-row){
  background:#ffffff!important;
  border-color:#e3ebef!important;
  box-shadow:none!important;
}

.page-shell > .section:not(.district-search-section):nth-of-type(odd) :is(.intro-tag-box,.card,.quick,details):hover,
.page-shell > .section:not(.district-search-section):nth-of-type(even) :is(.intro-tag-box,.card,.quick,details):hover{
  background:#ffffff!important;
  border-color:#d3e0e6!important;
}

.page-shell > .section:not(.district-search-section):nth-of-type(odd) :is(.facts .fact,.home-steps .fact,.safety-grid .card,.filter-row .intro-tag-box),
.page-shell > .section:not(.district-search-section):nth-of-type(even) :is(.facts .fact,.home-steps .fact,.safety-grid .card,.filter-row .intro-tag-box){
  background:#fbfdfe!important;
  border:1px solid #e3ebef!important;
}

.page-shell > .section:not(.district-search-section):nth-of-type(odd) .tag,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .tag,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .seo-link-grid a,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .seo-link-grid a{
  background:#ffffff!important;
  color:#263a44!important;
  border-color:#cfdce2!important;
}

.page-shell > .section:not(.district-search-section):nth-of-type(odd) .tag:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .tag:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .tag.active,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .tag.active,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .seo-link-grid a:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .seo-link-grid a:hover{
  background:#f7fafc!important;
  color:#172a33!important;
  border-color:#98adb8!important;
}

.page-shell > .section:not(.district-search-section):nth-of-type(odd) .faq details,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .faq details,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .faq details[open],
.page-shell > .section:not(.district-search-section):nth-of-type(even) .faq details[open]{
  background:#ffffff!important;
  border-color:#e3ebef!important;
}

.page-shell > .section:not(.district-search-section):nth-of-type(odd) .faq summary::after,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .faq summary::after{
  color:#607d8b!important;
}

/* Preserve branded components inside otherwise white sections. */
.page-shell .minimum-wage-card .minimum-wage-head{
  background:#12435b!important;
}

/* Top district selector remains the only pink block. */
.page-shell > .district-search-section,
.page-shell > .district-search-section.soft{
  background:#f2fafe!important;
  border-color:#38b3f0!important;
}
.page-shell > .district-search-section .intro-tag-box{
  background:#ffffff!important;
  border-color:#bce7fc!important;
}


/* =========================================================
   TRUE FINAL WHITE UI FIX
   Old alternating nth-of-type rules had higher specificity.
   Neutralize them explicitly; only district selector stays pink.
   ========================================================= */
.page-shell > .section:not(.district-search-section):nth-of-type(odd),
.page-shell > .section:not(.district-search-section):nth-of-type(even),
.page-shell > .section.soft:not(.district-search-section){
  background:#ffffff!important;
  border-color:#e3ebef!important;
  box-shadow:none!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) :is(.intro-tag-box,.fact,.card,.quick,.seo-copy,details,.inner-white-card,.inner-white-surface,.content,.home-steps,.faq,.cta,.minimum-wage-card,.filter-row),
.page-shell > .section:not(.district-search-section):nth-of-type(even) :is(.intro-tag-box,.fact,.card,.quick,.seo-copy,details,.inner-white-card,.inner-white-surface,.content,.home-steps,.faq,.cta,.minimum-wage-card,.filter-row){
  background:#ffffff!important;
  border-color:#e3ebef!important;
  box-shadow:none!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) :is(.intro-tag-box,.card,.quick,details):hover,
.page-shell > .section:not(.district-search-section):nth-of-type(even) :is(.intro-tag-box,.card,.quick,details):hover{
  background:#ffffff!important;
  border-color:#d3e0e6!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) :is(.facts .fact,.home-steps .fact,.safety-grid .card,.filter-row .intro-tag-box),
.page-shell > .section:not(.district-search-section):nth-of-type(even) :is(.facts .fact,.home-steps .fact,.safety-grid .card,.filter-row .intro-tag-box){
  background:#fbfdfe!important;
  border:1px solid #e3ebef!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .tag,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .tag,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .seo-link-grid a,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .seo-link-grid a{
  background:#ffffff!important;
  color:#263a44!important;
  border-color:#cfdce2!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .tag:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .tag:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .tag.active,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .tag.active,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .seo-link-grid a:hover,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .seo-link-grid a:hover{
  background:#f7fafc!important;
  color:#172a33!important;
  border-color:#98adb8!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .faq details,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .faq details,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .faq details[open],
.page-shell > .section:not(.district-search-section):nth-of-type(even) .faq details[open]{
  background:#ffffff!important;
  border-color:#e3ebef!important;
}
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .faq summary::after,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .faq summary::after{
  color:#607d8b!important;
}
.page-shell .minimum-wage-card .minimum-wage-head{background:#12435b!important;}
.page-shell > .district-search-section,
.page-shell > .district-search-section.soft{
  background:#f2fafe!important;
  border-color:#38b3f0!important;
}
.page-shell > .district-search-section .intro-tag-box{
  background:#ffffff!important;
  border-color:#bce7fc!important;
}

/* =========================================================
   2026-07-19 FINAL PINK BRAND POLISH
   - district selector is one continuous pink surface
   - category icon tiles use the site's pink brand color
   - minimum-wage card is light and consistent with the page
   ========================================================= */

/* District selector: remove the white strip and keep one pink panel. */
.page-shell > .district-search-section .intro-tag-box{
  background:#f2fafe!important;
  border-color:#c1e5f6!important;
  box-shadow:none!important;
}
.page-shell > .district-search-section .tag{
  background:#ffffff!important;
  color:#263a44!important;
  border-color:#a9daf2!important;
}
.page-shell > .district-search-section .tag:hover{
  background:transparent!important;
  color:#253a44!important;
  border-color:#6fc4ee!important;
  box-shadow:none!important;
}
.page-shell > .district-search-section .tag.active{
  background:#38b3f0!important;
  color:#ffffff!important;
  border-color:#38b3f0!important;
}

/* Category cards: pink icon tile instead of blue. */
.page-shell > .section:not(.district-search-section) .icon,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .icon,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .icon{
  background:#e9f7fe!important;
  border:1px solid #a9dcf5!important;
  color:#42b8f2!important;
  box-shadow:none!important;
}

/* Minimum wage: replace the heavy navy header with a soft pink/white design. */
.page-shell .minimum-wage-card{
  border:1px solid #c9e4f1!important;
  background:#ffffff!important;
  box-shadow:0 10px 28px rgba(170,64,104,.08)!important;
}
.page-shell .minimum-wage-card .minimum-wage-head{
  background:linear-gradient(135deg,#f4fbff 0%,#eff9fe 100%)!important;
  color:#1f2f37!important;
  border-bottom:1px solid #cce6f3!important;
}
.page-shell .minimum-wage-card .minimum-wage-eyebrow{
  color:#3ea5d8!important;
}
.page-shell .minimum-wage-card .minimum-wage-head h2{
  color:#1f2f37!important;
}
.page-shell .minimum-wage-card .minimum-wage-icon{
  background:#1194d5!important;
  color:#ffffff!important;
  box-shadow:0 7px 16px rgba(243,38,104,.20)!important;
}
.page-shell .minimum-wage-card .minimum-wage-official{
  color:#2f95c7!important;
  background:#ffffff!important;
  border-color:#a4d3ea!important;
}
.page-shell .minimum-wage-card .minimum-wage-official:hover{
  color:#ffffff!important;
  background:#42b8f2!important;
  border-color:#42b8f2!important;
}
.page-shell .minimum-wage-card .minimum-wage-label{
  background:#ffffff!important;
  color:#168dc7!important;
}
.page-shell .minimum-wage-card .minimum-wage-value{
  color:#168dc7!important;
}
.page-shell .minimum-wage-card .minimum-wage-foot{
  background:#f4fbff!important;
  border:1px solid #d5eaf4!important;
}


/* ===== 상단 텍스트 로고 ===== */
.site-logo{
  display:inline-flex;
  align-items:center;
  width:max-content;
  color:#35ade8;
  text-decoration:none;
  overflow:visible;
}
.text-logo{
  display:inline-flex;
  align-items:center;
  gap:.22em;
  font-family:Arial,"Arial Black","Noto Sans KR",sans-serif;
  font-size:28px;
  font-weight:900;
  line-height:1;
  letter-spacing:-1.5px;
  white-space:nowrap;
}
.text-logo-switch{
  position:relative;
  display:inline-grid;
  min-width:2.72em;
}
.text-logo-default,
.text-logo-hover{
  grid-area:1/1;
  transition:opacity .18s ease, transform .18s ease;
}
.text-logo-hover{
  opacity:0;
  transform:translateY(3px);
}
.site-logo:hover .text-logo-default,
.site-logo:focus-visible .text-logo-default{
  opacity:0;
  transform:translateY(-3px);
}
.site-logo:hover .text-logo-hover,
.site-logo:focus-visible .text-logo-hover{
  opacity:1;
  transform:translateY(0);
}
@media (max-width:768px){
  .text-logo{font-size:24px;letter-spacing:-1.2px}
}

/* Home section title green highlighter */
.marker-highlight{
  display:inline;
  padding:0 .08em;
  color:inherit;
  background:linear-gradient(transparent 34%, #0aa7f5 34%, #0aa7f5 92%, transparent 92%);
  -webkit-box-decoration-break:clone;
  box-decoration-break:clone;
}

/* 2026-07-19 FINAL: 지역 배지 영역 hover 시 뒤쪽 카드/박스 완전 제거 */
.page-shell .district-search-section,
.page-shell .district-search-section:hover,
.page-shell .district-search-section > .wrap,
.page-shell .district-search-section > .wrap:hover,
.page-shell .district-search-section .intro-tag-box,
.page-shell .district-search-section .intro-tag-box:hover,
.page-shell .district-search-section .tag-list,
.page-shell .district-search-section .tag-list:hover{
  box-shadow:none !important;
}
.page-shell .district-search-section .intro-tag-box,
.page-shell .district-search-section .intro-tag-box:hover,
.page-shell .district-search-section .tag-list,
.page-shell .district-search-section .tag-list:hover{
  background:transparent !important;
  border-color:transparent !important;
  border-width:0 !important;
  border-radius:0 !important;
  outline:0 !important;
}
.page-shell .district-search-section .intro-tag-box::before,
.page-shell .district-search-section .intro-tag-box::after,
.page-shell .district-search-section .tag-list::before,
.page-shell .district-search-section .tag-list::after{
  content:none !important;
  display:none !important;
}
/* 배지는 그대로 유지, 배지 뒤 부모 카드만 제거 */
.page-shell .district-search-section .district-tag{
  box-shadow:none !important;
}

/* FINAL: industry icons only — remove all colored icon tiles */
.page-shell .grid .card .icon,
.page-shell > .section:not(.district-search-section) .icon,
.page-shell > .section:not(.district-search-section):nth-of-type(odd) .icon,
.page-shell > .section:not(.district-search-section):nth-of-type(even) .icon{
  width:auto!important;
  height:auto!important;
  min-width:0!important;
  min-height:0!important;
  display:inline-block!important;
  padding:0!important;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  color:inherit!important;
  line-height:1!important;
}
.page-shell .grid .card:hover .icon{
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
}


/* LED 테두리: 정회전 → 2회 깜빡임 → 역회전 → 2회 깜빡임 */
.region-cta-btn{
  position:relative!important;
  overflow:visible!important;
  box-shadow:none!important;
  transform:translateX(0)!important;
  transition:background-color .18s ease!important;
}
.region-cta-btn::before{content:none!important;display:none!important;animation:none!important;}
.region-led-border{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
  overflow:visible;
  pointer-events:none;
  border-radius:inherit!important;
}
.region-led-border rect{
  fill:none;
  vector-effect:non-scaling-stroke;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.region-led-dots{
  stroke:#0997dd;
  stroke-width:2.2;
  stroke-dasharray:1.2 3.2;
  filter:drop-shadow(0 0 1.5px rgba(56,174,240,.95));
  animation:regionLedDotsCycle 5.6s linear infinite;
}
.region-led-flash{
  stroke:#49bef7;
  stroke-width:2.2;
  opacity:0;
  filter:drop-shadow(0 0 2px rgba(56,174,240,.9));
  animation:regionLedFlashCycle 5.6s steps(1,end) infinite;
}
.white-led-btn .region-led-dots{
  stroke:#fff;
  filter:drop-shadow(0 0 1.6px rgba(255,255,255,.98));
}
.white-led-btn .region-led-flash{
  stroke:#fff;
  filter:drop-shadow(0 0 2.2px rgba(255,255,255,1));
}
.region-cta-btn > :not(.region-led-border){position:relative;z-index:1;}
@keyframes regionLedDotsCycle{
  0%{stroke-dashoffset:0;opacity:1;}
  34%{stroke-dashoffset:-100;opacity:1;}
  35%,49%{stroke-dashoffset:-100;opacity:0;}
  50%{stroke-dashoffset:-100;opacity:1;}
  84%{stroke-dashoffset:0;opacity:1;}
  85%,100%{stroke-dashoffset:0;opacity:0;}
}
@keyframes regionLedFlashCycle{
  0%,35%{opacity:0;}
  37%,41%{opacity:1;}
  39%,44%,84%{opacity:0;}
  87%,91%{opacity:1;}
  89%,94%,100%{opacity:0;}
}
.region-cta-btn:hover{
  animation:regionCtaNudge .24s ease-in-out 1!important;
  box-shadow:none!important;
}
@keyframes regionCtaNudge{
  0%,100%{transform:translateX(0);}
  25%{transform:translateX(-3px);}
  55%{transform:translateX(3px);}
  78%{transform:translateX(-1px);}
}
.region-cta-btn:active{transform:translateX(0)!important;box-shadow:none!important;}
@media (prefers-reduced-motion:reduce){
  .region-led-dots,.region-led-flash,.region-cta-btn:hover{animation:none!important;}
  .region-led-dots{opacity:1;}
}

/* 2026-07-19 LED path exact badge alignment */
.region-cta-btn{border:2px solid rgba(56,174,240,.22)!important;}
.region-led-border{border-radius:inherit!important;}
.region-led-dots{stroke-width:2.2;}
.region-led-flash{stroke-width:2.2;}


/* Karaoke header effect */
.site-header,.top-header,header{
 position:relative;
 overflow:hidden;
 isolation:isolate;
 background:#fff;
}
.site-header::before,.top-header::before,header::before{
 content:"";
 position:absolute;
 inset:0;
 background:url("../img/01-2.gif") center/cover no-repeat;
 opacity:.10;
 pointer-events:none;
 z-index:0;
}
.site-header>*,.top-header>*,header>*{
 position:relative;
 z-index:1;
}

/* 2026-07-19 FIX: karaoke GIF on the actual top bar */
.site-topbar{
  position:relative!important;
  overflow:hidden!important;
  isolation:isolate!important;
  background:#fff!important;
}
.site-topbar::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("../img/01-2.gif")!important;
  background-position:center!important;
  background-size:cover!important;
  background-repeat:no-repeat!important;
  opacity:.48!important;
  mix-blend-mode:normal!important;
  pointer-events:none!important;
  z-index:0!important;
}
.site-topbar::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.30)!important;
  pointer-events:none!important;
  z-index:1!important;
}
.site-topbar > *{
  position:relative!important;
  z-index:2!important;
}
@media (max-width:768px){
  .site-topbar::before{opacity:.42!important;}
  .site-topbar::after{background:rgba(255,255,255,.36)!important;}
}


/* Region industry-section dancer placement */
.page-shell .industry-search-section{
  position:relative;
  overflow:hidden;
}
.page-shell .industry-search-section .section-head{
  min-height:104px;
  padding-right:124px;
  box-sizing:border-box;
}
.page-shell .industry-search-section .hero-dancer-industry{
  position:absolute;
  top:10px;
  right:30px;
  width:88px;
  height:auto;
  display:block;
  pointer-events:none;
  user-select:none;
  z-index:2;
}
@media (max-width:768px){
  .page-shell .industry-search-section .section-head{
    min-height:0;
    padding-right:0;
  }
  .page-shell .industry-search-section .hero-dancer-industry{
    display:none;
  }
}

/* 2026-07-19 FINAL FIX: dancer position, overlap and repaint residue */
.page-shell .industry-search-section{
  position:relative!important;
  overflow:hidden!important;
  isolation:isolate!important;
  contain:paint!important;
}
.page-shell .industry-search-section .section-head{
  position:relative!important;
  min-height:128px!important;
  padding-right:0!important;
  box-sizing:border-box!important;
  overflow:hidden!important;
  contain:paint!important;
}
.page-shell .industry-search-section .section-head > div{
  position:relative!important;
  z-index:2!important;
  max-width:310px;
}
.page-shell .industry-search-section .hero-dancer-industry{
  position:absolute!important;
  top:2px!important;
  left:34%!important;
  right:auto!important;
  width:82px!important;
  height:auto!important;
  display:block!important;
  pointer-events:none!important;
  user-select:none!important;
  z-index:1!important;
  transform:none!important;
  filter:none!important;
  mix-blend-mode:normal!important;
  will-change:auto!important;
  backface-visibility:hidden!important;
}
@media (max-width:980px){
  .page-shell .industry-search-section .section-head{min-height:0!important;}
  .page-shell .industry-search-section .hero-dancer-industry{display:none!important;}
}

/* Clip animated SVG to the badge and avoid GPU ghost rectangles */
.region-cta-btn{
  overflow:hidden!important;
  isolation:isolate!important;
  contain:paint!important;
  will-change:auto!important;
  transform:none!important;
  left:0;
}
.region-led-border{
  overflow:hidden!important;
  contain:paint!important;
  will-change:auto!important;
  filter:none!important;
}
.region-led-dots,
.region-led-flash,
.white-led-btn .region-led-dots,
.white-led-btn .region-led-flash{
  filter:none!important;
  will-change:auto!important;
}
.region-cta-btn:hover{
  animation:regionCtaNudgePaintSafe .24s ease-in-out 1!important;
  transform:none!important;
}
@keyframes regionCtaNudgePaintSafe{
  0%,100%{left:0;}
  25%{left:-3px;}
  55%{left:3px;}
  78%{left:-1px;}
}

/* Same fluorescent green marker across all requested home and region headings */
.marker-highlight{
  display:inline!important;
  padding:0 .12em!important;
  background:linear-gradient(transparent 28%,#9cff4d 28%,#9cff4d 88%,transparent 88%)!important;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}


/* 2026-07-19 regional CTA added GIF — existing baile GIF preserved */
.region-cta-with-gif{
  display:grid!important;
  grid-template-columns:240px minmax(0,1fr)!important;
  align-items:center!important;
  gap:20px!important;
  overflow:hidden!important;
  min-height:185px!important;
}
.region-cta-with-gif .region-cta-gif{
  display:block!important;
  width:240px!important;
  height:155px!important;
  object-fit:cover!important;
  object-position:center!important;
  border:1px solid #c9c9c9!important;
  outline:0!important;
  box-shadow:none!important;
  border-radius:4px!important;
  pointer-events:none!important;
  user-select:none!important;
}
.region-cta-with-gif .region-cta-copy{
  min-width:0!important;
}
@media (max-width:760px){
  .region-cta-with-gif{
    grid-template-columns:110px minmax(0,1fr)!important;
    gap:12px!important;
    min-height:130px!important;
    padding:14px!important;
  }
  .region-cta-with-gif .region-cta-gif{
    width:110px!important;
    height:100px!important;
  }
  .region-cta-with-gif .region-cta-copy h2{font-size:18px!important;}
}
@media (max-width:520px){
  .region-cta-with-gif{grid-template-columns:1fr!important;}
  .region-cta-with-gif .region-cta-gif{
    width:100%!important;
    height:150px!important;
  }
}


/* Region specialty information shown below each map */
.region-map-column{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.region-map-column .region-map-card{
  width:100%;
}
.region-specialty-card{
  padding:2px 24px 0;
  color:#112027;
  font-size:15px;
  line-height:1.55;
  text-align:left;
}
.region-specialty-title,
.region-specialty-desc{
  margin:0;
}
.region-specialty-title strong,
.region-specialty-desc strong{
  font-weight:800;
}
.region-specialty-chip{
  display:inline-flex;
  align-items:center;
  margin-top:5px;
  padding:3px 8px;
  border-radius:999px;
  background:#eef4f7;
  color:#627f8d;
  font-size:11px;
  line-height:1.2;
}
@media (max-width:760px){
  .region-specialty-card{padding:0 4px;font-size:14px;}
}

/* Region official symbols */
.region-specialty-chip{gap:5px;}
.region-official-logo{width:16px;height:16px;object-fit:contain;display:block;flex:0 0 16px;}

/* 2026-07-20: compact karaoke dancer card beside the regional GO badge */
.page-shell .industry-search-section .hero-dancer-industry{
  display:none!important;
}
.hero-left .hero-actions{
  display:flex!important;
  align-items:flex-end!important;
  gap:14px!important;
  flex-wrap:wrap!important;
  overflow:visible!important;
}
.region-dancer-card{
  position:relative!important;
  width:126px!important;
  height:132px!important;
  flex:0 0 126px!important;
  overflow:hidden!important;
  border:1px solid #ced8dd!important;
  border-radius:14px!important;
  background:#131a1d url("../img/01-2.gif") center/cover no-repeat!important;
  box-shadow:none!important;
  isolation:isolate!important;
  contain:paint!important;
  pointer-events:none!important;
}
.region-dancer-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:rgba(15,10,18,.10);
  pointer-events:none;
}
.region-dancer-card-character{
  position:absolute!important;
  left:50%!important;
  bottom:-1px!important;
  z-index:2!important;
  width:94px!important;
  height:auto!important;
  display:block!important;
  transform:translateX(-50%)!important;
  filter:none!important;
  mix-blend-mode:normal!important;
  user-select:none!important;
  pointer-events:none!important;
}
.hero-left .hero-actions > .region-cta-btn{
  margin-bottom:0!important;
}
@media (max-width:760px){
  .region-dancer-card{
    width:96px!important;
    height:104px!important;
    flex-basis:96px!important;
    border-radius:12px!important;
  }
  .region-dancer-card-character{width:74px!important;}
  .hero-left .hero-actions{gap:10px!important;}
}
@media (max-width:480px){
  .region-dancer-card{display:none!important;}
}


/* 2026-07-20: regional hero horizontal layout + taller karaoke dancer card */
.hero-left .region-main-row{
  display:grid!important;
  grid-template-columns:152px minmax(0,1fr)!important;
  align-items:center!important;
  gap:18px!important;
  width:100%!important;
  margin-top:18px!important;
}
.hero-left .region-main-content{
  min-width:0!important;
  width:100%!important;
}
.hero-left .region-main-content h1{
  margin:0 0 10px!important;
  font-size:clamp(24px,2.15vw,28px)!important;
  line-height:1.3!important;
  letter-spacing:-.045em!important;
  overflow-wrap:anywhere!important;
}
.hero-left .region-main-content > p{
  margin:0 0 18px!important;
  line-height:1.65!important;
}
.hero-left .region-main-content .hero-actions{
  display:flex!important;
  align-items:center!important;
  gap:0!important;
  flex-wrap:wrap!important;
  overflow:visible!important;
}
.hero-left .region-dancer-card{
  position:relative!important;
  width:152px!important;
  height:176px!important;
  min-width:152px!important;
  flex:none!important;
  overflow:hidden!important;
  border:1px solid #2baeef!important;
  border-radius:14px!important;
  background:#131a1d url("../img/01-2.gif") center/cover no-repeat!important;
  box-shadow:none!important;
  isolation:isolate!important;
  contain:paint!important;
  pointer-events:none!important;
}
.hero-left .region-dancer-card::after{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  z-index:1!important;
  background:rgba(15,10,18,.08)!important;
  pointer-events:none!important;
}
.hero-left .region-dancer-card-character{
  position:absolute!important;
  left:50%!important;
  bottom:4px!important;
  z-index:2!important;
  width:116px!important;
  height:164px!important;
  object-fit:contain!important;
  object-position:center bottom!important;
  display:block!important;
  transform:translateX(-50%)!important;
  filter:none!important;
  mix-blend-mode:normal!important;
  user-select:none!important;
  pointer-events:none!important;
}
@media (max-width:1050px){
  .hero-left .region-main-row{
    grid-template-columns:136px minmax(0,1fr)!important;
    gap:14px!important;
  }
  .hero-left .region-dancer-card{
    width:136px!important;
    height:164px!important;
    min-width:136px!important;
  }
  .hero-left .region-dancer-card-character{
    width:106px!important;
    height:152px!important;
  }
  .hero-left .region-main-content h1{
    font-size:24px!important;
  }
}
@media (max-width:700px){
  .hero-left .region-main-row{
    grid-template-columns:108px minmax(0,1fr)!important;
    align-items:start!important;
    gap:12px!important;
  }
  .hero-left .region-dancer-card{
    width:108px!important;
    height:132px!important;
    min-width:108px!important;
    border-radius:12px!important;
  }
  .hero-left .region-dancer-card-character{
    width:86px!important;
    height:122px!important;
    bottom:3px!important;
  }
  .hero-left .region-main-content h1{
    font-size:21px!important;
  }
  .hero-left .region-main-content > p{
    font-size:14px!important;
    margin-bottom:12px!important;
  }
}
@media (max-width:500px){
  .hero-left .region-main-row{
    grid-template-columns:1fr!important;
  }
  .hero-left .region-dancer-card{
    display:none!important;
  }
}

/* FINAL: keep regional hero title on one line and refine dancer card border */
.hero-left .region-main-content h1{
  font-size:24px!important;
  line-height:1.18!important;
  letter-spacing:-.055em!important;
  white-space:nowrap!important;
  overflow:visible!important;
}
.hero-left .region-dancer-card{
  border:2px solid #b4c3cb!important;
}
@media (max-width:1050px){
  .hero-left .region-main-content h1{
    font-size:22px!important;
  }
}
@media (max-width:700px){
  .hero-left .region-main-content h1{
    font-size:18px!important;
    letter-spacing:-.06em!important;
    white-space:normal!important;
  }
}

/* FINAL FIX 2026-07-20: remove reserved dancer space from industry search headings */
.page-shell .industry-search-section .section-head{
  min-height:0!important;
  padding-right:0!important;
  overflow:visible!important;
  contain:none!important;
}
.page-shell .industry-search-section .section-head > div{
  max-width:none!important;
  width:100%!important;
}
.page-shell .industry-search-section .hero-dancer-industry{
  display:none!important;
}


/* 2026-07 sky-blue duplicate-site theme */
:root{--sky-primary:#38b3f0;--sky-primary-dark:#1887bd;--sky-soft:#eff9fe;--sky-pale:#dbf2fd;--sky-border:#9bdbfa;}
::selection{background:#cdedfd;color:#103649;}

/* 전국밤알바 브랜드 로고 */
.text-logo.national-logo{font-family:"Noto Sans KR","Malgun Gothic",Arial,sans-serif;font-weight:900;letter-spacing:-1.8px;color:#0874d1;min-width:auto;}
@media(max-width:768px){.text-logo.national-logo{font-size:22px;letter-spacing:-1.4px}}


/* 상단 로그인 / 회원가입 */
.topbar-auth{display:flex;align-items:center;gap:8px;margin-left:auto;white-space:nowrap}
.topbar-auth a{display:inline-flex;align-items:center;justify-content:center;min-height:38px;padding:0 14px;border-radius:9px;font-size:14px;font-weight:800;text-decoration:none;transition:transform .15s ease,box-shadow .15s ease,background .15s ease}
.topbar-login{border:1px solid #d8dee8;background:#fff;color:#1f2937}
.topbar-login:hover{background:#f5f7fa;transform:translateY(-1px)}
.topbar-signup{border:1px solid #111;background:#111;color:#fff;box-shadow:0 3px 10px rgba(0,0,0,.12)}
.topbar-signup:hover{background:#2b2b2b;transform:translateY(-1px)}
@media (max-width:760px){
  .topbar-inner{gap:7px}
  .topbar-auth{gap:5px}
  .topbar-auth a{min-height:34px;padding:0 9px;font-size:12px;border-radius:7px}
}
@media (max-width:520px){
  .site-search{order:4;width:100%;flex-basis:100%}
  .topbar-inner{flex-wrap:wrap}
  .topbar-auth{margin-left:auto}
}

/* FINAL FIX: 로그인/회원가입 헤더 위치 정렬 */
@media (min-width:861px){
  .topbar-inner{
    display:grid!important;
    grid-template-columns:240px minmax(280px,1fr) auto!important;
    column-gap:18px!important;
  }
  .topbar-auth{
    justify-self:end!important;
    margin-left:0!important;
  }
}
@media (max-width:860px){
  .topbar-inner{
    display:flex!important;
    flex-wrap:nowrap!important;
    width:100%!important;
    padding:0 12px!important;
    gap:10px!important;
  }
  .mobile-menu{flex:0 0 auto!important;}
  .site-logo{
    flex:0 1 auto!important;
    min-width:0!important;
  }
  .topbar-auth{
    display:flex!important;
    flex:0 0 auto!important;
    margin-left:auto!important;
    gap:4px!important;
  }
  .topbar-auth a{
    min-height:30px!important;
    padding:0 7px!important;
    font-size:11px!important;
    border-radius:6px!important;
  }
}
@media (max-width:430px){
  .topbar-inner{gap:6px!important;padding:0 8px!important;}
  .mobile-menu{height:32px!important;padding:0 8px!important;font-size:12px!important;}
  .text-logo{font-size:17px!important;}
  .topbar-auth a{padding:0 5px!important;font-size:10px!important;}
}
