:root{
  --navy:#0b3266;
  --navy-dark:#08264e;
  --orange:#f68b1f;
  --teal:#0aa9b3;
  --ink:#102238;
  --muted:#617085;
  --surface:#f3f6fa;
  --border:#dce3ec;
  --white:#fff;
  --shadow:0 18px 50px rgba(16,34,56,.10);
  --radius:20px;
  --container:1180px
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.65
}

a{
  color:inherit;
  text-decoration:none
}

img{
  max-width:100%;
  display:block
}

button,input,textarea,select{font:inherit}

.container{
  width:min(var(--container),calc(100% - 40px));
  margin:auto
}

.narrow{
  width:min(900px,calc(100% - 40px));
  margin:auto
}

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

.skip-link{
  position:absolute;
  left:-9999px;
  top:8px;
  background:#fff;
  padding:10px 14px;
  z-index:1000;
  border-radius:8px
}

.skip-link:focus{left:8px}

.institution-wrap{
  background:#fff;
  border-top:5px solid var(--orange);
  border-bottom:1px solid var(--border)
}

.institution-inner{padding:8px 0}

.institution-wrap img{
  width:100%;
  height:auto
}

.navbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border)
}

.nav-inner{
  width:min(var(--container),calc(100% - 40px));
  margin:auto;
  display:flex;
  align-items:center;
  min-height:68px;
  gap:26px
}

.brand{
  font-weight:900;
  letter-spacing:.03em;
  color:var(--navy);
  font-size:20px;
  white-space:nowrap
}

.nav-menu{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:3px;
  flex:1
}

.nav-menu a{
  padding:10px 10px;
  border-radius:8px;
  font-size:14px;
  font-weight:700;
  color:#34445a
}

.nav-menu a:hover,
.nav-menu a.active{
  color:var(--navy);
  background:#eef4fb
}

.nav-toggle{
  display:none;
  background:transparent;
  border:0;
  padding:8px;
  margin-left:auto
}

.nav-toggle span:not(.sr-only){
  display:block;
  width:25px;
  height:2px;
  background:var(--ink);
  margin:5px
}

.notice-strip{
  display:flex;
  background:var(--navy-dark);
  color:#fff;
  min-height:42px;
  align-items:center;
  overflow:hidden
}

.notice-label{
  background:var(--orange);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:850;
  font-size:12px;
  padding:12px 20px;
  white-space:nowrap
}

.ticker-viewport{
  overflow:hidden;
  flex:1
}

.ticker-track{
  display:flex;
  align-items:center;
  width:max-content;
  animation:ticker 36s linear infinite
}

.ticker-track:hover{animation-play-state:paused}

.ticker-item{
  padding:0 14px;
  font-size:14px
}

.ticker-item:hover{text-decoration:underline}

.ticker-dot{opacity:.5}

@keyframes ticker{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

.hero{
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,#f8fbff 0%,#fff 46%,#eff8f8 100%)
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 88% 22%,rgba(246,139,31,.2),transparent 28%),
    radial-gradient(circle at 12% 85%,rgba(10,169,179,.12),transparent 30%)
}

.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(310px,.6fr);
  gap:70px;
  align-items:center;
  padding:72px 0
}

.eyebrow,
.section-kicker{
  display:inline-block;
  color:var(--teal);
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:12px
}

/* RSSI - 2027 now matches the main conference title font */
.conference-code{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(30px,4vw,48px);
  font-weight:700;
  color:var(--navy);
  letter-spacing:0;
  line-height:1.06;
  margin-top:12px
}

.hero h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(38px,4.8vw,64px);
  line-height:1.06;
  margin:10px 0 20px;
  color:#0c2f5d;
  max-width:900px
}

.hero-theme{
  font-size:19px;
  color:#4c5e72;
  max-width:800px
}

.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:24px 0
}

.hero-meta span{
  background:white;
  border:1px solid #d9e2ec;
  padding:10px 14px;
  border-radius:999px;
  font-weight:750;
  font-size:14px
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:26px
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:10px;
  padding:12px 20px;
  font-weight:800;
  cursor:pointer;
  transition:.2s ease
}

.btn.primary{
  background:var(--orange);
  color:#fff;
  box-shadow:0 8px 20px rgba(246,139,31,.25)
}

.btn.primary:hover{
  background:#df7814;
  transform:translateY(-1px)
}

.btn.teal{
  background:var(--teal);
  color:#fff
}

