:root {
    color-scheme: light;
    --ink: #142033;
    --muted: #607086;
    --page: #f5f8fb;
    --paper: #ffffff;
    --line: #dce5ef;
    --navy: #123f6f;
    --blue: #2563b8;
    --green: #16835f;
    --red: #bd4545;
    --orange: #c97914;
    --shadow: 0 16px 38px rgba(16, 38, 68, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--page);
    color: var(--ink);
    font-family: "Kanit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px clamp(16px, 4vw, 44px);
    border-bottom: 1px solid rgba(18, 63, 111, .12);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 230px;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    color: var(--navy);
    font-size: 17px;
    line-height: 1.25;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.main-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 7px;
    color: #35475f;
    font-size: 14px;
    padding: 8px 11px;
}

.main-nav a:hover,
.main-nav a.is-active {
    border-color: #bdd2ee;
    background: #eef6ff;
    color: var(--navy);
}

.mobile-nav-menu {
    display: none !important;
}

main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 56px;
}

.hero,
.department-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: stretch;
    margin-bottom: 24px;
}

.hero-copy,
.director-card,
.department-lead,
.office-card,
.info-panel {
    border: 1px solid rgba(18, 63, 111, .1);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 10px 26px rgba(16, 38, 68, .08);
}

.hero-copy {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(26px, 5vw, 54px);
    background:
        linear-gradient(135deg, rgba(37, 99, 184, .12), rgba(255, 255, 255, .92)),
        var(--paper);
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero h1,
.department-hero h1 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
}

.hero p,
.department-hero p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.director-card,
.department-lead {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 24px;
    position: relative;
}

.director-profile-card {
    align-items: center;
    text-align: center;
}

.director-profile-card img,
.director-photo-placeholder {
    width: 118px;
    height: 118px;
    border: 4px solid #eef6ff;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(16, 38, 68, .12);
    margin-bottom: 14px;
}

.director-profile-card img,
.executive-strip img {
    object-fit: cover;
}

.leader-photo {
    width: 112px;
    height: 112px;
    border: 4px solid #eef6ff;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(16, 38, 68, .12);
    margin-bottom: 14px;
    object-fit: cover;
}

.leader-photo-placeholder {
    display: grid;
    place-items: center;
    background: #eef6ff;
    color: var(--navy);
    font-size: 38px;
    font-weight: 700;
}

.director-photo-placeholder {
    display: grid;
    place-items: center;
    background: #eef6ff;
    color: var(--navy);
    font-size: 42px;
    font-weight: 700;
}

.director-card span,
.department-lead span,
.office-card span {
    color: var(--muted);
    font-size: 14px;
}

.director-card strong,
.department-lead strong {
    display: block;
    margin: 7px 0;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.35;
}

.director-card small,
.department-lead small {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.executive-strip {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    border: 1px solid rgba(18, 63, 111, .1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 38, 68, .07);
    margin: 0 0 24px;
    padding: 16px 18px;
}

.executive-strip img,
.executive-strip .director-photo-placeholder {
    width: 82px;
    height: 82px;
    border: 3px solid #eef6ff;
    border-radius: 50%;
    margin: 0;
    font-size: 30px;
}

.executive-strip span,
.executive-strip small {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.executive-strip strong {
    display: block;
    margin: 4px 0;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.35;
}

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

.department-card,
.office-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 22px;
    transition: transform .18s ease, box-shadow .18s ease;
}

.department-card {
    border: 1px solid rgba(16, 32, 51, .09);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 8px 20px rgba(16, 38, 68, .08);
}

.department-card::before,
.office-card::before,
.department-lead::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: currentColor;
}

.department-card:hover,
.office-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.card-number {
    color: currentColor;
    font-size: 13px;
    font-weight: 700;
}

.department-card h2,
.office-card h3 {
    margin: 12px 0 10px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.28;
}

.department-card p,
.office-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.department-card strong,
.office-card strong {
    display: block;
    margin-top: 16px;
    color: var(--ink);
    font-size: 15px;
}

.office-lead {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin-top: 16px;
}

.office-lead img,
.office-lead i {
    width: 44px;
    height: 44px;
    border-radius: 8px;
}

.office-lead img {
    object-fit: cover;
}

.office-lead i {
    display: grid;
    place-items: center;
    background: #eef6ff;
    color: var(--navy);
    font-style: normal;
    font-weight: 700;
}

.office-lead strong {
    margin-top: 0;
}

