
:root{
  --wine:#681119;
  --wine-deep:#301014;
  --wine-mid:#51151b;
  --gold:#b69a61;
  --gold-soft:#dcc9a1;
  --ivory:#f7f3ec;
  --paper:#fffdfa;
  --ink:#2c2724;
  --muted:#716863;
  --line:#e4ddd2;
  --line-strong:#d3c8b8;
  --shadow:0 20px 60px rgba(58,34,27,.14);
  --sans:"Source Sans 3",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  --serif:"Source Serif 4",Georgia,"Times New Roman",serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:linear-gradient(180deg,#fbf8f3 0%,#f4efe6 100%);
}
button,a{font:inherit}
a{color:inherit}

.masthead{
  position:relative;
  z-index:60;
  background:rgba(255,253,250,.985);
  box-shadow:0 1px 0 rgba(80,60,49,.07);
}

.brand-shell{
  min-height:146px;
  padding:5px 26px 6px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.brand{
  width:min(100%,900px);
  display:flex;
  justify-content:center;
  text-decoration:none;
}

.brand img{
  display:block;
  width:min(100%,720px);
  max-height:128px;
  height:auto;
  object-fit:contain;
}

.nav-toggle{
  display:none;
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  width:45px;
  height:45px;
  border:1px solid var(--line);
  border-radius:11px;
  background:var(--paper);
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  width:20px;
  height:2px;
  margin:4px auto;
  background:var(--wine);
  transition:.2s ease;
}
.nav-toggle.active span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.nav-toggle.active span:nth-child(2){opacity:0}
.nav-toggle.active span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

.nav-shell{
  position:relative;
  background:rgba(247,243,236,.99);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  overflow:visible;
}

.nav-inner{
  width:min(94%,1600px);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  padding:7px 0 8px;
  position:relative;
}

/* Ana menü: kutu değil, rafine tipografik sekmeler */
.nav-item{
  min-width:0;
  position:static;
}

.nav-link{
  width:100%;
  min-height:45px;
  padding:8px 12px;
  border:0;
  border-right:1px solid rgba(196,184,168,.45);
  background:transparent;
  color:#403936;
  font-weight:700;
  font-size:.89rem;
  line-height:1.14;
  letter-spacing:-.008em;
  text-align:center;
  cursor:pointer;
  position:relative;
  transition:color .16s ease,background .16s ease;
}

.nav-item:nth-child(6n) .nav-link{
  border-right-color:transparent;
}

.nav-link::before{
  content:"";
  position:absolute;
  left:26%;
  right:26%;
  bottom:3px;
  height:2px;
  background:var(--wine);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .18s ease;
}

.nav-item.open>.nav-link,
.nav-link:focus-visible{
  color:var(--wine);
  background:rgba(255,255,255,.55);
  outline:none;
}

.nav-item.open>.nav-link::before,
.nav-link:focus-visible::before{
  transform:scaleX(1);
}

/* Son menü: koyu, ama aynı tipografik sistem */
.nav-item.accent .nav-link{
  margin:4px 8px;
  width:calc(100% - 16px);
  min-height:37px;
  border:0;
  border-radius:7px;
  background:var(--wine-deep);
  color:#fff8eb;
}

.nav-item.accent.open .nav-link{
  background:var(--wine-mid);
  color:#fff;
}

.nav-item.accent .nav-link::before{
  background:var(--gold);
  bottom:0;
}

/* Mega panel SADECE .open ile açılır.
   :hover ile açılma YOK — hızlı menü değişimi problemi burada çözülür. */
.mega-panel{
  display:none;
  position:absolute;
  left:0;
  right:0;
  top:100%;
  margin-top:0;
  background:rgba(255,253,250,.998);
  border:1px solid var(--line-strong);
  border-top:2px solid var(--wine);
  border-radius:0 0 15px 15px;
  box-shadow:var(--shadow);
  z-index:120;
  padding:18px 24px 22px;
  max-height:72vh;
  overflow:auto;
}

.nav-item.open>.mega-panel{
  display:block;
}

.mega-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin:0 0 14px;
  padding:0 4px 12px;
  border-bottom:1px solid var(--line);
}

.mega-head strong{
  font-family:var(--serif);
  font-size:1.48rem;
  font-weight:400;
  color:var(--wine-deep);
  letter-spacing:-.01em;
}

.mega-head span{
  color:var(--muted);
  font-size:.72rem;
  letter-spacing:.035em;
}

.mega-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px 28px;
}

.mega-group{
  min-width:0;
  padding:4px 2px;
}

.mega-group h3{
  margin:0 0 7px;
  padding-bottom:5px;
  border-bottom:1px solid #eee6da;
  color:var(--wine);
  font-size:.67rem;
  font-weight:700;
  letter-spacing:.105em;
  text-transform:uppercase;
}

.mega-group a{
  display:block;
  padding:6px 7px;
  border-radius:6px;
  color:#433c38;
  text-decoration:none;
  font-size:.87rem;
  line-height:1.26;
  transition:background .13s ease,color .13s ease,padding-left .13s ease;
}

.mega-group a:hover,
.mega-group a:focus-visible{
  background:#f4ede3;
  color:var(--wine-deep);
  padding-left:10px;
  outline:none;
}

/* Koyu Anayasa ve Kanunlar mega paneli */
.nav-item.accent .mega-panel{
  background:#2f171a;
  border-color:#664043;
  border-top-color:var(--gold);
}

.nav-item.accent .mega-head{
  border-color:rgba(255,255,255,.12);
}

.nav-item.accent .mega-head strong,
.nav-item.accent .mega-group h3{
  color:#efd8a5;
}

.nav-item.accent .mega-head span{
  color:#c7b8b0;
}

.nav-item.accent .mega-group h3{
  border-bottom-color:rgba(255,255,255,.12);
}

.nav-item.accent .mega-group a{
  color:#fff6e9;
}

.nav-item.accent .mega-group a:hover,
.nav-item.accent .mega-group a:focus-visible{
  background:#472126;
  color:white;
}