.btn.light{
  background:#fff;
  color:var(--navy);
  border:1px solid #d6e0ea
}

.btn.outline{
  border:1px solid rgba(255,255,255,.55);
  color:#fff;
  background:transparent
}

.hero-panel{
  background:var(--navy);
  color:#fff;
  border:1px solid #174b86;
  box-shadow:var(--shadow);
  border-radius:var(--radius);
  padding:30px
}

.panel-kicker{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:850;
  color:#c7e3e6
}

.hero-date{
  background:var(--orange);
  border-radius:16px;
  padding:22px;
  text-align:center;
  margin:14px 0
}

.hero-date strong{
  font-size:34px;
  display:block
}

.hero-date strong sup{font-size:14px}

.hero-date span{
  font-size:20px;
  font-weight:850;
  display:block
}

.hero-location{
  font-size:22px;
  font-weight:850
}

.panel-divider{
  height:1px;
  background:rgba(255,255,255,.2);
  margin:23px 0
}

.hero-panel .text-link{color:#fff}

.text-link{
  color:var(--navy);
  font-weight:850
}

.quick-links-section{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:#fff
}

.quick-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr)
}

.quick-card{
  padding:22px;
  border-right:1px solid var(--border);
  transition:.2s ease
}

.quick-card:first-child{
  border-left:1px solid var(--border)
}

.quick-card:hover{
  background:#f3f8fd;
  transform:translateY(-2px)
}

.quick-card>span{
  display:block;
  color:var(--orange);
  font-size:12px;
  font-weight:900
}

.quick-card strong,
.quick-card small{
  display:block
}

.quick-card strong{
  margin:8px 0 3px
}

.quick-card small{
  color:var(--muted)
}

.section{
  padding:75px 0
}

.surface{
  background:var(--surface)
}

.split-layout,
.prose-grid,
.contact-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:65px;
  align-items:start
}

.section h2,
.page-hero h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(31px,4vw,47px);
  line-height:1.15;
  margin:10px 0 18px;
  color:#0c2f5d
}

.lead{
  font-size:19px;
  color:#4d6076
}

.fact-card{
  background:linear-gradient(145deg,var(--navy),var(--navy-dark));
  color:#fff;
  padding:12px;
  border-radius:var(--radius);
  box-shadow:var(--shadow)
}

.fact-card div{
  padding:20px;
  border-bottom:1px solid rgba(255,255,255,.14)
}

.fact-card div:last-child{
  border-bottom:0
}

.fact-card span,
.fact-card strong{
  display:block
}

.fact-card span{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:#b9d8dd
}

.fact-card strong{
  margin-top:4px
}

.section-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin-bottom:30px
}

.section-heading h2{
  margin-bottom:0
}

.date-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px
}

.date-card{
  background:#fff;
  padding:22px;
  border-radius:16px;
  border:1px solid var(--border);
  border-left:7px solid var(--teal)
}

.date-card>span{
  color:var(--orange);
  font-size:19px;
  font-weight:900
}

.date-card h3{
  font-size:15px;
  margin:14px 0 5px
}

.date-card p{
  margin:0;
  color:var(--muted)
}

.track-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px
}

.track-grid article{
  border:1px solid var(--border);
  border-radius:18px;
  padding:25px;
  background:#fff;
  min-height:115px
}

.track-grid b{
  display:grid;
  place-items:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:#e9f8f9;
  color:var(--teal)
}

.track-grid h3{
  margin:12px 0 0
}

.dark-section{
  background:var(--navy-dark);
  color:#fff
}

.dark-section h2{color:#fff}

.dark-section p{color:#d4dfec}

.light-kicker{color:#ffc16f}

.publication-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px
}

.publication-band>div{
  max-width:850px
}

.leadership-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px
}

.leadership-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:22px
}

.leadership-card span{
  font-size:11px;
  text-transform:uppercase;
  color:var(--teal);
  font-weight:850
}

.leadership-card h3{
  margin:8px 0 4px
}

.leadership-card p{
  margin:0;
  color:var(--muted)
}

.notice-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px
}

.notice-card{
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px;
  background:#fff;
  transition:.2s
}

.notice-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow)
}

.notice-card>span{
  color:var(--orange);
  font-size:11px;
  text-transform:uppercase;
  font-weight:850
}

.notice-card h3{
  margin:8px 0
}

.notice-card p{
  margin:0;
  color:var(--muted)
}

.contact-cta{
  background:#f0f8f9
}

.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px
}