.office-staff {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

.office-staff small {
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
}

.office-staff ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.office-staff li {
    display: grid;
    gap: 2px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .62);
    padding: 8px 10px;
}

.office-staff b {
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.office-staff em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    line-height: 1.4;
}

.theme-blue {
    --theme: var(--blue);
    --theme-dark: #123f6f;
    --theme-soft: #eef6ff;
    --theme-line: #bdd2ee;
    color: var(--theme);
    background: var(--theme-soft);
}

.theme-green {
    --theme: var(--green);
    --theme-dark: #0f654a;
    --theme-soft: #f1fbf6;
    --theme-line: #bfe7d5;
    color: var(--theme);
    background: var(--theme-soft);
}

.theme-red {
    --theme: var(--red);
    --theme-dark: #963333;
    --theme-soft: #fff5f5;
    --theme-line: #efc7c7;
    color: var(--theme);
    background: var(--theme-soft);
}

.theme-orange {
    --theme: var(--orange);
    --theme-dark: #9d5a0b;
    --theme-soft: #fff8ef;
    --theme-line: #efd0a8;
    color: var(--theme);
    background: var(--theme-soft);
}

body.theme-blue,
body.theme-green,
body.theme-red,
body.theme-orange {
    background: var(--page);
    color: var(--ink);
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bdd2ee;
    border-radius: 7px;
    background: #fff;
    color: var(--navy);
    font-weight: 500;
    padding: 9px 14px;
}

.btn-primary {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 18px;
}

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

.office-card {
    min-height: 154px;
}

.office-link {
    display: block;
}

.office-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

.office-card-footer small {
    color: var(--muted);
    font-size: 13px;
}

.office-card-footer b {
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
}

.work-hero {
    grid-template-columns: minmax(0, 1fr) 300px;
}

.work-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 18px;
}

.work-staff-card {
    min-height: 0;
}

.work-staff-card h2 {
    margin: 14px 0 18px;
    color: var(--ink);
    font-size: 26px;
    line-height: 1.25;
}

.work-side-panel {
    align-self: start;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.committee-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(16, 32, 51, .1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 38, 68, .07);
    padding: 14px;
}

.committee-card img,
.committee-card .staff-avatar {
    width: 72px;
    height: 72px;
    border-radius: 8px;
}

.committee-card img {
    object-fit: cover;
}

.committee-card span,
.committee-card small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.committee-card strong {
    display: block;
    margin: 4px 0;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.35;
}

.home-info-section {
    margin-top: 26px;
}