/* İçerik */
.stage{
  min-height:calc(100vh - 245px);
  padding:30px 18px 72px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* Bilgi bandı - divider kaldırıldı */
.constitution-notice{
  width:min(94vw,1440px);
  margin:0 auto 20px;
  padding:11px 22px;
  border-radius:11px;
  background:linear-gradient(90deg,#381417 0%,#5a151c 50%,#381417 100%);
  color:#fff7e9;
  border:1px solid rgba(182,154,97,.55);
  box-shadow:0 10px 28px rgba(75,25,29,.12);
  text-align:center;
  font-size:clamp(.78rem,.78vw,.97rem);
  font-weight:600;
  line-height:1.2;
  white-space:nowrap;
}

.video-card{
  width:min(92vw,1080px);
  background:linear-gradient(160deg,#601018,#330d12);
  padding:12px 12px 14px;
  border-radius:18px;
  box-shadow:0 24px 64px rgba(72,17,23,.22);
  border:1px solid rgba(182,154,97,.75);
}

.video-label{
  text-align:center;
  color:#f5e7c6;
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.18em;
  padding:2px 0 10px;
}

.video-frame{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:10px;
  background:#18080a;
}

.video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.ornament{
  width:min(78vw,760px);
  display:flex;
  align-items:center;
  gap:14px;
  margin:26px auto 0;
}

.ornament span{
  height:1px;
  flex:1;
  background:linear-gradient(90deg,transparent,var(--gold-soft),transparent);
}

.ornament i{
  width:7px;
  height:7px;
  border:1px solid var(--gold);
  transform:rotate(45deg);
}

/* Laptop: 4 + 4 + 4 */
@media (max-width:1199px) and (min-width:901px){
  .nav-inner{
    width:95%;
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
  .nav-item:nth-child(6n) .nav-link{
    border-right-color:rgba(196,184,168,.45);
  }
  .nav-item:nth-child(4n) .nav-link{
    border-right-color:transparent;
  }
  .nav-link{
    font-size:.87rem;
    min-height:46px;
  }
  .mega-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

/* Tablet / mobil */
@media (max-width:900px){
  .brand-shell{
    min-height:110px;
    padding:8px 72px 8px 16px;
    justify-content:flex-start;
  }

  .brand{
    justify-content:flex-start;
    width:min(100%,620px);
  }

  .brand img{
    width:min(100%,540px);
    max-height:90px;
  }

  .nav-toggle{
    display:block;
  }

  .nav-shell{
    position:fixed;
    inset:0;
    height:100dvh;
    padding:118px 13px 22px;
    border:0;
    background:rgba(248,244,237,.998);
    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);
    transition:.2s ease;
    overflow-y:auto;
    z-index:50;
  }

  .nav-shell.mobile-open{
    opacity:1;
    visibility:visible;
    transform:none;
  }

  .nav-inner{
    display:block;
    width:min(100%,720px);
    margin:0 auto;
    padding:0;
  }

  .nav-item{
    border-bottom:1px solid var(--line);
  }

  .nav-link{
    min-height:58px;
    padding:12px 12px;
    border:0;
    text-align:left;
    font-size:1rem;
  }

  .nav-link::before{
    display:none;
  }

  .nav-item.accent .nav-link{
    width:100%;
    margin:8px 0;
    min-height:50px;
    padding:10px 12px;
  }

  .mega-panel{
    position:static;
    display:none;
    padding:0 8px 14px;
    margin:0;
    border:0;
    border-radius:0;
    box-shadow:none;
    background:transparent;
    max-height:none;
    overflow:visible;
  }

  .nav-item.open>.mega-panel{
    display:block;
  }

  .mega-head{
    display:none;
  }

  .mega-grid{
    display:block;
  }

  .mega-group{
    padding:5px 4px 8px;
  }

  .mega-group h3{
    margin:3px 8px 5px;
    font-size:.65rem;
  }

  .mega-group a{
    padding:8px 10px;
    font-size:.9rem;
  }

  .nav-item.accent .mega-panel{
    background:#351a1d;
    border-radius:9px;
    margin-bottom:8px;
  }

  .constitution-notice{
    width:95vw;
    white-space:normal;
    font-size:.84rem;
    line-height:1.35;
    padding:11px 14px;
    margin-bottom:16px;
  }

  .stage{
    padding:26px 10px 52px;
  }

  body.menu-lock{
    overflow:hidden;
  }
}

@media (max-width:520px){
  .brand-shell{
    min-height:90px;
    padding-left:10px;
    padding-right:62px;
  }

  .brand img{
    max-height:70px;
  }

  .nav-toggle{
    right:10px;
    width:42px;
    height:42px;
  }

  .nav-shell{
    padding:98px 8px 18px;
  }

  .nav-link{
    font-size:.96rem;
  }

  .mega-group a{
    font-size:.86rem;
  }

  .video-card{
    width:96vw;
    padding:9px 9px 11px;
  }
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    transition:none!important;
    scroll-behavior:auto!important;
  }
}


/* Video ile PDF okuyucu arasındaki sade divider */
.document-divider{
  width:min(84vw,940px);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin:34px auto 30px;
}
.document-divider span{
  height:1px;
  flex:1;
  background:linear-gradient(90deg,transparent,rgba(182,154,97,.72),transparent);
}
.document-divider i{
  width:8px;
  height:8px;
  border:1px solid var(--gold);
  background:#f8f3eb;
  transform:rotate(45deg);
  box-shadow:0 0 0 5px rgba(182,154,97,.06);
}

/* PDF okuyucu */
.pdf-card{
  width:min(94vw,1180px);
  margin:0 auto;
  padding:14px;
  border:1px solid rgba(182,154,97,.72);
  border-radius:18px;
  background:linear-gradient(160deg,#601018,#330d12);
  box-shadow:0 24px 64px rgba(72,17,23,.20);
}

.pdf-heading{
  padding:12px 18px 16px;
  text-align:center;
  color:#fff8eb;
}

.pdf-eyebrow{
  display:block;
  margin-bottom:7px;
  color:#e6cf9d;
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.18em;
}

.pdf-heading h2{
  margin:0;
  font-family:var(--serif);
  font-size:clamp(1.55rem,2.25vw,2.25rem);
  font-weight:400;
  line-height:1.1;
  letter-spacing:-.015em;
}

.pdf-heading p{
  margin:8px auto 0;
  max-width:720px;
  color:#dbcfc7;
  font-size:.82rem;
  line-height:1.45;
}

.pdf-frame{
  position:relative;
  width:100%;
  height:min(78vh,920px);
  min-height:650px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  border-radius:11px;
  background:#ece8e1;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.04);
}

.pdf-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
  background:#ece8e1;
}

.pdf-actions{
  display:flex;
  justify-content:center;
  padding:11px 8px 3px;
}

.pdf-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:8px 14px;
  border:1px solid rgba(230,207,157,.48);
  border-radius:8px;
  color:#f4dfb4;
  text-decoration:none;
  font-size:.78rem;
  font-weight:600;
  transition:background .15s ease,color .15s ease,border-color .15s ease;
}

.pdf-actions a:hover,
.pdf-actions a:focus-visible{
  background:rgba(255,255,255,.08);
  color:#fff8eb;
  border-color:rgba(230,207,157,.78);
  outline:none;
}

@media (max-width:900px){
  .document-divider{
    width:88vw;
    margin:27px auto 24px;
  }

  .pdf-card{
    width:96vw;
    padding:10px;
    border-radius:15px;
  }

  .pdf-heading{
    padding:10px 10px 13px;
  }

  .pdf-heading p{
    font-size:.78rem;
  }

  .pdf-frame{
    height:70vh;
    min-height:520px;
    border-radius:9px;
  }
}

@media (max-width:520px){
  .document-divider{
    width:90vw;
    gap:10px;
    margin:23px auto 20px;
  }

  .pdf-heading h2{
    font-size:1.42rem;
  }

  .pdf-heading p{
    font-size:.74rem;
  }

  .pdf-frame{
    height:68vh;
    min-height:460px;
  }

  .pdf-actions a{
    width:100%;
    font-size:.76rem;
  }
}

/* =========================================================
   Mobil / Tablet Uyum Katmanı — 2026-08-12
   ========================================================= */
html,body{max-width:100%;overflow-x:hidden}
img,svg,video,iframe,object,embed{max-width:100%}
button,a{-webkit-tap-highlight-color:rgba(104,17,25,.12)}
.mobile-nav-home{display:none}
.pdf-mobile-note{display:none}

@media (max-width:900px){
  .masthead{position:relative;z-index:200}
  .brand-shell{
    min-height:98px;
    padding:8px 70px 8px 14px;
  }
  .brand{width:auto;max-width:calc(100vw - 92px)}
  .brand img{
    width:min(68vw,440px);
    max-width:100%;
    max-height:78px;
  }
  .nav-toggle{
    display:block;
    right:14px;
    width:46px;
    height:46px;
    z-index:230;
    touch-action:manipulation;
  }
  .nav-shell{
    z-index:190;
    padding:108px 14px max(24px,env(safe-area-inset-bottom));
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
  }
  .nav-inner{width:min(100%,720px)}
  .mobile-nav-home{
    display:flex;
    align-items:center;
    min-height:50px;
    margin:0 0 9px;
    padding:10px 12px;
    border:1px solid var(--line-strong);
    border-radius:10px;
    background:#fffdfa;
    color:var(--wine);
    text-decoration:none;
    font-size:.9rem;
    font-weight:800;
    box-shadow:0 6px 18px rgba(58,34,27,.05);
  }
  .nav-link{min-height:54px;touch-action:manipulation}
  .mega-group a{
    min-height:44px;
    display:flex;
    align-items:center;
    padding:10px 11px;
    line-height:1.35;
  }
  .mega-group h3{padding-top:6px}
  .nav-item.accent .mega-group a{min-height:44px}
  .constitution-notice{max-width:calc(100vw - 20px)}
  .video-card,.pdf-card{max-width:calc(100vw - 18px)}
  .video-frame iframe{touch-action:manipulation}
  .pdf-mobile-note{
    display:block;
    margin:0 8px 10px;
    color:#e7d8cf;
    font-size:.76rem;
    line-height:1.45;
    text-align:center;
  }
  .pdf-frame{
    height:clamp(520px,72dvh,780px);
    min-height:0;
    overflow:auto;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior:contain;
    touch-action:pan-y pinch-zoom;
  }
  .pdf-frame iframe{
    min-height:100%;
    touch-action:pan-y pinch-zoom;
  }
  .pdf-actions{padding-top:12px}
  .pdf-actions a{
    min-height:46px;
    padding:11px 16px;
    touch-action:manipulation;
  }
}

@media (max-width:640px){
  .brand-shell{min-height:84px;padding:7px 60px 7px 10px}
  .brand{max-width:calc(100vw - 76px)}
  .brand img{width:min(72vw,300px);max-height:66px}
  .nav-toggle{right:9px;width:44px;height:44px;border-radius:10px}
  .nav-shell{padding:92px 8px max(18px,env(safe-area-inset-bottom))}
  .mobile-nav-home{min-height:48px;font-size:.87rem}
  .nav-link{font-size:.96rem;min-height:52px}
  .mega-group a{font-size:.91rem;padding:10px 9px}
  .stage{padding-left:8px;padding-right:8px}
  .constitution-notice{width:100%;max-width:100%;border-radius:9px}
  .video-card,.pdf-card{width:100%;max-width:100%;border-radius:13px}
  .video-card{padding:8px 8px 10px}
  .document-divider{width:92vw}
  .pdf-heading{padding-left:6px;padding-right:6px}
  .pdf-frame{height:clamp(460px,70dvh,680px);border-radius:8px}
  .pdf-actions{padding-left:0;padding-right:0}
  .pdf-actions a{width:100%;font-size:.8rem}
}

@media (max-width:380px){
  .brand img{width:min(70vw,255px);max-height:58px}
  .brand-shell{min-height:78px;padding-right:56px}
  .nav-shell{padding-top:86px}
  .constitution-notice{font-size:.79rem}
  .pdf-frame{height:65dvh;min-height:420px}
}

@media (orientation:landscape) and (max-height:600px) and (max-width:900px){
  .brand-shell{min-height:70px}
  .brand img{max-height:54px;width:min(46vw,330px)}
  .nav-shell{padding-top:76px}
  .pdf-frame{height:78dvh;min-height:360px}
}


/* ==========================================================
   Metinsel marka + yüksek okunabilirlik tipografi sistemi
   ========================================================== */
html{font-size:17px;-webkit-text-size-adjust:100%;text-size-adjust:100%}
body{font-family:var(--sans);font-size:1rem;line-height:1.62;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;font-kerning:normal}

.brand-shell{min-height:124px;padding:17px 76px 16px;justify-content:center}
.brand{width:auto;max-width:min(94vw,980px);display:inline-flex;align-items:center;justify-content:center;text-decoration:none;color:var(--wine-deep);text-align:center}
.brand-mark{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;position:relative;padding:4px 34px 7px}
.brand-mark::after{content:"";position:absolute;left:12%;right:12%;bottom:0;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent)}
.brand-line-top{font-family:var(--sans);font-size:.78rem;line-height:1.15;font-weight:800;letter-spacing:.22em;color:#735f45}
.brand-line-main{margin:0;font-family:var(--serif);font-size:clamp(2rem,3.2vw,3.25rem);line-height:1.05;font-weight:600;letter-spacing:.025em;color:var(--wine-deep);text-wrap:balance}
.brand:hover .brand-line-main,.brand:focus-visible .brand-line-main{color:var(--wine)}
.brand:focus-visible{outline:2px solid var(--gold);outline-offset:7px;border-radius:6px}

.nav-link{font-size:.94rem;line-height:1.22;letter-spacing:0}
.mega-head strong{font-size:1.62rem;line-height:1.15}
.mega-head span{font-size:.78rem;line-height:1.4}
.mega-group h3{font-size:.72rem;line-height:1.35}
.mega-group a{font-size:.94rem;line-height:1.38;padding-top:7px;padding-bottom:7px}

.constitution-notice{font-size:clamp(.88rem,.84vw,1rem);line-height:1.45;font-weight:650;white-space:normal;max-width:1440px}
.video-label{font-size:.68rem;line-height:1.35}
.pdf-heading h2{font-family:var(--serif);font-size:clamp(1.85rem,3.3vw,2.8rem);line-height:1.12;font-weight:600;letter-spacing:-.01em;text-wrap:balance}
.pdf-heading p{font-size:1rem;line-height:1.6;max-width:760px;margin-left:auto;margin-right:auto}
.pdf-eyebrow{font-size:.7rem;line-height:1.35}
.pdf-actions a{font-size:.92rem;line-height:1.3}

@media(max-width:900px){
  .brand-shell{min-height:102px;padding:12px 70px 11px 16px;justify-content:flex-start}
  .brand{max-width:calc(100vw - 90px);text-align:left;justify-content:flex-start}
  .brand-mark{align-items:flex-start;padding:2px 0 5px;gap:1px}
  .brand-mark::after{left:0;right:28%;background:linear-gradient(90deg,var(--gold),transparent)}
  .brand-line-top{font-size:.68rem;letter-spacing:.155em}
  .brand-line-main{font-size:clamp(1.55rem,4.8vw,2.15rem);line-height:1.06;letter-spacing:.01em}
  .nav-shell{padding-top:108px}
  .nav-link{font-size:1.05rem;line-height:1.32}
  .mega-group h3{font-size:.72rem}
  .mega-group a{font-size:1rem;line-height:1.4;min-height:44px;display:flex;align-items:center}
}

@media(max-width:520px){
  html{font-size:16.5px}
  .brand-shell{min-height:88px;padding:10px 58px 9px 10px}
  .brand{max-width:calc(100vw - 70px)}
  .brand-line-top{font-size:.58rem;letter-spacing:.105em;white-space:nowrap}
  .brand-line-main{font-size:clamp(1.19rem,6vw,1.52rem);line-height:1.08;letter-spacing:0}
  .brand-mark::after{right:18%}
  .nav-shell{padding-top:94px}
  .nav-link{font-size:1.03rem}
  .mega-group a{font-size:.98rem}
  .constitution-notice{font-size:.92rem;line-height:1.5}
}

@media(max-width:360px){
  .brand-line-top{font-size:.53rem;letter-spacing:.07em}
  .brand-line-main{font-size:1.1rem}
}
\n\n/* ==========================================================
   AUTHORITATIVE RESPONSIVE LAYER — Sidebarless edition
   ========================================================== */
html,body{width:100%;max-width:100%;overflow-x:hidden}
body{min-width:0}
.masthead,.brand-shell,.nav-shell,.nav-inner,.stage,.video-card,.pdf-card{min-width:0}

/* Text brand: stable at every width */
.brand-shell{min-height:116px;padding:14px 78px 14px;display:flex;align-items:center;justify-content:center}
.brand{max-width:calc(100vw - 156px);min-width:0;overflow:visible}
.brand-mark{max-width:100%;min-width:0}
.brand-line-top,.brand-line-main{max-width:100%}
.brand-line-top{white-space:normal;text-wrap:balance}
.brand-line-main{text-wrap:balance;overflow-wrap:normal;word-break:keep-all}

/* Home content */
.stage{width:100%;padding-left:clamp(10px,2vw,24px);padding-right:clamp(10px,2vw,24px)}
.constitution-notice,.video-card,.pdf-card{width:min(100%,1120px)}
.constitution-notice{white-space:normal}
.video-card,.pdf-card{min-width:0}
.video-frame{width:100%}
.pdf-frame{width:100%;min-width:0;overscroll-behavior:contain}
.pdf-frame iframe{width:100%;height:100%;display:block;border:0}

/* Tablet */
@media(max-width:900px){
  .brand-shell{min-height:92px;padding:10px 66px 10px 14px;justify-content:flex-start}
  .brand{max-width:calc(100vw - 82px);justify-content:flex-start;text-align:left}
  .brand-mark{align-items:flex-start;max-width:100%;padding:0 0 5px}
  .brand-line-top{font-size:clamp(.56rem,1.55vw,.68rem);letter-spacing:.10em;line-height:1.18}
  .brand-line-main{font-size:clamp(1.25rem,4.2vw,2.05rem);letter-spacing:0;line-height:1.03}
  .nav-toggle{display:block;top:46px;right:12px;transform:translateY(-50%);width:46px;height:46px}
  .nav-shell{position:fixed!important;inset:0!important;width:100vw!important;height:100dvh!important;padding:102px 12px max(18px,env(safe-area-inset-bottom))!important;overflow-y:auto!important;overflow-x:hidden!important;-webkit-overflow-scrolling:touch;background:rgba(248,244,237,.998)!important}
  .nav-inner{width:min(100%,720px)!important;max-width:100%!important;margin:0 auto!important}
  .mobile-nav-home{display:flex!important;align-items:center;min-height:50px;padding:11px 12px;margin:0 0 10px;border:1px solid var(--line-strong);border-radius:10px;background:#fffdfa;color:var(--wine);font-weight:800;text-decoration:none}
  .nav-link{width:100%;min-height:54px;padding:12px;font-size:1rem;line-height:1.3;text-align:left}
  .mega-panel{max-width:100%;overflow:visible}
  .mega-grid,.mega-group{max-width:100%}
  .mega-group a{min-height:44px;padding:10px;font-size:.97rem;line-height:1.38;white-space:normal;overflow-wrap:anywhere}
  .stage{padding-top:18px;padding-bottom:42px}
  .constitution-notice,.video-card,.pdf-card{width:100%;max-width:760px}
  .pdf-frame{height:clamp(560px,72dvh,760px);min-height:0;overflow:auto;-webkit-overflow-scrolling:touch;touch-action:pan-y pinch-zoom}
}

/* Phone */
@media(max-width:600px){
  html{font-size:16px}
  .brand-shell{min-height:78px;padding:8px 56px 8px 9px}
  .brand{max-width:calc(100vw - 66px)}
  .brand-line-top{font-size:clamp(.50rem,2.4vw,.58rem);letter-spacing:.055em;line-height:1.15}
  .brand-line-main{font-size:clamp(1.08rem,5.7vw,1.42rem);line-height:1.04}
  .nav-toggle{top:39px;right:8px;width:43px;height:43px}
  .nav-shell{padding:87px 7px max(14px,env(safe-area-inset-bottom))!important}
  .mobile-nav-home{min-height:48px;margin-bottom:7px;font-size:.91rem}
  .nav-link{min-height:50px;font-size:.98rem;padding:10px 9px}
  .mega-group a{font-size:.94rem;padding:9px 8px}
  .stage{padding:14px 7px 36px}
  .constitution-notice,.video-card,.pdf-card{max-width:none;width:100%}
  .constitution-notice{padding:10px 12px;font-size:.88rem;line-height:1.45;border-radius:8px}
  .video-card,.pdf-card{border-radius:12px;padding-left:7px;padding-right:7px}
  .pdf-heading p{font-size:.92rem;line-height:1.55}
  .pdf-frame{height:clamp(500px,69dvh,660px);min-height:500px}
  .pdf-mobile-note{font-size:.78rem;line-height:1.45}
}

@media(max-width:360px){
  .brand-line-main{font-size:1.03rem}
  .brand-line-top{font-size:.47rem;letter-spacing:.035em}
  .pdf-frame{height:64dvh;min-height:430px}
}

@media(orientation:landscape) and (max-width:900px) and (max-height:600px){
  .brand-shell{min-height:64px;padding-top:6px;padding-bottom:6px}
  .nav-toggle{top:32px}
  .brand-line-top{font-size:.50rem}
  .brand-line-main{font-size:1.15rem}
  .nav-shell{padding-top:72px!important}
  .pdf-frame{height:78dvh;min-height:340px}
}
\n\n/* Tabletlerin tamamında hamburger kullan: 901–1100 px aralığı */
@media (min-width:901px) and (max-width:1100px){
  .brand-shell{min-height:96px;padding:10px 72px 10px 16px;justify-content:flex-start}
  .brand{max-width:calc(100vw - 96px);justify-content:flex-start;text-align:left}
  .brand-mark{align-items:flex-start;padding:0 0 5px;max-width:100%}
  .brand-line-top{font-size:.68rem;letter-spacing:.11em;line-height:1.15}
  .brand-line-main{font-size:clamp(1.65rem,3.7vw,2.25rem);line-height:1.04;letter-spacing:0}
  .nav-toggle{display:block;right:15px;top:48px;transform:translateY(-50%);width:46px;height:46px;z-index:230}
  .nav-shell{position:fixed!important;inset:0!important;width:100vw!important;height:100dvh!important;padding:106px 14px max(20px,env(safe-area-inset-bottom))!important;border:0!important;background:rgba(248,244,237,.998)!important;opacity:0;visibility:hidden;transform:translateY(-8px);transition:.2s ease;overflow-y:auto!important;overflow-x:hidden!important;z-index:190!important;-webkit-overflow-scrolling:touch}
  .nav-shell.mobile-open{opacity:1!important;visibility:visible!important;transform:none!important}
  .nav-inner{display:block!important;width:min(100%,780px)!important;margin:0 auto!important;padding:0!important}
  .mobile-nav-home{display:flex!important;align-items:center;min-height:50px;margin:0 0 9px;padding:10px 12px;border:1px solid var(--line-strong);border-radius:10px;background:#fffdfa;color:var(--wine);text-decoration:none;font-size:.95rem;font-weight:800}
  .nav-item{border-bottom:1px solid var(--line)!important;position:static!important}
  .nav-link{width:100%!important;min-height:55px!important;padding:12px!important;border:0!important;text-align:left!important;font-size:1.03rem!important}
  .nav-link::before{display:none!important}
  .nav-item.accent .nav-link{width:100%!important;margin:8px 0!important;min-height:50px!important;padding:10px 12px!important}
  .mega-panel{position:static!important;display:none!important;padding:0 8px 14px!important;margin:0!important;border:0!important;border-radius:0!important;box-shadow:none!important;background:transparent!important;max-height:none!important;overflow:visible!important}
  .nav-item.open>.mega-panel{display:block!important}
  .mega-head{display:none!important}.mega-grid{display:block!important}.mega-group{padding:5px 4px 8px!important}
  .mega-group h3{margin:3px 8px 5px!important;font-size:.7rem!important}.mega-group a{min-height:44px;display:flex;align-items:center;padding:10px;font-size:.98rem;line-height:1.4}
  .nav-item.accent .mega-panel{background:#351a1d!important;border-radius:9px!important;margin-bottom:8px!important}
  body.menu-lock{overflow:hidden!important}
}

/* 2026-08-14 — Direct Constitution PDF menu item */
.nav-item.nav-download{
  display:flex;
  align-items:stretch;
  padding:4px 6px;
}
.nav-item.nav-download .nav-link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:37px;
  margin:0;
  padding:8px 10px;
  border:1px solid rgba(184,145,76,.45);
  border-radius:7px;
  background:var(--wine-deep);
  color:#fff8eb;
  text-decoration:none;
  font-weight:800;
  line-height:1.15;
  letter-spacing:.015em;
  white-space:nowrap;
  box-sizing:border-box;
  cursor:pointer;
}
.nav-item.nav-download .nav-link:hover,
.nav-item.nav-download .nav-link:focus-visible{
  background:var(--wine-mid);
  color:#fff;
  outline:2px solid rgba(184,145,76,.55);
  outline-offset:1px;
}
.nav-item.nav-download .nav-link::before{display:none;}

@media (max-width:900px){
  .nav-item.nav-download{
    display:block;
    padding:8px 0;
    border-bottom:0!important;
  }
  .nav-item.nav-download .nav-link{
    width:100%!important;
    min-height:52px!important;
    margin:0!important;
    padding:12px 14px!important;
    justify-content:center;
    text-align:center!important;
    border:1px solid rgba(184,145,76,.5)!important;
    border-radius:9px!important;
    font-size:1rem!important;
  }
}


/* HOMEPAGE SLIDER 20260817-0958 */
.hero-slider{
  position:relative;
  width:100%;
  margin:0;
  background:#0d1b36;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(182,154,97,.28);
}
.hero-slides{
  position:relative;
  width:100%;
}
.hero-slide{
  display:none;
  width:100%;
}
.hero-slide.is-active{
  display:block;
}
.hero-slide-link{
  display:block;
  width:100%;
  color:inherit;
  text-decoration:none;
}
.hero-slide picture{
  display:block;
  width:100%;
}
.hero-slide img{
  display:block;
  width:100%;
  height:auto;
}
.hero-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(12,23,47,.50);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(8px);
  cursor:pointer;
  transition:background .2s ease, transform .2s ease, opacity .2s ease;
  z-index:2;
}
.hero-nav span{
  font-size:2rem;
  line-height:1;
  margin-top:-2px;
}
.hero-nav:hover{
  background:rgba(12,23,47,.74);
}
.hero-nav.prev{left:18px;}
.hero-nav.next{right:18px;}
.hero-slider.is-single .hero-nav{display:none;}
.hero-dots{
  position:absolute;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:2;
}
.hero-slider.is-single .hero-dots{display:none;}
.hero-dot{
  width:11px;
  height:11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.45);
  background:rgba(255,255,255,.28);
  padding:0;
  cursor:pointer;
}
.hero-dot.is-active{
  background:#f0d7a1;
  border-color:#f0d7a1;
}
@media (max-width: 1100px){
.hero-nav{width:40px;height:40px;}
  .hero-nav.prev{left:12px;}
  .hero-nav.next{right:12px;}
}
@media (max-width: 768px){
.hero-nav{width:36px;height:36px;}
  .hero-nav span{font-size:1.7rem;}
  .hero-dots{bottom:10px;gap:7px;}
  .hero-dot{width:9px;height:9px;}
}

/* SLIDER TOUCH UX 20260817-0958 */
.hero-slider{touch-action:pan-y;}
.hero-slides{touch-action:pan-y;}
.hero-slide img{-webkit-user-drag:none;user-select:none;touch-action:pan-y;}
.hero-slider.is-dragging .hero-slide-link{pointer-events:none;}


/* SLIDER FADE + COMPACT ASSETS 20260817-0958 */
.hero-slides{
  display:grid;
  position:relative;
  width:100%;
  overflow:hidden;
}
.hero-slide{
  grid-area:1 / 1;
  width:100%;
  display:block !important;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .9s ease-in-out, visibility 0s linear .9s;
}
.hero-slide.is-active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transition:opacity .9s ease-in-out, visibility 0s linear 0s;
  z-index:1;
}
.hero-slide img{
  display:block;
  width:100%;
  height:auto !important;
  aspect-ratio:16/9;
  object-fit:cover;
  object-position:center;
  -webkit-user-drag:none;
  user-select:none;
}
.hero-slider,.hero-slides{touch-action:pan-y;}
.hero-slider.is-dragging{cursor:grabbing;}
.hero-slider.is-dragging .hero-slide-link{pointer-events:none;}

/* FINAL HOMEPAGE POLISH 20260817-0958 */
.hero-nav{display:flex !important;}
.constitution-notice{
  width:100vw !important;
  max-width:none !important;
  margin:0 0 18px !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  border-radius:0 !important;
  padding:12px clamp(14px,3.5vw,34px) !important;
  background:linear-gradient(90deg,#4f1218 0%, #7a1822 50%, #4f1218 100%) !important;
  color:#fff8ee !important;
  border-top:1px solid rgba(182,154,97,.42) !important;
  border-bottom:1px solid rgba(182,154,97,.42) !important;
  border-left:0 !important;
  border-right:0 !important;
  box-shadow:none !important;
  text-align:center !important;
  white-space:normal !important;
  text-wrap:balance;
  font-size:clamp(.88rem,1.35vw,1.02rem) !important;
  line-height:1.42 !important;
  font-weight:650 !important;
}
@media (max-width:900px){
  .constitution-notice{padding:12px 18px !important;font-size:clamp(.86rem,2.1vw,.97rem) !important;line-height:1.45 !important;}
}
@media (max-width:600px){
  .constitution-notice{padding:11px 12px !important;font-size:clamp(.82rem,3.6vw,.92rem) !important;line-height:1.46 !important;}
}
@media (max-width:380px){
  .constitution-notice{padding:10px 10px !important;font-size:.8rem !important;line-height:1.44 !important;}
}


/* FULL-WIDTH HOME MEDIA 20260817-0958 */
.home-media-fullwidth,
.video-card,
.pdf-card{
  width:100vw !important;
  max-width:none !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  border-left:0 !important;
  border-right:0 !important;
  border-radius:0 !important;
}
.video-card{
  padding:10px 0 0 !important;
}
.video-label{
  padding:3px 16px 10px !important;
}
.video-frame{
  width:100% !important;
  max-width:none !important;
  border-radius:0 !important;
  aspect-ratio:16/9 !important;
}
.video-frame iframe{
  width:100% !important;
  height:100% !important;
}
.pdf-card{
  padding:22px 0 24px !important;
}
.pdf-heading,
.pdf-mobile-note,
.pdf-actions{
  width:min(calc(100% - 28px),1120px);
  margin-left:auto !important;
  margin-right:auto !important;
}
.pdf-frame{
  width:100vw !important;
  max-width:none !important;
  height:82vh !important;
  min-height:720px !important;
  margin-left:0 !important;
  margin-right:0 !important;
  border-radius:0 !important;
}
.pdf-frame iframe{
  width:100% !important;
  height:100% !important;
}
@media (max-width:900px){
  .video-card,.pdf-card{width:100vw !important;max-width:none !important;}
  .video-card{padding-top:8px !important;}
  .pdf-card{padding-top:18px !important;padding-bottom:20px !important;}
  .pdf-frame{height:76dvh !important;min-height:580px !important;}
}
@media (max-width:600px){
  .video-label{font-size:.64rem !important;padding:2px 10px 8px !important;}
  .pdf-heading,.pdf-mobile-note,.pdf-actions{width:calc(100% - 18px);}
  .pdf-card{padding-top:15px !important;padding-bottom:18px !important;}
  .pdf-frame{height:72dvh !important;min-height:500px !important;}
}
@media (max-width:380px){
  .pdf-frame{height:69dvh !important;min-height:450px !important;}
}
@media (orientation:landscape) and (max-width:900px) and (max-height:600px){
  .pdf-frame{height:88dvh !important;min-height:340px !important;}
}


/* BOXED HOMEPAGE — authoritative layout 20260817-0958 */
body.home-page{background:#f5f1ea;}

.hero-slider{
  width:min(calc(100% - 36px),1440px) !important;
  margin:20px auto 0 !important;
  border:1px solid rgba(90,22,28,.16) !important;
  border-radius:20px !important;
  box-shadow:0 18px 46px rgba(37,18,20,.14) !important;
  overflow:hidden !important;
  background:#0d1b36 !important;
}
.hero-slide img{
  width:100% !important;
  height:auto !important;
  aspect-ratio:16/9 !important;
  object-fit:cover !important;
  object-position:center !important;
}

.stage{
  width:min(100%,1440px) !important;
  margin:0 auto !important;
  padding:24px 18px 64px !important;
}

.constitution-notice{
  width:min(100%,1320px) !important;
  max-width:1320px !important;
  margin:0 auto 22px !important;
  padding:12px clamp(16px,2.6vw,30px) !important;
  border-radius:13px !important;
  border:1px solid rgba(182,154,97,.48) !important;
  background:linear-gradient(90deg,#431116 0%,#6b1720 50%,#431116 100%) !important;
  box-shadow:0 10px 28px rgba(72,17,23,.11) !important;
  font-size:clamp(.88rem,1.15vw,1rem) !important;
  line-height:1.43 !important;
  white-space:normal !important;
  text-wrap:balance;
  color:#fff8ee !important;
}

.home-media-fullwidth,
.video-card,
.pdf-card{
  width:min(100%,1320px) !important;
  max-width:1320px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  border-left:1px solid rgba(182,154,97,.66) !important;
  border-right:1px solid rgba(182,154,97,.66) !important;
  border-radius:18px !important;
  overflow:hidden !important;
}

.video-card{
  padding:10px 10px 12px !important;
  box-shadow:0 18px 46px rgba(72,17,23,.16) !important;
}
.video-label{padding:3px 14px 10px !important;}
.video-frame{
  width:100% !important;
  max-width:none !important;
  border-radius:12px !important;
  aspect-ratio:16/9 !important;
  overflow:hidden !important;
}
.video-frame iframe{width:100% !important;height:100% !important;}

.document-divider{width:min(72%,760px) !important;margin:26px auto !important;}

.pdf-card{
  padding:22px 14px 20px !important;
  box-shadow:0 18px 48px rgba(56,25,28,.12) !important;
}
.pdf-heading,
.pdf-mobile-note,
.pdf-actions{
  width:min(100%,1100px) !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
.pdf-frame{
  width:100% !important;
  max-width:1260px !important;
  height:min(80vh,900px) !important;
  min-height:680px !important;
  margin:14px auto 0 !important;
  border-radius:12px !important;
  overflow:hidden !important;
}
.pdf-frame iframe{width:100% !important;height:100% !important;}

@media(max-width:1100px){
  .hero-slider{width:calc(100% - 24px) !important;margin-top:14px !important;border-radius:16px !important;}
  .stage{padding:20px 12px 52px !important;}
  .constitution-notice,.video-card,.pdf-card{width:100% !important;max-width:100% !important;}
  .pdf-frame{height:74dvh !important;min-height:580px !important;}
}

@media(max-width:600px){
  .hero-slider{width:calc(100% - 12px) !important;margin-top:8px !important;border-radius:12px !important;}
  .stage{padding:12px 6px 36px !important;}
  .constitution-notice{
    margin-bottom:14px !important;
    padding:10px 11px !important;
    border-radius:10px !important;
    font-size:clamp(.80rem,3.6vw,.90rem) !important;
    line-height:1.43 !important;
  }
  .video-card,.pdf-card{border-radius:12px !important;}
  .video-card{padding:7px 7px 9px !important;}
  .video-frame{border-radius:8px !important;}
  .pdf-card{padding:15px 7px 16px !important;}
  .pdf-frame{height:70dvh !important;min-height:500px !important;border-radius:8px !important;}
  .document-divider{width:76% !important;margin:20px auto !important;}
}

@media(max-width:380px){
  .hero-slider{width:calc(100% - 8px) !important;border-radius:10px !important;}
  .stage{padding-left:4px !important;padding-right:4px !important;}
  .constitution-notice{font-size:.79rem !important;padding:9px 9px !important;}
  .pdf-frame{height:67dvh !important;min-height:450px !important;}
}

@media(orientation:landscape) and (max-width:900px) and (max-height:600px){
  .pdf-frame{height:86dvh !important;min-height:340px !important;}
}


/* ==========================================================
   GLOBAL BOXED SITE SYSTEM — 20260817-0958
   Entire site: calmer, centered, consistent institutional shell
   ========================================================== */
:root{
  --site-box:1380px;
  --site-content:1180px;
  --site-reading:1080px;
  --box-radius:22px;
  --box-border:rgba(132,103,77,.18);
  --box-shadow:0 18px 52px rgba(56,36,29,.09);
}
body{
  background:
    radial-gradient(circle at 10% 0%,rgba(182,154,97,.08),transparent 30%),
    radial-gradient(circle at 92% 12%,rgba(104,17,25,.045),transparent 28%),
    linear-gradient(180deg,#eee8df 0%,#f5f0e8 34%,#eee8df 100%) !important;
}
.masthead{
  width:min(calc(100% - 32px),var(--site-box)) !important;
  margin:16px auto 0 !important;
  border:1px solid var(--box-border) !important;
  border-radius:24px 24px 18px 18px !important;
  box-shadow:0 14px 42px rgba(54,34,28,.10) !important;
  overflow:visible !important;
  background:rgba(255,253,250,.985) !important;
}
.brand-shell{
  min-height:112px !important;
  padding:12px 32px 10px !important;
  border-radius:24px 24px 0 0 !important;
}
.brand{max-width:860px !important;}
.nav-shell{
  border-left:0 !important;
  border-right:0 !important;
  border-bottom:0 !important;
  border-radius:0 0 17px 17px !important;
  background:rgba(247,243,236,.97) !important;
}
.nav-inner{
  width:min(calc(100% - 24px),1280px) !important;
  padding:8px 0 9px !important;
}
.mega-panel{
  left:10px !important;
  right:10px !important;
  border-radius:0 0 16px 16px !important;
}

/* Homepage: one coherent boxed visual rhythm */
.hero-slider{
  width:min(calc(100% - 32px),1260px) !important;
  margin:18px auto 0 !important;
  border-radius:20px !important;
  border:1px solid rgba(182,154,97,.42) !important;
  box-shadow:0 20px 56px rgba(35,24,24,.13) !important;
}
.stage{
  width:min(calc(100% - 32px),1260px) !important;
  margin:18px auto 42px !important;
  padding:0 !important;
  background:transparent !important;
}
.constitution-notice{
  width:100% !important;
  max-width:none !important;
  margin:0 auto 18px !important;
  border-radius:14px !important;
  box-shadow:0 12px 32px rgba(72,17,23,.10) !important;
}
.video-card,.pdf-card,.home-media-fullwidth{
  width:100% !important;
  max-width:none !important;
  margin-left:auto !important;
  margin-right:auto !important;
  border-radius:20px !important;
  border:1px solid rgba(182,154,97,.48) !important;
  box-shadow:var(--box-shadow) !important;
}
.video-card{padding:12px 12px 14px !important;}
.video-frame{border-radius:12px !important;}
.pdf-card{padding:26px 18px 22px !important;}
.pdf-heading,.pdf-mobile-note,.pdf-actions{width:min(100%,1040px) !important;}
.pdf-frame{
  width:min(100%,1120px) !important;
  max-width:1120px !important;
  height:min(78vh,860px) !important;
  min-height:660px !important;
  border-radius:13px !important;
  box-shadow:0 8px 24px rgba(39,29,25,.08) inset !important;
}
.document-divider{width:min(64%,680px) !important;margin:24px auto !important;}

@media(max-width:1100px){
  .masthead{width:calc(100% - 20px) !important;margin-top:10px !important;border-radius:18px !important;}
  .brand-shell{min-height:94px !important;padding:10px 70px 10px 18px !important;border-radius:18px 18px 0 0 !important;}
  .nav-shell{border-radius:0 0 14px 14px !important;}
  .hero-slider,.stage{width:calc(100% - 20px) !important;}
  .hero-slider{margin-top:12px !important;border-radius:16px !important;}
  .stage{margin-top:14px !important;margin-bottom:28px !important;}
  .pdf-frame{height:72dvh !important;min-height:560px !important;}
}
@media(max-width:900px){
  .nav-shell{border-radius:0 !important;}
  .mega-panel{left:0 !important;right:0 !important;}
}
@media(max-width:600px){
  body{background:linear-gradient(180deg,#f4efe8 0%,#eee8df 100%) !important;}
  .masthead{width:100% !important;margin:0 !important;border:0 !important;border-radius:0 !important;box-shadow:0 1px 0 rgba(80,60,49,.08) !important;}
  .brand-shell{min-height:78px !important;padding:8px 56px 8px 10px !important;border-radius:0 !important;}
  .hero-slider{width:calc(100% - 12px) !important;margin-top:8px !important;border-radius:12px !important;}
  .stage{width:calc(100% - 12px) !important;margin-top:10px !important;margin-bottom:18px !important;}
  .constitution-notice{border-radius:10px !important;margin-bottom:12px !important;}
  .video-card,.pdf-card{border-radius:13px !important;}
  .video-card{padding:7px 7px 9px !important;}
  .pdf-card{padding:16px 7px 15px !important;}
  .pdf-frame{width:100% !important;height:68dvh !important;min-height:480px !important;border-radius:8px !important;}
  .document-divider{width:72% !important;margin:18px auto !important;}
}


/* TWO-COLUMN EXECUTIVE FEATURE — 20260817-0958 */
.executive-neutrality-feature{
  width:100%;
  display:grid;
  grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);
  gap:22px;
  align-items:stretch;
  margin:0 0 22px;
}
.executive-neutrality-visual{
  margin:0;
  min-width:0;
  overflow:hidden;
  border-radius:20px;
  border:1px solid rgba(182,154,97,.42);
  background:#071523;
  box-shadow:0 18px 46px rgba(35,24,24,.12);
}
.executive-neutrality-visual img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.executive-neutrality-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:clamp(26px,3vw,46px);
  border-radius:20px;
  border:1px solid rgba(132,103,77,.18);
  background:linear-gradient(145deg,rgba(255,253,249,.99),rgba(247,241,231,.98));
  box-shadow:0 18px 46px rgba(56,36,29,.085);
}
.feature-eyebrow{
  display:inline-block;
  width:max-content;
  max-width:100%;
  margin:0 0 18px;
  padding:7px 11px 6px;
  border:1px solid rgba(182,154,97,.42);
  border-radius:999px;
  color:#74151e;
  background:rgba(182,154,97,.08);
  font-size:clamp(.66rem,.75vw,.76rem);
  line-height:1.2;
  font-weight:800;
  letter-spacing:.10em;
}
.executive-neutrality-copy p{
  margin:0;
  font-family:var(--serif);
  color:#2f2824;
  font-size:clamp(1.02rem,1.32vw,1.28rem);
  line-height:1.72;
  font-weight:500;
  text-wrap:pretty;
}
.executive-neutrality-copy p::first-letter{
  color:#76151e;
  font-size:1.22em;
  font-weight:700;
}
@media(max-width:900px){
  .executive-neutrality-feature{grid-template-columns:1fr;gap:14px;margin-bottom:18px;}
  .executive-neutrality-visual{width:min(100%,620px);justify-self:center;border-radius:16px;}
  .executive-neutrality-visual img{height:auto;object-fit:contain;}
  .executive-neutrality-copy{padding:24px 22px;border-radius:16px;}
  .executive-neutrality-copy p{font-size:clamp(1rem,2.35vw,1.13rem);line-height:1.68;}
}
@media(max-width:600px){
  .executive-neutrality-feature{gap:10px;margin-bottom:14px;}
  .executive-neutrality-visual{border-radius:12px;}
  .executive-neutrality-copy{padding:19px 16px 20px;border-radius:12px;}
  .feature-eyebrow{margin-bottom:13px;font-size:.62rem;letter-spacing:.07em;padding:6px 9px 5px;}
  .executive-neutrality-copy p{font-family:var(--sans);font-size:.95rem;line-height:1.61;font-weight:500;}
}


/* POLICY FEATURE PAIR — 20260817-0958 */
.feature-title{
  margin:0 0 18px;
  max-width:16ch;
  font-family:var(--serif);
  color:#2a2020;
  font-size:clamp(2rem,3vw,3.25rem);
  line-height:1.06;
  font-weight:650;
  letter-spacing:-.025em;
  text-wrap:balance;
}
.executive-neutrality-copy .feature-title{color:#3c171b;}
.executive-neutrality-copy .feature-eyebrow{margin-bottom:14px;}
.policy-feature{
  width:100%;
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(0,.88fr);
  gap:22px;
  align-items:stretch;
  margin:0 0 26px;
}
.policy-feature-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:clamp(26px,3vw,46px);
  border-radius:20px;
  border:1px solid rgba(132,103,77,.18);
  background:linear-gradient(145deg,rgba(255,253,249,.99),rgba(247,241,231,.98));
  box-shadow:0 18px 46px rgba(56,36,29,.085);
}
.policy-feature-copy p{
  margin:0;
  font-family:var(--serif);
  color:#2f2824;
  font-size:clamp(1.02rem,1.3vw,1.25rem);
  line-height:1.7;
  font-weight:500;
  text-wrap:pretty;
}
.policy-feature-copy p strong{color:#65131a;font-weight:650;}
.policy-feature-visual{
  margin:0;
  min-width:0;
  overflow:hidden;
  border-radius:20px;
  border:1px solid rgba(182,154,97,.42);
  background:#071523;
  box-shadow:0 18px 46px rgba(35,24,24,.12);
}
.policy-feature-visual img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.legislative-copy .feature-title{color:#102238;}
.legislative-copy .feature-eyebrow{color:#5d451f;background:rgba(182,154,97,.10);}
@media(max-width:900px){
  .feature-title{max-width:none;font-size:clamp(1.75rem,5.4vw,2.5rem);margin-bottom:15px;}
  .policy-feature{grid-template-columns:1fr;gap:14px;margin-bottom:20px;}
  .policy-feature-copy{order:2;padding:24px 22px;border-radius:16px;}
  .policy-feature-visual{order:1;width:min(100%,620px);justify-self:center;border-radius:16px;}
  .policy-feature-visual img{height:auto;object-fit:contain;}
  .policy-feature-copy p{font-size:clamp(1rem,2.35vw,1.13rem);line-height:1.68;}
}
@media(max-width:600px){
  .feature-title{font-size:clamp(1.55rem,7.2vw,2rem);line-height:1.08;margin-bottom:13px;}
  .policy-feature{gap:10px;margin-bottom:16px;}
  .policy-feature-copy{padding:19px 16px 20px;border-radius:12px;}
  .policy-feature-visual{border-radius:12px;}
  .policy-feature-copy p{font-family:var(--sans);font-size:.95rem;line-height:1.61;font-weight:500;}
}


/* JUDICIARY FEATURE — 20260817-0958 */
.judiciary-copy .feature-title{color:#18253d;}
.judiciary-copy .feature-eyebrow{color:#5f451d;background:rgba(182,154,97,.10);}
.judiciary-copy p strong{color:#65131a;font-weight:650;}
.judiciary-visual{background:#071523;}

/* CONSTITUTION AI ASSISTANT — 20260817-0958 */
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.constitution-assistant{width:100%;display:grid;grid-template-columns:auto minmax(0,.9fr) minmax(420px,1.35fr);gap:22px;align-items:center;margin:0 0 22px;padding:24px 26px;border:1px solid rgba(182,154,97,.34);border-radius:18px;background:linear-gradient(122deg,#faf6ed 0%,#fffdf9 49%,#f4eee2 100%);box-shadow:0 14px 36px rgba(44,28,22,.08);position:relative;overflow:hidden}
.constitution-assistant::after{content:"";position:absolute;right:-90px;top:-105px;width:270px;height:270px;border-radius:50%;border:1px solid rgba(182,154,97,.18);box-shadow:0 0 0 30px rgba(182,154,97,.035),0 0 0 62px rgba(182,154,97,.025);pointer-events:none}
.assistant-mark{width:62px;height:62px;border-radius:17px;display:grid;place-items:center;position:relative;background:linear-gradient(145deg,#111f33,#071321);box-shadow:inset 0 0 0 1px rgba(218,190,128,.28),0 9px 22px rgba(8,19,33,.16);z-index:1}
.assistant-mark svg{width:31px;height:31px;fill:none;stroke:#d2b36d;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.assistant-mark-ring{position:absolute;inset:6px;border:1px solid rgba(210,179,109,.16);border-radius:13px}
.assistant-intro{min-width:0;position:relative;z-index:1}.assistant-eyebrow{display:block;margin-bottom:5px;color:#7a1921;font-size:.68rem;font-weight:800;letter-spacing:.11em}.assistant-intro h2{margin:0 0 6px;font-family:var(--serif);font-size:clamp(1.5rem,2vw,2.15rem);line-height:1.05;color:#172238;letter-spacing:-.02em}.assistant-intro p{margin:0;max-width:52ch;font-size:.92rem;line-height:1.5;color:#5b514b}
.assistant-search{min-width:0;position:relative;z-index:1}.assistant-input-shell{display:grid;grid-template-columns:42px minmax(0,1fr) auto;align-items:center;min-height:58px;padding:5px 6px 5px 4px;border:1px solid rgba(78,59,48,.19);border-radius:14px;background:#fff;box-shadow:0 9px 24px rgba(59,43,33,.07);transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease}.assistant-input-shell:focus-within{border-color:rgba(116,21,30,.45);box-shadow:0 11px 28px rgba(59,43,33,.10),0 0 0 3px rgba(116,21,30,.055);transform:translateY(-1px)}.assistant-search-icon{width:17px;height:17px;border:1.8px solid #7a6a5d;border-radius:50%;justify-self:center;position:relative}.assistant-search-icon::after{content:"";position:absolute;width:7px;height:1.8px;background:#7a6a5d;right:-5px;bottom:-2px;transform:rotate(45deg);border-radius:2px}.assistant-input-shell input{min-width:0;width:100%;border:0;outline:0;background:transparent;color:#201d1b;font:600 .98rem/1.3 var(--sans);padding:10px 12px 10px 2px}.assistant-input-shell input::placeholder{color:#938980;font-weight:500}.assistant-input-shell button{height:46px;min-width:88px;border:0;border-radius:10px;background:linear-gradient(135deg,#74151e,#541017);color:#fff;font:800 .83rem/1 var(--sans);letter-spacing:.035em;display:flex;align-items:center;justify-content:center;gap:9px;cursor:pointer;box-shadow:0 7px 16px rgba(116,21,30,.18);transition:transform .16s ease,filter .16s ease}.assistant-input-shell button:hover{transform:translateY(-1px);filter:brightness(1.05)}.assistant-hint-row{display:flex;justify-content:space-between;gap:14px;align-items:center;margin-top:8px;padding:0 3px;color:#786d65;font-size:.72rem;line-height:1.35}.assistant-example{border:0;background:none;padding:0;color:#74151e;font:800 .7rem/1.2 var(--sans);cursor:pointer;text-decoration:underline;text-decoration-color:rgba(116,21,30,.25);text-underline-offset:3px}
.assistant-modal{position:fixed;inset:0;z-index:9999;display:grid;place-items:center;padding:28px;visibility:hidden;pointer-events:none}.assistant-modal.is-open{visibility:visible;pointer-events:auto}.assistant-modal-backdrop{position:absolute;inset:0;background:rgba(7,13,22,.62);backdrop-filter:blur(6px);opacity:0;transition:opacity .25s ease}.assistant-modal.is-open .assistant-modal-backdrop{opacity:1}.assistant-dialog{position:relative;width:min(820px,calc(100vw - 40px));max-height:min(780px,calc(100dvh - 52px));display:flex;flex-direction:column;border:1px solid rgba(206,178,118,.45);border-radius:20px;background:#fbf8f1;box-shadow:0 30px 90px rgba(0,0,0,.28);overflow:hidden;opacity:0;transform:translateY(18px) scale(.975);transition:opacity .28s cubic-bezier(.2,.8,.2,1),transform .28s cubic-bezier(.2,.8,.2,1)}.assistant-modal.is-open .assistant-dialog{opacity:1;transform:translateY(0) scale(1)}.assistant-dialog-topbar{min-height:74px;padding:15px 18px 15px 22px;background:linear-gradient(118deg,#0a1827,#10243b);display:flex;align-items:center;justify-content:space-between;gap:16px;border-bottom:1px solid rgba(210,179,109,.3)}.assistant-dialog-brand{display:flex;align-items:center;gap:11px;color:#fff}.assistant-live-dot{width:10px;height:10px;border-radius:50%;background:#d2b36d;box-shadow:0 0 0 6px rgba(210,179,109,.11)}.assistant-dialog-brand div{display:flex;flex-direction:column;gap:2px}.assistant-dialog-brand span{font-size:.62rem;font-weight:800;letter-spacing:.13em;color:#d7c08d}.assistant-dialog-brand strong{font-family:var(--serif);font-size:1.16rem;font-weight:650;letter-spacing:.005em}.assistant-close{width:42px;height:42px;border:1px solid rgba(255,255,255,.16);border-radius:12px;background:rgba(255,255,255,.06);color:#fff;font:300 2rem/1 var(--sans);cursor:pointer;display:grid;place-items:center;padding:0 0 4px;transition:background .16s ease,transform .16s ease}.assistant-close:hover{background:rgba(255,255,255,.12);transform:rotate(2deg)}.assistant-dialog-scroll{overflow:auto;padding:24px 26px 28px;overscroll-behavior:contain}.assistant-question-card{padding:14px 16px 15px;border-left:3px solid #b59a61;background:#f3ecdf;border-radius:0 11px 11px 0;margin-bottom:22px}.assistant-question-card span{display:block;margin-bottom:5px;color:#80662f;font-size:.62rem;font-weight:900;letter-spacing:.11em}.assistant-question-card p{margin:0;color:#28221e;font:650 .98rem/1.5 var(--sans)}.assistant-loading{min-height:190px;display:flex;align-items:center;justify-content:center;gap:7px;flex-wrap:wrap}.assistant-loading span{width:8px;height:8px;border-radius:50%;background:#74151e;animation:assistantPulse 1.1s ease-in-out infinite}.assistant-loading span:nth-child(2){animation-delay:.15s}.assistant-loading span:nth-child(3){animation-delay:.3s}.assistant-loading p{flex-basis:100%;text-align:center;margin:5px 0 0;color:#756a63;font-size:.82rem}.assistant-loading[hidden],.assistant-answer[hidden]{display:none!important}@keyframes assistantPulse{0%,100%{transform:translateY(0);opacity:.35}50%{transform:translateY(-5px);opacity:1}}
.assistant-answer{color:#302a26}.assistant-answer-status{display:inline-flex;align-items:center;gap:7px;margin-bottom:13px;padding:5px 9px;border:1px solid rgba(182,154,97,.3);border-radius:999px;background:#fff;color:#6b5834;font-size:.63rem;font-weight:800;letter-spacing:.07em}.assistant-answer h3{margin:0 0 11px;font-family:var(--serif);color:#18253b;font-size:clamp(1.45rem,2.7vw,2rem);line-height:1.13}.assistant-answer>p,.assistant-answer-copy p{margin:0 0 15px;font-family:var(--serif);font-size:1.04rem;line-height:1.72}.assistant-answer-copy strong{color:#65131a}.assistant-article-chips{display:flex;flex-wrap:wrap;gap:8px;margin:18px 0}.assistant-article-chip{display:inline-flex;align-items:center;padding:7px 10px;border:1px solid rgba(116,21,30,.18);border-radius:9px;background:#fff;color:#68141b;font-size:.76rem;font-weight:800}.assistant-result-list{display:grid;gap:10px;margin-top:19px}.assistant-result-list h4{margin:0 0 2px;font-family:var(--serif);font-size:1.05rem;color:#253149}.assistant-result-card{display:block;padding:13px 14px;border:1px solid rgba(102,80,63,.14);border-radius:11px;background:#fff;color:inherit;text-decoration:none;transition:transform .15s ease,border-color .15s ease}.assistant-result-card:hover{transform:translateY(-1px);border-color:rgba(116,21,30,.28)}.assistant-result-card strong{display:block;margin-bottom:3px;color:#5c1118;font-size:.89rem}.assistant-result-card span{display:block;color:#736960;font-size:.75rem;line-height:1.4}.assistant-dialog-footer{padding:11px 23px 12px;border-top:1px solid rgba(90,69,52,.12);background:#f4eee4;color:#776c63;font-size:.68rem;line-height:1.42}.assistant-error{padding:16px;border:1px solid rgba(116,21,30,.17);border-radius:12px;background:#fff;color:#5a2629}.assistant-error strong{display:block;margin-bottom:6px}
body.assistant-modal-open{overflow:hidden}
@media(max-width:1000px){.constitution-assistant{grid-template-columns:auto 1fr;gap:16px 18px}.assistant-search{grid-column:1/-1}.assistant-intro p{max-width:none}.assistant-hint-row{padding:0 4px}}
@media(max-width:700px){.constitution-assistant{grid-template-columns:1fr;padding:19px 16px 17px;border-radius:14px;gap:13px;margin-bottom:16px}.assistant-mark{width:48px;height:48px;border-radius:13px}.assistant-mark svg{width:25px;height:25px}.assistant-intro{margin-top:-59px;padding-left:62px;min-height:50px;display:flex;flex-direction:column;justify-content:center}.assistant-eyebrow{font-size:.58rem}.assistant-intro h2{font-size:1.45rem;margin-bottom:0}.assistant-intro p{grid-column:1/-1;margin-top:14px;margin-left:-62px;font-size:.84rem}.assistant-input-shell{grid-template-columns:32px minmax(0,1fr) auto;min-height:54px;border-radius:12px}.assistant-input-shell input{font-size:.9rem;padding-right:6px}.assistant-input-shell button{height:43px;min-width:68px;padding:0 12px}.assistant-input-shell button span:last-child{display:none}.assistant-hint-row{font-size:.66rem}.assistant-modal{padding:10px}.assistant-dialog{width:calc(100vw - 20px);max-height:calc(100dvh - 20px);border-radius:16px}.assistant-dialog-topbar{min-height:66px;padding:12px 12px 12px 17px}.assistant-dialog-scroll{padding:18px 16px 22px}.assistant-dialog-footer{padding:10px 16px;font-size:.64rem}.assistant-answer>p,.assistant-answer-copy p{font-family:var(--sans);font-size:.93rem;line-height:1.65}.assistant-result-card{padding:11px 12px}}
@media(max-width:420px){.assistant-hint-row span{display:none}.assistant-hint-row{justify-content:flex-end}.assistant-input-shell input{font-size:.84rem}.assistant-input-shell button{min-width:58px}.assistant-close{width:39px;height:39px}.assistant-dialog-brand strong{font-size:1.02rem}}
@media(prefers-reduced-motion:reduce){.assistant-modal-backdrop,.assistant-dialog,.assistant-input-shell,.assistant-input-shell button,.assistant-result-card{transition:none!important}.assistant-loading span{animation:none!important}}


/* PDF-GROUNDED ASSISTANT NOTE — 20260817-0958 */
.assistant-source-note{
  margin-top:20px;
  padding:13px 15px;
  border-left:3px solid rgba(182,154,97,.8);
  background:rgba(182,154,97,.08);
  color:#5c5149;
  font-size:.86rem;
  line-height:1.55;
  border-radius:0 9px 9px 0;
}
.assistant-source-note strong{color:#3d3028;}


/* SLIDER TRANSPARENT EDGE ARROWS — 20260817-0958 */
.hero-nav{
  width:52px !important;
  height:72px !important;
  border:1px solid rgba(255,255,255,.18) !important;
  border-radius:14px !important;
  background:rgba(7,18,35,.20) !important;
  color:rgba(255,255,255,.92) !important;
  box-shadow:0 8px 28px rgba(0,0,0,.10) !important;
  backdrop-filter:blur(5px);
  -webkit-backdrop-filter:blur(5px);
  opacity:.72;
  z-index:4 !important;
}
.hero-nav.prev{left:14px !important;}
.hero-nav.next{right:14px !important;}
.hero-nav span{font-family:Arial,sans-serif;font-size:3rem !important;font-weight:300;line-height:.8;margin:0 0 4px !important;text-shadow:0 1px 8px rgba(0,0,0,.35);}
.hero-nav:hover,.hero-nav:focus-visible{
  opacity:1;
  background:rgba(7,18,35,.42) !important;
  border-color:rgba(240,215,161,.62) !important;
  transform:translateY(-50%) scale(1.035) !important;
  outline:none;
}
.hero-nav:active{transform:translateY(-50%) scale(.97) !important;}
@media(max-width:900px){
  .hero-nav{width:44px !important;height:60px !important;border-radius:12px !important;opacity:.66;}
  .hero-nav.prev{left:9px !important}.hero-nav.next{right:9px !important}
  .hero-nav span{font-size:2.55rem !important;}
}
@media(max-width:600px){
  .hero-nav{width:36px !important;height:52px !important;border-radius:10px !important;background:rgba(7,18,35,.18) !important;opacity:.62;}
  .hero-nav.prev{left:6px !important}.hero-nav.next{right:6px !important}
  .hero-nav span{font-size:2.2rem !important;}
}


/* NAV DOWNLOAD NOTICE + PRIMARY CONSTITUTION NOTICE + SLIDER CLICK FIX — 20260817-1028 */
.download-notice{
  display:flex;
  align-items:center;
  justify-content:center;
  width:min(calc(100% - 32px),1260px);
  min-height:74px;
  margin:14px auto 0;
  padding:16px clamp(18px,3vw,34px);
  border:1px solid rgba(182,154,97,.62);
  border-radius:16px;
  background:linear-gradient(100deg,#65151d 0%,#861d28 48%,#65151d 100%);
  color:#fff8ea;
  box-shadow:0 14px 36px rgba(67,16,22,.17);
  text-decoration:none;
  text-align:center;
  font-family:var(--sans);
  font-size:clamp(1.28rem,1.75vw,1.72rem);
  line-height:1.18;
  font-weight:900;
  letter-spacing:.035em;
  text-wrap:balance;
  transition:transform .18s ease,box-shadow .18s ease,filter .18s ease;
}
.download-notice:hover{transform:translateY(-1px);box-shadow:0 17px 42px rgba(67,16,22,.22);filter:brightness(1.04);}
.download-notice:focus-visible{outline:3px solid rgba(182,154,97,.72);outline-offset:3px;}
.constitution-notice{
  padding:clamp(20px,2.5vw,32px) clamp(20px,4vw,52px) !important;
  font-family:var(--serif) !important;
  font-size:clamp(1.28rem,1.75vw,1.72rem) !important;
  line-height:1.42 !important;
  font-weight:750 !important;
  letter-spacing:-.006em !important;
  border:1px solid rgba(182,154,97,.62) !important;
  box-shadow:0 15px 38px rgba(72,17,23,.14) !important;
}
.hero-nav,.hero-dot{pointer-events:auto !important;touch-action:manipulation !important;}
.hero-nav{z-index:5 !important;}
.hero-dots{z-index:5 !important;pointer-events:auto !important;}
@media(max-width:1100px){
  .download-notice{width:calc(100% - 20px);min-height:70px;margin-top:10px;font-size:clamp(1.18rem,2.5vw,1.5rem);}
  .constitution-notice{font-size:clamp(1.18rem,2.5vw,1.5rem) !important;line-height:1.42 !important;padding:20px 24px !important;}
}
@media(max-width:600px){
  .download-notice{width:calc(100% - 12px);min-height:66px;margin-top:8px;padding:14px 12px;border-radius:12px;font-size:clamp(1.08rem,5.2vw,1.32rem);line-height:1.2;letter-spacing:.018em;}
  .constitution-notice{font-size:clamp(1.08rem,5.05vw,1.3rem) !important;line-height:1.43 !important;padding:18px 15px !important;border-radius:11px !important;}
}
@media(max-width:380px){
  .download-notice{font-size:1.03rem;min-height:62px;}
  .constitution-notice{font-size:1.04rem !important;line-height:1.42 !important;padding:16px 13px !important;}
}