.footer{
  background:#071f41;
  color:#d9e3ef;
  padding-top:52px
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:50px
}

.footer h3{
  font-size:14px;
  color:#fff
}

.footer a{
  display:block;
  margin:8px 0;
  color:#d9e3ef
}

.footer p{
  color:#c9d5e3
}

.footer-brand{
  font-family:Georgia,serif;
  font-size:27px;
  color:#fff;
  font-weight:bold
}

.footer-bottom{
  margin-top:36px;
  padding:18px;
  text-align:center;
  border-top:1px solid #173a64;
  font-size:13px
}

.footer-bottom a{
  display:inline;
  color:#ffbd67
}

.page-hero{
  background:linear-gradient(135deg,#eef6ff,#f1fbfb);
  padding:52px 0;
  border-bottom:1px solid var(--border)
}

.page-hero h1{
  margin-bottom:8px
}

.page-hero p{
  max-width:830px;
  color:#596d83;
  font-size:18px
}

.prose{
  max-width:900px
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px
}

.about-panel{
  border:1px solid var(--border);
  background:#fff;
  border-radius:18px;
  padding:30px;
  box-shadow:0 10px 28px rgba(16,34,56,.04)
}

.about-panel>span{
  display:inline-block;
  color:#fff;
  padding:7px 15px;
  border-radius:999px;
  font-weight:850;
  text-transform:uppercase;
  font-size:12px
}

.about-panel.orange>span{
  background:var(--orange)
}

.about-panel.teal>span{
  background:var(--teal)
}

.about-panel p{
  font-size:17px;
  margin-bottom:0
}

.info-card,
.contact-panel,
.publication-card{
  border:1px solid var(--border);
  border-radius:18px;
  padding:27px;
  background:#fff;
  box-shadow:0 10px 30px rgba(16,34,56,.05)
}

.submission-card{
  border-top:6px solid var(--orange)
}

.status-badge{
  display:inline-block;
  background:#fff4e7;
  color:#9b5206;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800
}

.topic-list{
  display:grid;
  gap:13px
}

.topic-list div{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 18px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff
}

.topic-list div span{
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--orange);
  box-shadow:0 0 0 8px #fff0de
}

.topic-list div:nth-child(even) span{
  background:var(--teal);
  box-shadow:0 0 0 8px #e8f8f9
}

.publication-card{
  display:flex;
  gap:25px;
  align-items:flex-start
}

.publication-icon{
  display:grid;
  place-items:center;
  width:66px;
  height:66px;
  border-radius:18px;
  background:var(--navy);
  color:#fff;
  font-family:Georgia,serif;
  font-size:32px;
  font-weight:900;
  flex:0 0 auto
}

.muted{
  color:var(--muted)
}

.timeline-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:10px 26px
}

.timeline-row{
  display:grid;
  grid-template-columns:190px 30px 1fr;
  align-items:center;
  min-height:70px;
  border-bottom:1px solid var(--border)
}

.timeline-row:last-child{
  border-bottom:0
}

.timeline-row time{
  font-weight:850;
  color:var(--orange)
}

.timeline-row span{
  width:13px;
  height:13px;
  border-radius:50%;
  background:var(--teal)
}

.fee-table-wrap{
  overflow:auto;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff
}

.fee-table{
  width:100%;
  border-collapse:collapse
}

.fee-table th,
.fee-table td{
  text-align:left;
  padding:17px 20px;
  border-bottom:1px solid var(--border)
}

.fee-table th{
  background:#176889;
  color:#fff
}

.fee-table tr:last-child td{
  border-bottom:0
}

.download-list{
  display:grid;
  gap:12px
}

.download-list a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 20px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff
}

.download-list strong,
.download-list small{
  display:block
}

.download-list small{
  color:var(--muted)
}

.download-list>a>span{
  color:var(--navy);
  font-weight:850
}

.committee-photo-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-bottom:24px
}

.committee-photo-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden
}

.committee-photo-card img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  background:#eaf0f5
}

.committee-photo-card div{
  padding:18px
}

.committee-photo-card h3{
  margin:0 0 5px
}

.committee-photo-card p,
.committee-photo-card small{
  margin:0;
  color:var(--muted);
  display:block
}

.committee-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px
}

.committee-list article{
  display:flex;
  gap:16px;
  align-items:center;
  padding:18px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff
}

.committee-list h3{
  font-size:16px;
  margin:0 0 3px
}

.committee-list p,
.committee-list small{
  margin:0;
  color:var(--muted);
  display:block
}