.home-info-section .section-heading {
    background: linear-gradient(90deg, #ffffff 0%, #f4f9ff 100%);
    border: 1px solid #d7e5f6;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(16, 38, 68, .07);
    margin-bottom: 16px;
    padding: 18px 20px;
}

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

.home-info-grid-single {
    grid-template-columns: minmax(0, 1fr);
}

.home-info-grid-single .home-info-card {
    min-height: 176px;
}

.home-info-card {
    background: #fff;
    border: 1px solid var(--theme-line, rgba(18, 63, 111, .1));
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(16, 38, 68, .06);
    display: flex;
    flex-direction: column;
    min-height: 214px;
    overflow: hidden;
    padding: 18px;
    position: relative;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.home-info-card::before {
    background: linear-gradient(180deg, var(--theme, var(--blue)), var(--theme-dark, var(--navy)));
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 5px;
}

.home-info-card:hover {
    border-color: var(--theme, var(--blue));
    box-shadow: 0 16px 32px rgba(16, 38, 68, .12);
    transform: translateY(-2px);
}

.home-info-card h3 {
    color: var(--ink);
    font-size: 20px;
    line-height: 1.32;
    margin: 9px 0 14px;
}

.home-info-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 14px;
}

.home-post-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-post-meta span,
.home-post-meta b {
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 7px 9px;
}

.home-post-meta span {
    background: var(--theme-soft, #eef6ff);
    color: var(--theme-dark, var(--navy));
}

.home-post-meta b {
    background: #fff;
    border: 1px solid var(--theme-line, #d7e5f6);
    color: var(--muted);
}

.home-info-card > a {
    color: var(--theme-dark, var(--navy));
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    margin-top: auto;
    padding-top: 16px;
}

.personnel-page main {
    width: min(1240px, calc(100% - 32px));
}

.personnel-hero {
    margin-bottom: 16px;
}

.personnel-hero .hero-copy {
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(135deg, rgba(18, 63, 111, .96), rgba(37, 99, 184, .82)),
        var(--navy);
}

.personnel-hero .hero-copy::after {
    content: "";
    position: absolute;
    right: -58px;
    top: -62px;
    width: 260px;
    height: 260px;
    border: 32px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.personnel-hero .eyebrow,
.personnel-hero h1,
.personnel-hero p {
    position: relative;
    z-index: 1;
}

.personnel-hero .eyebrow {
    color: #cfe4ff;
}

.personnel-hero h1 {
    color: #fff;
}

.personnel-hero p {
    max-width: 720px;
    color: #edf6ff;
}

.personnel-hero .director-card {
    background:
        linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
    border-color: #cfe0f4;
}

.personnel-summary {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 0 24px;
}

.personnel-summary a {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(18, 63, 111, .1);
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(16, 38, 68, .06);
    display: flex;
    gap: 10px;
    justify-content: space-between;
    min-height: 54px;
    padding: 11px 13px;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.personnel-summary a:hover {
    border-color: #95bce8;
    box-shadow: 0 12px 26px rgba(16, 38, 68, .11);
    transform: translateY(-2px);
}

.personnel-summary a.is-filter-active {
    background: #eef6ff;
    border-color: #2563b8;
    box-shadow: 0 12px 26px rgba(37, 99, 184, .18);
    transform: translateY(-2px);
}

.personnel-summary a.is-filter-active span,
.personnel-summary a.is-filter-active strong {
    color: #123f6f;
}

.personnel-summary span {
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    min-width: 0;
}

.personnel-summary strong {
    background: #eef6ff;
    border-radius: 999px;
    color: var(--navy);
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    padding: 7px 10px;
}

.personnel-section {
    border-top: 1px solid rgba(18, 63, 111, .1);
    margin-bottom: 36px;
    padding-top: 26px;
    scroll-margin-top: 96px;
}

.personnel-quick-result {
    background: #fff;
    border: 1px solid #bfd7f4;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 38, 68, .11);
    margin: -10px 0 28px;
    padding: 18px;
    scroll-margin-top: 92px;
}

.personnel-quick-result[hidden],
.personnel-quick-panel[hidden] {
    display: none;
}

.personnel-quick-head {
    align-items: center;
    background: linear-gradient(90deg, #eef6ff, #ffffff);
    border-left: 4px solid #2563b8;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 16px;
    min-height: 58px;
    padding: 12px 14px;
}

.personnel-quick-head span {
    color: #5f738a;
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.personnel-quick-head h2 {
    color: #123f6f;
    font-size: 24px;
    line-height: 1.25;
    margin: 3px 0 0;
}

.personnel-quick-head strong {
    background: #fff;
    border: 1px solid #bfd7f4;
    border-radius: 999px;
    color: #123f6f;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 8px 11px;
}

.personnel-section-first {
    border-top: 0;
    padding-top: 0;
}

.personnel-department {
    margin-top: 20px;
}

.personnel-filter-status {
    align-items: center;
    background: #eef6ff;
    border: 1px solid #bfd7f4;
    border-left: 4px solid #2563b8;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 16px;
    min-height: 48px;
    padding: 10px 12px;
}

.personnel-filter-status[hidden] {
    display: none;
}

.personnel-filter-status span {
    color: #123f6f;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.personnel-filter-status button {
    appearance: none;
    background: #fff;
    border: 1px solid #bfd7f4;
    border-radius: 8px;
    color: #123f6f;
    cursor: pointer;
    flex: 0 0 auto;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 10px;
}

.personnel-filter-status button:hover {
    border-color: #2563b8;
}

.personnel-department-head {
    align-items: center;
    background: linear-gradient(90deg, rgba(238, 246, 255, .92), rgba(255, 255, 255, 0));
    border-left: 4px solid var(--blue);
    border-radius: 8px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 14px;
    min-height: 48px;
    padding: 10px 12px;
}

.personnel-department h3 {
    color: var(--navy);
    font-size: 20px;
    line-height: 1.35;
    margin: 0;
}

.personnel-department-head strong {
    background: #eef6ff;
    border: 1px solid #d7e5f6;
    border-radius: 999px;
    color: var(--navy);
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    padding: 7px 10px;
}

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

.personnel-card {
    align-items: stretch;
    background: #fff;
    border: 1px solid rgba(18, 63, 111, .09);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(16, 38, 68, .06);
    display: grid;
    gap: 13px;
    grid-template-columns: 74px minmax(0, 1fr);
    min-height: 108px;
    min-width: 0;
    overflow: hidden;
    padding: 12px;
    position: relative;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.personnel-card::before {
    background: linear-gradient(180deg, var(--blue), rgba(22, 131, 95, .88));
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity .18s ease;
    width: 4px;
}

.personnel-card:hover {
    border-color: #bdd2ee;
    box-shadow: 0 16px 32px rgba(16, 38, 68, .12);
    transform: translateY(-2px);
}

.personnel-card:hover::before {
    opacity: 1;
}

.personnel-photo-button,
.personnel-avatar {
    border-radius: 8px;
    flex: 0 0 auto;
    height: 74px;
    width: 74px;
}

.personnel-photo-button {
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: block;
    padding: 0;
    position: relative;
    transition: box-shadow .18s ease, transform .18s ease;
    z-index: 1;
}

.personnel-photo-button:focus-visible {
    outline: 3px solid rgba(37, 99, 184, .35);
    outline-offset: 3px;
}

.personnel-card img {
    border: 1px solid #d7e5f6;
    border-radius: 8px;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.personnel-avatar {
    align-items: center;
    background:
        linear-gradient(135deg, #eef6ff 0%, #dfeeff 100%);
    border: 1px solid #d7e5f6;
    color: var(--navy);
    display: flex;
    font-size: 27px;
    font-weight: 700;
    justify-content: center;
}

.personnel-card-info {
    align-self: center;
    min-width: 0;
}

.personnel-card strong,
.personnel-card span {
    display: block;
}

.personnel-card strong {
    color: var(--ink);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.personnel-card span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
    margin-top: 6px;
    overflow-wrap: anywhere;
}

.personnel-empty {
    padding: 24px;
}

.has-photo-lightbox {
    overflow: hidden;
}

.photo-lightbox[hidden] {
    display: none;
}

.photo-lightbox {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 22px;
    position: fixed;
    z-index: 100;
}

.photo-lightbox-backdrop {
    appearance: none;
    background: rgba(5, 16, 30, .62);
    border: 0;
    cursor: pointer;
    inset: 0;
    padding: 0;
    position: absolute;
}

.photo-lightbox-panel {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 10px;
    box-shadow: 0 24px 72px rgba(5, 16, 30, .34);
    margin: 0;
    max-width: min(420px, calc(100vw - 44px));
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
}

.photo-lightbox-panel img {
    background: #eef3f8;
    display: block;
    max-height: min(62vh, 560px);
    object-fit: contain;
    width: 100%;
}

.photo-lightbox-panel figcaption {
    padding: 14px 48px 16px 16px;
}

.photo-lightbox-panel figcaption strong,
.photo-lightbox-panel figcaption span {
    display: block;
}

.photo-lightbox-panel figcaption strong {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.35;
}

.photo-lightbox-panel figcaption span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
    margin-top: 4px;
}

.photo-lightbox-close {
    align-items: center;
    appearance: none;
    background: rgba(20, 32, 51, .88);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 26px;
    height: 36px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 36px;
}

.photo-lightbox-close:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .65);
    outline-offset: 2px;
}

.academic-unit-overview,
.academic-unit-sections {
    display: grid;
    gap: 14px;
}

.academic-unit-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
}

.academic-unit-card,
.academic-unit-section {
    border: 1px solid rgba(16, 32, 51, .1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 38, 68, .07);
}

.academic-unit-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    overflow: hidden;
    padding: 14px;
    position: relative;
    transition: transform .18s ease, box-shadow .18s ease;
}

.academic-unit-card.is-unit-lead::before {
    background: linear-gradient(180deg, var(--theme, var(--blue)), var(--theme-dark, var(--navy)));
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 5px;
}

.academic-unit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.academic-unit-card img,
.academic-unit-card .staff-avatar {
    width: 72px;
    height: 72px;
    border-radius: 8px;
}

.academic-unit-card img {
    object-fit: cover;
}

.academic-unit-card span,
.unit-lead-card span,
.unit-lead-card small,
.unit-deputy-card span,
.unit-deputy-card small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.academic-unit-card h2 {
    margin: 3px 0 4px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.28;
}

.academic-unit-card strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
    line-height: 1.35;
}

.academic-unit-card em {
    display: inline-flex;
    margin-top: 8px;
    color: var(--navy);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
}

.academic-unit-section {
    scroll-margin-top: 96px;
    padding: 18px;
}

.unit-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.unit-section-head h2 {
    margin: 8px 0 0;
    color: var(--ink);
    font-size: 26px;
    line-height: 1.25;
}

.personnel-section .unit-section-head {
    background:
        linear-gradient(90deg, #ffffff 0%, #f4f9ff 100%);
    border: 1px solid #d7e5f6;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(16, 38, 68, .07);
    margin-bottom: 18px;
    overflow: hidden;
    padding: 18px 20px;
    position: relative;
}

.personnel-section .unit-section-head::before {
    background: linear-gradient(180deg, var(--blue), var(--green));
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 5px;
}

.personnel-section .unit-section-head span {
    color: var(--blue);
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.personnel-section .unit-section-head h2 {
    color: var(--navy);
    font-size: 29px;
    margin: 0;
}

.personnel-section .unit-section-head span + h2 {
    margin-top: 5px;
}

.personnel-section .unit-section-head > strong {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(18, 63, 111, .16);
    color: #fff;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 9px 12px;
}

.home-page main,
.org-structure-page main,
.department-page main,
.work-page main,
.academic-unit-page main,
.committee-page main {
    width: min(1240px, calc(100% - 32px));
}

.home-page .hero-copy,
.org-structure-page .hero-copy,
.committee-page .hero-copy,
.department-page .department-hero .hero-copy,
.work-page .department-hero .hero-copy,
.academic-unit-page .department-hero .hero-copy {
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(135deg, var(--theme-dark, var(--navy)), color-mix(in srgb, var(--theme, var(--blue)) 84%, #ffffff 16%)),
        var(--theme-dark, var(--navy));
}

.home-page .hero-copy::after,
.org-structure-page .hero-copy::after,
.committee-page .hero-copy::after,
.department-page .department-hero .hero-copy::after,
.work-page .department-hero .hero-copy::after,
.academic-unit-page .department-hero .hero-copy::after {
    content: "";
    position: absolute;
    right: -58px;
    top: -62px;
    width: 260px;
    height: 260px;
    border: 32px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.home-page .hero-copy > *,
.org-structure-page .hero-copy > *,
.committee-page .hero-copy > *,
.department-page .department-hero .hero-copy > *,
.work-page .department-hero .hero-copy > *,
.academic-unit-page .department-hero .hero-copy > * {
    position: relative;
    z-index: 1;
}

.home-page .hero-copy .eyebrow,
.org-structure-page .hero-copy .eyebrow,
.committee-page .hero-copy .eyebrow,
.department-page .department-hero .hero-copy .eyebrow,
.work-page .department-hero .hero-copy .eyebrow,
.academic-unit-page .department-hero .hero-copy .eyebrow {
    color: #cfe4ff;
}

.home-page .hero-copy h1,
.org-structure-page .hero-copy h1,
.committee-page .hero-copy h1,
.department-page .department-hero .hero-copy h1,
.work-page .department-hero .hero-copy h1,
.academic-unit-page .department-hero .hero-copy h1 {
    color: #fff;
}

.home-page .hero-copy p,
.org-structure-page .hero-copy p,
.committee-page .hero-copy p,
.department-page .department-hero .hero-copy p,
.work-page .department-hero .hero-copy p,
.academic-unit-page .department-hero .hero-copy p {
    color: #edf6ff;
}

.home-page .director-card,
.department-page .department-lead,
.work-page .department-lead,
.academic-unit-page .department-lead,
.committee-page .director-card {
    background: linear-gradient(180deg, #ffffff 0%, var(--theme-soft, #f5fbff) 100%);
    border-color: var(--theme-line, #cfe0f4);
}

.department-page .executive-strip {
    border-color: #d7e5f6;
    box-shadow: 0 10px 24px rgba(16, 38, 68, .07);
}

.department-page .office-card,
.department-page .standard-card,
.work-page .standard-card,
.academic-unit-page .standard-card,
.work-page .academic-unit-card,
.home-page .department-card,
.committee-page .committee-card {
    border-color: rgba(18, 63, 111, .09);
    box-shadow: 0 8px 18px rgba(16, 38, 68, .06);
}

.department-page .office-card,
.work-page .academic-unit-card,
.home-page .department-card,
.committee-page .committee-card {
    overflow: hidden;
    position: relative;
}

.department-page .office-card::after,
.work-page .academic-unit-card::after,
.home-page .department-card::after,
.committee-page .committee-card::after {
    background: linear-gradient(180deg, var(--theme, var(--blue)), var(--theme-dark, var(--green)));
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity .18s ease;
    width: 4px;
}

.department-page .office-card:hover::after,
.work-page .academic-unit-card:hover::after,
.home-page .department-card:hover::after,
.committee-page .committee-card:hover::after {
    opacity: 1;
}

.department-page .office-card:hover,
.work-page .academic-unit-card:hover,
.home-page .department-card:hover,
.committee-page .committee-card:hover {
    border-color: var(--theme-line, #bdd2ee);
    box-shadow: 0 16px 32px rgba(16, 38, 68, .12);
    transform: translateY(-2px);
}

.department-page .info-panel,
.work-page .info-panel,
.academic-unit-page .info-panel {
    background: linear-gradient(180deg, #ffffff 0%, var(--theme-soft, #f8fbff) 100%);
    border-color: var(--theme-line, #d7e5f6);
}

.department-page .section-heading {
    background: linear-gradient(90deg, #ffffff 0%, #f4f9ff 100%);
    border: 1px solid #d7e5f6;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(16, 38, 68, .07);
    margin: 22px 0 16px;
    padding: 18px 20px;
}

.department-page .standard-label,
.work-page .standard-label,
.academic-unit-page .standard-label {
    background: var(--theme-soft, #eef6ff);
    border: 1px solid var(--theme-line, #d7e5f6);
    color: var(--theme-dark, var(--navy));
}

.department-page .department-lead span,
.work-page .department-lead span,
.academic-unit-page .department-lead span,
.department-page .office-card-footer b,
.work-page .academic-unit-card em,
.work-page .academic-unit-card strong,
.academic-unit-page .info-panel h2 {
    color: var(--theme-dark, var(--navy));
}

.department-page .department-lead strong,
.work-page .department-lead strong,
.academic-unit-page .department-lead strong,
.department-page .office-card h3,
.home-page .department-card h2 {
    color: var(--theme-dark, var(--ink));
}

.department-page .btn-primary,
.work-page .btn-primary,
.academic-unit-page .btn-primary {
    background: var(--theme-dark, var(--navy));
    border-color: var(--theme-dark, var(--navy));
}

.committee-page .committee-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.unit-lead-card,
.unit-deputy-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbff;
    margin-bottom: 12px;
    padding: 12px;
}

.unit-lead-card {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.unit-lead-card img,
.unit-lead-card .staff-avatar,
.unit-deputy-card img,
.unit-deputy-card .staff-avatar {
    width: 76px;
    height: 76px;
    border-radius: 8px;
}

.unit-lead-card img,
.unit-deputy-card img {
    object-fit: cover;
}

.unit-deputy-card {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.unit-lead-card strong,
.unit-deputy-card strong {
    display: block;
    margin: 4px 0;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.35;
}

.info-panel {
    padding: 22px;
}

.info-panel h2 {
    margin-bottom: 14px;
    color: var(--navy);
    font-size: 21px;
}

.info-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-list li {
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    padding-bottom: 10px;
}

.info-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.section-heading {
    margin-bottom: 14px;
}

.section-heading h2 {
    margin: 0;
    color: var(--navy);
    font-size: 28px;
    line-height: 1.25;
}

.standard-section {
    margin-top: 18px;
}

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

.standard-card {
    min-height: 250px;
    border: 1px solid rgba(16, 32, 51, .09);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 8px 20px rgba(16, 38, 68, .08);
    padding: 20px;
}

.standard-label {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    border-radius: 999px;
    background: #eef6ff;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
}

.standard-card h3 {
    margin: 14px 0 10px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.3;
}

.standard-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.standard-card li {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.standard-card li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--blue);
    vertical-align: 2px;
}

.document-link {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.department-info-item {
    scroll-margin-top: 108px;
}

.department-info-item:target {
    background: #fff8d9;
    border-radius: 7px;
    color: var(--ink);
    padding: 8px 10px;
}

.staff-standard-card {
    grid-column: 1 / -1;
}

.staff-disclosure {
    margin-top: 8px;
}

.staff-disclosure summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 54px;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbff;
    color: var(--ink);
    padding: 12px 14px;
    list-style: none;
}

.staff-disclosure summary::-webkit-details-marker {
    display: none;
}

.staff-disclosure summary::after {
    content: "+";
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--navy);
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

.staff-disclosure[open] summary {
    margin-bottom: 18px;
    background: #eef6ff;
}

.staff-disclosure[open] summary::after {
    content: "-";
}

.staff-disclosure summary span {
    font-size: 15px;
    font-weight: 600;
}

.staff-disclosure summary b {
    margin-left: auto;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.staff-groups {
    display: grid;
    gap: 18px;
}

.staff-group {
    display: grid;
    gap: 12px;
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.staff-group:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.staff-group h4 {
    margin: 0;
    color: var(--navy);
    font-size: 17px;
    line-height: 1.35;
}

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

.staff-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    min-height: 92px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfdff;
    overflow: hidden;
    padding: 12px;
    position: relative;
}

.staff-card.is-work-lead,
.staff-card.is-work-deputy,
.staff-card.is-work-duty {
    border-color: var(--theme-line, #d7e5f6);
    background: linear-gradient(180deg, #ffffff 0%, var(--theme-soft, #f8fbff) 100%);
}

.staff-card.is-work-lead {
    border-left: 5px solid var(--theme, var(--blue));
}

.staff-card.is-work-deputy {
    border-left: 5px solid var(--theme-line, #d7e5f6);
}

.staff-card.is-work-duty {
    border-left: 5px solid color-mix(in srgb, var(--theme, var(--blue)) 62%, #ffffff 38%);
}

.staff-card img,
.staff-avatar {
    grid-row: span 2;
    width: 56px;
    height: 56px;
    border-radius: 8px;
}

.staff-card img {
    object-fit: cover;
}

.staff-avatar {
    display: grid;
    place-items: center;
    background: #eef6ff;
    color: var(--navy);
    font-size: 22px;
    font-weight: 700;
}

.staff-card strong,
.staff-card span {
    display: block;
    min-width: 0;
}

.staff-card strong {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.35;
}

.staff-card span,
.staff-empty {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.staff-empty {
    grid-column: 1 / -1;
}

.org-page-hero {
    grid-template-columns: minmax(0, 1fr) 340px;
}

.org-page-hero-simple {
    grid-template-columns: 1fr;
}

.org-page-hero-simple .hero-copy {
    min-height: 190px;
    padding-block: clamp(24px, 4vw, 38px);
}

.org-page-hero-simple h1 {
    font-size: clamp(32px, 4vw, 46px);
}

.org-page-hero-simple p {
    max-width: 760px;
}

.org-chart {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 18px;
}

.org-top {
    position: relative;
    width: min(1180px, 100%);
    min-width: 980px;
    height: 164px;
    margin: 0 auto 22px;
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
}

.org-top::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 94px;
    width: 2px;
    height: 70px;
    background: var(--line);
    transform: translateX(-50%);
}

.org-top::after {
    content: "";
    position: absolute;
    left: calc(50% + 160px);
    top: 46px;
    width: 130px;
    border-top: 2px dashed rgba(18, 63, 111, .28);
}

.org-box,
.org-sub {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(16, 32, 51, .1);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 8px 20px rgba(16, 38, 68, .08);
}

.org-box::before,
.org-sub::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: currentColor;
}

.org-director {
    grid-column: 2;
    justify-self: center;
    width: 320px;
    min-height: 150px;
    padding: 18px 22px;
    text-align: center;
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, #155184 0%, #0f3f70 100%);
    transform: translateY(-12px);
}

.org-director::before {
    display: none;
}

.org-committee {
    grid-column: 3;
    justify-self: start;
    width: 280px;
    min-height: 88px;
    margin-left: 130px;
    margin-top: 2px;
    padding: 16px 18px 16px 22px;
    color: var(--navy);
    background: linear-gradient(180deg, #ffffff 0%, #eef6fd 100%);
    transform: translateY(-12px);
}

.org-level {
    position: relative;
    width: min(1180px, 100%);
    min-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 20px;
    align-items: start;
}

.org-level::before {
    content: "";
    position: absolute;
    top: -22px;
    left: calc(12.5% - 8px);
    right: calc(12.5% - 8px);
    height: 2px;
    background: var(--line);
}

.org-section {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.org-section::before,
.org-section::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 2px;
    background: var(--line);
    transform: translateX(-50%);
}

.org-section::before {
    top: -22px;
    height: 22px;
}

.org-section::after {
    top: 150px;
    bottom: 0;
}

.org-head {
    min-height: 150px;
    padding: 16px 18px 16px 22px;
}

.org-person-box {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 7px;
}

.org-photo {
    width: 66px;
    height: 66px;
    border: 3px solid #eef6ff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(16, 38, 68, .13);
}

.org-photo-large {
    width: 82px;
    height: 82px;
    border-color: rgba(255,255,255,.7);
}

.org-photo-placeholder {
    display: grid;
    place-items: center;
    background: #eef6ff;
    color: var(--navy);
    font-size: 24px;
    font-weight: 700;
}

.org-director .org-photo-placeholder {
    background: rgba(255,255,255,.95);
}

.org-sub {
    min-height: 74px;
    padding: 11px 14px 11px 18px;
}

.org-sub-link {
    display: block;
    text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.org-sub-link:hover,
.org-sub-link:focus-visible {
    border-color: currentColor;
    box-shadow: 0 14px 28px rgba(16, 38, 68, .14);
    transform: translateY(-2px);
}

.org-box strong,
.org-sub b {
    display: block;
    color: var(--ink);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.org-director strong {
    color: #fff;
    font-size: 18px;
}

.org-box span,
.org-sub small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.48;
}

.org-director span {
    color: #e6f3ff;
}

@media (max-width: 1020px) {
    .site-header,
    .hero,
    .department-hero,
    .content-layout,
    .work-layout {
        grid-template-columns: 1fr;
    }

    .site-header {
        display: grid;
        gap: 12px;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .department-grid,
    .home-info-grid,
    .office-grid,
    .standard-grid,
    .org-level,
    .committee-grid,
    .academic-unit-overview,
    .personnel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .personnel-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .org-chart {
        overflow-x: visible;
    }

    .org-top,
    .org-level {
        min-width: 0;
    }

    .org-top {
        height: auto;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 18px;
    }

    .org-top::before,
    .org-top::after,
    .org-level::before,
    .org-section::before,
    .org-section::after {
        display: none;
    }

    .org-director,
    .org-committee {
        grid-column: auto;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        justify-self: center;
    }
}

@media (max-width: 640px) {
    .site-header {
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
        padding: 10px 12px 12px;
    }

    main {
        width: min(100% - 24px, 1180px);
        padding-top: 18px;
    }

    .brand {
        flex: 1 1 0;
        min-width: 0;
    }

    .brand img {
        height: 44px;
        width: 44px;
    }

    .brand strong {
        font-size: 15px;
    }

    .brand small {
        font-size: 11px;
    }

    .main-nav {
        display: none;
    }

    .mobile-nav-menu {
        display: block !important;
        margin-left: auto;
        position: relative;
        z-index: 30;
    }

    .mobile-nav-menu summary {
        align-items: center;
        background: var(--navy);
        border: 1px solid rgba(18, 63, 111, .12);
        border-radius: 8px;
        box-shadow: 0 8px 18px rgba(18, 63, 111, .18);
        cursor: pointer;
        display: inline-flex;
        flex-direction: column;
        gap: 4px;
        height: 42px;
        justify-content: center;
        list-style: none;
        width: 42px;
    }

    .mobile-nav-menu summary::-webkit-details-marker {
        display: none;
    }

    .mobile-nav-menu summary span {
        background: #fff;
        border-radius: 999px;
        display: block;
        height: 2px;
        width: 20px;
    }

    .mobile-nav-menu[open] summary {
        background: var(--blue);
    }

    .mobile-nav-panel {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: 0 18px 44px rgba(16, 38, 68, .18);
        display: grid;
        gap: 6px;
        min-width: min(286px, calc(100vw - 24px));
        padding: 8px;
        position: absolute;
        right: 0;
        top: calc(100% + 10px);
    }

    .mobile-nav-panel a {
        align-items: center;
        background: #f8fbff;
        border: 1px solid transparent;
        border-color: #d7e5f6;
        border-radius: 7px;
        color: #35475f;
        display: flex;
        font-size: 14px;
        font-weight: 600;
        min-height: 40px;
        padding: 9px 12px;
        white-space: normal;
    }

    .mobile-nav-panel a:hover,
    .mobile-nav-panel a.is-active {
        background: var(--navy);
        border-color: var(--navy);
        color: #fff;
    }

    .personnel-card {
        grid-template-columns: 72px minmax(0, 1fr);
        min-height: 104px;
        padding: 14px;
    }

    .personnel-photo-button,
    .personnel-avatar {
        height: 72px;
        width: 72px;
    }

    .hero-copy {
        min-height: auto;
    }

    .department-grid,
    .home-info-grid,
    .office-grid,
    .standard-grid,
    .org-level,
    .staff-grid,
    .committee-grid,
    .academic-unit-overview,
    .personnel-grid {
        grid-template-columns: 1fr;
    }

    .personnel-summary {
        grid-template-columns: 1fr;
        margin-bottom: 18px;
    }

    .unit-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .personnel-section .unit-section-head {
        gap: 10px;
        padding: 14px;
    }

    .personnel-section .unit-section-head h2 {
        font-size: 24px;
    }

    .personnel-department-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .department-card {
        min-height: 220px;
    }

    .executive-strip {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}
