*,
*::before,
*::after { box-sizing: border-box; }

:root{
  --uac-blue:#123d8f;
  --uac-blue-dark:#0a2457;
  --uac-gold:#c7a137;
  --uac-gold-soft:#f6e8b3;
  --uac-bg:#f7f9fc;
  --uac-text:#1a2233;
  --uac-muted:#667089;
  --uac-white:#ffffff;
  --uac-success:#0f8b4c;
  --uac-danger:#b42318;
  --uac-border:#dbe2ef;
  --radius:18px;
  --shadow:0 16px 40px rgba(10,36,87,.08);
}

html { scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--uac-text);
  background:var(--uac-bg);
  line-height:1.6;
}

img{ max-width:100%; display:block; }
a{ color:var(--uac-blue); text-decoration:none; }
a:hover{ opacity:.9; }
.container{ width:min(1180px, 92%); margin:0 auto; }
.narrow{ width:min(850px, 92%); margin:0 auto; }
.site-main{ min-height:60vh; }

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(18,61,143,.08);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--uac-text);
}
.brand-badge{
  width:50px;
  height:50px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--uac-blue),#2b67d1);
  color:#fff;
  font-weight:800;
  box-shadow:var(--shadow);
}
.brand small{ display:block; color:var(--uac-muted); }

.main-nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.main-nav a{
  padding:10px 12px;
  border-radius:999px;
  color:var(--uac-text);
  font-weight:600;
}
.main-nav a.active,
.main-nav a:hover{
  background:rgba(18,61,143,.08);
  color:var(--uac-blue);
}
.nav-toggle{
  display:none;
  border:0;
  background:var(--uac-blue);
  color:#fff;
  font-size:22px;
  border-radius:12px;
  padding:10px 14px;
}

.hero{
  background:
      radial-gradient(circle at top right, rgba(199,161,55,.16), transparent 28%),
      linear-gradient(135deg, rgba(18,61,143,.97), rgba(10,36,87,.96));
  color:#fff;
  padding:72px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:30px;
  align-items:center;
}
.hero h1{
  margin:8px 0 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height:1.1;
}
.hero p{ color:rgba(255,255,255,.9); max-width:720px; }
.hero-card{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
}