.committee-compact{
  grid-template-columns:repeat(3,1fr)
}

.committee-compact article{
  align-items:flex-start
}

.avatar-circle{
  width:48px;
  height:48px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#e8f6f7;
  color:var(--teal);
  font-weight:900;
  flex:0 0 auto
}

.contact-item{
  padding:20px 0;
  border-bottom:1px solid var(--border)
}

.contact-item span{
  display:block;
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.09em
}

.contact-panel{
  background:var(--navy);
  color:#fff
}

.contact-panel h2{
  color:#fff
}

.contact-panel p{
  color:#d7e2ee
}

.stack-form,
.admin-form{
  display:grid;
  gap:16px
}

.stack-form label,
.admin-form label{
  display:grid;
  gap:7px;
  font-weight:700;
  font-size:13px;
  color:#344054
}

.stack-form input,
.stack-form textarea,
.admin-form input,
.admin-form textarea,
.admin-form select{
  width:100%;
  border:1px solid #d1dae5;
  border-radius:10px;
  padding:11px 12px;
  background:#fff;
  color:var(--ink);
  outline:none
}

.stack-form input:focus,
.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus{
  border-color:#3b82aa;
  box-shadow:0 0 0 3px rgba(10,169,179,.10)
}

.auth-page{
  background:linear-gradient(135deg,#edf5ff,#eefafb);
  min-height:100vh
}

.auth-shell{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:30px
}

.auth-card{
  width:min(500px,100%);
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:36px;
  box-shadow:var(--shadow)
}

.auth-card h1{
  font-family:Georgia,serif;
  color:var(--navy);
  margin:10px 0
}

.auth-logo{
  width:78px;
  height:auto;
  margin-bottom:14px
}

.fineprint{
  font-size:12px;
  color:var(--muted);
  margin-top:18px
}

.alert{
  padding:12px 14px;
  border-radius:10px;
  margin-bottom:18px;
  font-weight:650;
  font-size:14px
}

.alert.success{
  background:#e9f7ee;
  color:#176b35
}

.alert.danger{
  background:#fdecec;
  color:#9f1f2e
}

.admin-body{
  background:#f4f6f9
}

.admin-layout{
  min-height:100vh;
  display:grid;
  grid-template-columns:260px 1fr
}

.admin-sidebar{
  position:sticky;
  top:0;
  height:100vh;
  background:#071f41;
  color:#d9e3ef;
  padding:24px 16px;
  display:flex;
  flex-direction:column;
  z-index:80
}

.admin-logo{
  padding:8px 10px 24px;
  display:block
}

.admin-logo span{
  display:block;
  color:#fff;
  font-family:Georgia,serif;
  font-size:24px;
  font-weight:bold
}

.admin-logo small{
  color:#9fb2c8
}

.admin-sidebar nav{
  display:grid;
  gap:4px
}

.admin-sidebar nav a,
.sidebar-foot a{
  padding:10px 12px;
  border-radius:9px;
  font-size:14px
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active{
  background:#123f72;
  color:#fff
}

.sidebar-foot{
  margin-top:auto;
  display:grid;
  gap:4px;
  border-top:1px solid #1b466f;
  padding-top:15px
}

.admin-main{
  min-width:0
}

.admin-topbar{
  height:72px;
  background:#fff;
  border-bottom:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding:0 30px;
  position:sticky;
  top:0;
  z-index:50
}

.admin-topbar div{
  text-align:right
}

.admin-topbar small{
  display:block;
  color:var(--muted)
}

.admin-menu-button{
  display:none;
  margin-right:auto;
  border:0;
  background:#eef2f6;
  border-radius:8px;
  padding:8px 12px
}

.admin-content{
  padding:32px;
  max-width:1450px
}

.admin-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  margin-bottom:24px
}

.admin-heading h1{
  font-family:Georgia,serif;
  color:var(--navy);
  font-size:38px;
  margin:5px 0
}

.admin-heading p{
  margin:0;
  color:var(--muted)
}

.metric-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-bottom:20px
}

.metric-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:22px
}

.metric-card strong{
  display:block;
  font-size:34px;
  color:var(--navy)
}

.metric-card span{
  color:var(--muted)
}

.admin-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px
}

.admin-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  box-shadow:0 8px 24px rgba(16,34,56,.035)
}

.admin-card h2{
  font-size:18px;
  margin:0 0 18px
}

.wide-card{
  max-width:960px
}