.btn{
  border:0;
  cursor:pointer;
  border-radius:999px;
  padding:12px 18px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.btn-primary{
  background:linear-gradient(135deg,var(--uac-gold),#e4c15a);
  color:#27210a;
}
.btn-outline{
  background:#fff;
  border:1px solid rgba(18,61,143,.12);
  color:var(--uac-blue);
}
.btn-outline.light{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.4);
}
.btn-small{ padding:8px 12px; font-size:.9rem; }

.section{ padding:60px 0; }
.section-alt{ background:#eef3fb; }
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:24px;
}
.section-head h1,
.section-head h2{
  margin:4px 0 0;
}
.eyebrow{
  display:inline-block;
  color:var(--uac-gold);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.82rem;
}

.stats-grid,
.cards-2,
.cards-3,
.cards-4,
.dashboard-grid,
.footer-grid{
  display:grid;
  gap:22px;
}
.stats-grid{ grid-template-columns:repeat(4,1fr); }
.cards-2{ grid-template-columns:repeat(2,1fr); }
.cards-3{ grid-template-columns:repeat(3,1fr); }
.cards-4{ grid-template-columns:repeat(4,1fr); }
.dashboard-grid{ grid-template-columns:1.1fr .9fr; margin-top:22px; }
.footer-grid{ grid-template-columns:1.2fr .8fr 1fr; }

.stat-card,
.card,
.info-card,
.post-card,
.profile-card,
.event-card,
.form-card,
.article-card,
.admin-shortcut{
  background:var(--uac-white);
  border:1px solid var(--uac-border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.stat-card{
  padding:24px;
  text-align:center;
}
.stat-card strong{
  display:block;
  font-size:1.8rem;
  color:var(--uac-blue);
}
.stat-card span{ color:var(--uac-muted); }

.info-card,
.card,
.article-card.plain{ padding:24px; }

.post-card img,
.profile-card img,
.event-card img,
.article-cover{
  width:100%;
  aspect-ratio: 16/10;
  object-fit:cover;
  border-top-left-radius:var(--radius);
  border-top-right-radius:var(--radius);
}
.post-body,
.profile-body{
  padding:18px;
}
.post-body h3,
.profile-body h3{ margin:10px 0 8px; }
.post-body p,
.profile-body p{ margin:0 0 12px; color:var(--uac-muted); }
.role{ color:var(--uac-blue); font-weight:700; }

.event-card{
  display:grid;
  grid-template-columns:260px 1fr;
  overflow:hidden;
}
.event-card img{
  aspect-ratio:auto;
  height:100%;
  border-radius:0;
}
.event-card > div{ padding:22px; }

.article-layout{ max-width:940px; }
.article-card{ overflow:hidden; }
.article-body{ padding:26px; }
.article-meta{ color:var(--uac-muted); margin-top:-6px; }
.prose{ white-space:normal; }
.prose.small{ font-size:.94rem; color:var(--uac-muted); }

.form-card{
  padding:24px;
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.form-grid .full{ grid-column:1/-1; }
label{
  display:block;
  font-weight:700;
  margin-bottom:8px;
}
input,
select,
textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--uac-border);
  background:#fff;
  font:inherit;
  color:var(--uac-text);
}
input:focus,
select:focus,
textarea:focus{
  outline:none;
  border-color:rgba(18,61,143,.45);
  box-shadow:0 0 0 4px rgba(18,61,143,.09);
}

.table-wrap{
  overflow:auto;
  background:var(--uac-white);
  border:1px solid var(--uac-border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
table{
  width:100%;
  border-collapse:collapse;
  min-width:760px;
}
th,td{
  padding:14px 16px;
  border-bottom:1px solid var(--uac-border);
  text-align:left;
  vertical-align:top;
}
th{
  background:#f3f6fc;
  color:var(--uac-blue);
}
.inline-form{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(18,61,143,.08);
  color:var(--uac-blue);
  font-weight:700;
}
.profile-inline{
  display:flex;
  gap:18px;
  align-items:flex-start;
}
.profile-inline img{
  width:110px;
  height:110px;
  border-radius:18px;
  object-fit:cover;
}
.activity-item{
  border-left:4px solid var(--uac-gold);
  padding-left:14px;
  margin-bottom:18px;
}
.activity-item small{
  display:block;
  color:var(--uac-muted);
  margin:4px 0 8px;
}
.cta-band{
  background:linear-gradient(135deg,var(--uac-blue),var(--uac-blue-dark));
  color:#fff;
}
.cta-band-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}
.check-list{
  padding-left:18px;
  margin:0;
}
.check-list li{ margin-bottom:10px; }

.alert{
  margin-top:18px;
  padding:14px 16px;
  border-radius:14px;
  font-weight:700;
}
.alert-success{
  background:rgba(15,139,76,.12);
  color:var(--uac-success);
  border:1px solid rgba(15,139,76,.24);
}
.alert-danger{
  background:rgba(180,35,24,.12);
  color:var(--uac-danger);
  border:1px solid rgba(180,35,24,.2);
}

.admin-shortcut{
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:110px;
  text-align:center;
  font-weight:800;
  color:var(--uac-blue);
}
.mt-24{ margin-top:24px; }

.site-footer{
  background:#091a3b;
  color:#fff;
  margin-top:20px;
}
.site-footer a{ color:#fff; }
.site-footer ul{ margin:0; padding-left:18px; }
.site-footer h3,
.site-footer h4{ margin-top:0; }
.site-footer .container{ padding:40px 0 30px; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  text-align:center;
  padding:16px;
  color:rgba(255,255,255,.75);
}

@media (max-width: 1024px){
  .stats-grid{ grid-template-columns:repeat(2,1fr); }
  .cards-3{ grid-template-columns:repeat(2,1fr); }
  .cards-4{ grid-template-columns:repeat(2,1fr); }
  .dashboard-grid,
  .hero-grid,
  .footer-grid,
  .event-card{ grid-template-columns:1fr; }
  .event-card img{ height:260px; }
}

@media (max-width: 760px){
  .nav-toggle{ display:block; }
  .main-nav{
    display:none;
    position:absolute;
    left:4%;
    right:4%;
    top:78px;
    background:#fff;
    border:1px solid var(--uac-border);
    border-radius:18px;
    box-shadow:var(--shadow);
    padding:16px;
    flex-direction:column;
    align-items:stretch;
  }
  .main-nav.open{ display:flex; }
  .form-grid,
  .cards-2,
  .cards-3,
  .cards-4,
  .stats-grid{ grid-template-columns:1fr; }
  .section-head,
  .cta-band-wrap{
    flex-direction:column;
    align-items:flex-start;
  }
}


.leadership-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.7fr) minmax(280px, .7fr);
  gap:24px;
  align-items:start;
}
.leaders-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.leader-compact-card,
.sidebar-profile-card,
.sidebar-highlight,
.sidebar-placeholder{
  overflow:hidden;
}
.leader-sidebar{
  display:grid;
  gap:18px;
  position:sticky;
  top:96px;
}
.sidebar-highlight{
  background:linear-gradient(135deg, rgba(18,61,143,.98), rgba(10,36,87,.98));
  color:#fff;
  border-color:rgba(18,61,143,.15);
}
.sidebar-highlight .eyebrow{
  color:var(--uac-gold-soft);
}
.sidebar-highlight h3{
  margin:8px 0 10px;
}
.sidebar-highlight p{
  margin:0;
  color:rgba(255,255,255,.88);
}
.sidebar-profile-card img{
  aspect-ratio:1/1;
}
.sidebar-placeholder h3{
  margin:12px 0 8px;
}

@media (max-width: 1024px){
  .leadership-layout,
  .leaders-grid{
    grid-template-columns:1fr;
  }
  .leader-sidebar{
    position:static;
  }
}