.quick-admin-links{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px
}

.quick-admin-links a{
  padding:14px;
  border:1px solid var(--border);
  border-radius:12px;
  color:var(--navy);
  font-weight:750
}

.editor-layout{
  display:grid;
  grid-template-columns:minmax(320px,.75fr) minmax(430px,1.25fr);
  gap:20px
}

.two-cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px
}

.check-row{
  display:flex;
  gap:20px
}

.check-row label,
.admin-form label.check{
  display:flex;
  align-items:center;
  gap:8px
}

.check-row input,
.admin-form label.check input{
  width:auto
}

.admin-table{
  display:grid
}

.admin-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
  border-bottom:1px solid var(--border)
}

.admin-row:last-child{
  border-bottom:0
}

.admin-row strong,
.admin-row small{
  display:block
}

.admin-row small{
  color:var(--muted);
  margin-top:2px
}

.row-actions{
  display:flex;
  align-items:center;
  gap:10px
}

.row-actions a,
.row-actions button{
  border:0;
  background:transparent;
  color:var(--navy);
  font-weight:750;
  cursor:pointer;
  padding:4px
}

.status-pill{
  font-size:11px;
  background:#edf2f6;
  border-radius:999px;
  padding:5px 8px;
  color:var(--muted)
}

.admin-member{
  display:flex;
  align-items:center;
  gap:12px
}

.admin-member img{
  width:45px;
  height:45px;
  border-radius:50%;
  object-fit:cover
}

.center{text-align:center}

@media(max-width:1050px){

  .nav-menu{
    position:absolute;
    left:20px;
    right:20px;
    top:64px;
    background:#fff;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
    border-radius:14px;
    padding:12px;
    display:none;
    flex-direction:column;
    align-items:stretch
  }

  .nav-menu.open{display:flex}

  .nav-toggle{display:block}

  .hero-grid,
  .split-layout,
  .prose-grid,
  .contact-grid{
    grid-template-columns:1fr
  }

  .hero-grid{gap:35px}

  .quick-grid{
    grid-template-columns:repeat(3,1fr)
  }

  .date-grid{
    grid-template-columns:repeat(3,1fr)
  }

  .leadership-grid,
  .committee-photo-grid{
    grid-template-columns:repeat(2,1fr)
  }

  .committee-compact{
    grid-template-columns:1fr 1fr
  }

  .admin-layout{
    grid-template-columns:1fr
  }

  .admin-sidebar{
    position:fixed;
    left:-280px;
    width:260px;
    transition:.2s
  }

  .admin-sidebar.open{left:0}

  .admin-menu-button{display:block}

  .admin-topbar{
    justify-content:space-between
  }

  .editor-layout,
  .admin-grid{
    grid-template-columns:1fr
  }

  .metric-grid{
    grid-template-columns:repeat(2,1fr)
  }
}

@media(max-width:700px){

  .container,
  .nav-inner,
  .narrow{
    width:min(100% - 26px,var(--container))
  }

  .institution-inner{padding:4px 0}

  .notice-label{display:none}

  .hero-grid{padding:50px 0}

  .hero h1{font-size:39px}

  .hero-theme{font-size:17px}

  .hero-meta{display:grid}

  .quick-grid{
    grid-template-columns:1fr 1fr
  }

  .quick-card:nth-child(5){
    grid-column:1/-1
  }

  .section{padding:52px 0}

  .section-heading,
  .cta-inner,
  .publication-band{
    align-items:flex-start;
    flex-direction:column
  }

  .date-grid,
  .track-grid,
  .leadership-grid,
  .notice-grid,
  .about-grid,
  .committee-photo-grid,
  .committee-list,
  .committee-compact,
  .footer-grid{
    grid-template-columns:1fr
  }

  .publication-card{
    flex-direction:column
  }

  .contact-grid{gap:30px}

  .timeline-row{
    grid-template-columns:130px 20px 1fr;
    font-size:14px
  }

  .download-list a{
    align-items:flex-start;
    gap:12px;
    flex-direction:column
  }

  .admin-content{
    padding:20px 14px
  }

  .metric-grid,
  .quick-admin-links,
  .two-cols{
    grid-template-columns:1fr
  }

  .admin-heading h1{
    font-size:32px
  }

  .admin-row{
    align-items:flex-start;
    flex-direction:column
  }

  .row-actions{
    width:100%;
    justify-content:flex-end
  }

  .auth-card{
    padding:25px
  }

  .committee-photo-card img{
    aspect-ratio:4/3
  }
}


/* RSSI 2027 finalized institutional header and concise homepage */

.institution-wrap{
  border-top:0!important;
  border-bottom:1px solid var(--border);
  background:#fff
}

.institution-custom{
  min-height:154px;
  display:grid;
  grid-template-columns:112px 1fr 86px;
  gap:22px;
  align-items:center;
  padding:10px 0
}

.institution-logo{
  width:108px;
  height:auto;
  justify-self:start
}

.institution-copy{
  text-align:center;
  color:#182b45;
  line-height:1.25
}

.institution-copy strong{
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(17px,2vw,25px);
  font-weight:800;
  text-transform:uppercase
}

.institution-copy span{
  display:block;
  margin-top:10px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(14px,1.5vw,19px);
  font-weight:700;
  color:#4f6278
}

.institution-copy b{
  display:block;
  margin-top:7px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(14px,1.5vw,18px);
  letter-spacing:.02em
}

.institution-portrait{
  height:120px;
  width:auto;
  object-fit:contain;
  justify-self:end
}

.nav-submit{
  background:var(--orange)!important;
  color:#fff!important;
  padding:10px 14px!important
}

.nav-submit:hover{
  background:#df7814!important;
  color:#fff!important
}

.hero-mode{
  color:#d6e5f2;
  margin:4px 0 0;
  font-weight:700
}

.quick-grid-four{
  grid-template-columns:repeat(4,1fr)
}

.quick-grid-four .quick-card:last-child{
  border-right:1px solid var(--border)
}

.home-about .lead{
  font-size:17px;
  line-height:1.8
}

.paper-submit-section{
  background:var(--navy-dark);
  color:#fff
}

.submission-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:45px
}

.submission-banner>div{
  max-width:830px
}

.submission-banner h2{
  color:#fff;
  margin-bottom:12px
}

.submission-banner p{
  color:#d4dfec;
  margin-bottom:0
}

.submit-large{
  white-space:nowrap;
  font-size:16px;
  padding:14px 24px
}

.home-contact-grid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:24px;
  align-items:stretch
}

.home-contact-card,
.map-card{
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  overflow:hidden
}

.home-contact-card{
  padding:14px 28px 28px
}

.map-card iframe{
  display:block;
  width:100%;
  height:100%;
  min-height:430px;
  border:0
}

.map-card-full iframe{
  min-height:480px
}

@media(max-width:1050px){

  .institution-custom{
    grid-template-columns:92px 1fr 70px;
    gap:14px;
    min-height:130px
  }

  .institution-logo{width:88px}

  .institution-portrait{height:100px}

  .quick-grid-four{
    grid-template-columns:repeat(2,1fr)
  }

  .home-contact-grid{
    grid-template-columns:1fr
  }

  .submission-banner{
    align-items:flex-start;
    flex-direction:column
  }

  .map-card iframe{
    min-height:360px
  }
}

@media(max-width:700px){

  .institution-custom{
    grid-template-columns:62px 1fr 48px;
    gap:8px;
    min-height:98px;
    padding:7px 0
  }

  .institution-logo{width:58px}

  .institution-portrait{height:78px}

  .institution-copy strong{
    font-size:12px
  }

  .institution-copy span{
    font-size:10px;
    margin-top:5px
  }

  .institution-copy b{
    font-size:10px;
    margin-top:4px
  }

  .quick-grid-four{
    grid-template-columns:1fr
  }

  .quick-grid-four .quick-card{
    border-left:1px solid var(--border)
  }

  .map-card iframe{
    min-height:300px
  }

  .home-contact-card{
    padding:8px 20px 22px
  }
}


/* Production header sizing fix */

.institution-wrap .institution-logo{
  width:108px !important;
  max-width:108px !important;
  height:auto !important;
  justify-self:start;
  object-fit:contain
}

.institution-wrap .institution-portrait{
  width:auto !important;
  max-width:86px !important;
  height:120px !important;
  justify-self:end;
  object-fit:contain
}

@media(max-width:1050px){

  .institution-wrap .institution-logo{
    width:88px !important;
    max-width:88px !important
  }

  .institution-wrap .institution-portrait{
    height:100px !important;
    max-width:70px !important
  }
}

@media(max-width:700px){

  .institution-wrap .institution-logo{
    width:58px !important;
    max-width:58px !important
  }

  .institution-wrap .institution-portrait{
    height:78px !important;
    max-width:48px !important
  }
}