@charset "UTF-8";

/*
 * Fordham HAAI static website
 * Shared visual system for every HTML page.
 */

:root {
  --fordham-red: #8b1538;
  --fordham-red-dark: #6b0f2a;
  --fordham-red-light: #c43e5c;
  --ink: #18181b;
  --ink-soft: #3f3f46;
  --muted: #62626c;
  --surface: #ffffff;
  --surface-soft: #f7f7f8;
  --surface-warm: #fbf8f8;
  --line: #dedee3;
  --line-soft: #ededf0;
  --footer: #17181d;
  --footer-muted: #c8c9cf;
  --success: #246b45;
  --warning: #8a5a00;
  --danger: #a51d2d;
  --focus: #1d70b8;
  --container: 1200px;
  --container-narrow: 920px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(20, 20, 25, 0.08);
  --shadow: 0 10px 28px rgba(20, 20, 25, 0.1);
  --shadow-lg: 0 24px 56px rgba(16, 16, 20, 0.18);
  --hero-image: url("assets/fordham-hero.png");
  --ease: 180ms ease;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

main {
  display: block;
  min-height: 55vh;
}

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

img {
  height: auto;
}

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

button,
[type="button"],
[type="submit"] {
  cursor: pointer;
}

a {
  color: var(--fordham-red);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--fordham-red-dark);
}

p,
ul,
ol,
blockquote {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.2;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

hr,
.divider {
  height: 1px;
  margin: 24px 0;
  border: 0;
  background: var(--line);
}

::selection {
  color: #ffffff;
  background: var(--fordham-red);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

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

.container-narrow,
.prose {
  width: min(var(--container-narrow), 100%);
  margin-inline: auto;
}

.prose {
  color: var(--ink-soft);
}

.prose h2,
.prose h3 {
  margin-top: 1.7em;
  margin-bottom: 0.55em;
}

.prose p,
.prose li {
  max-width: 78ch;
}

.prose li + li {
  margin-top: 0.45rem;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #ffffff;
  background: var(--fordham-red-dark);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform var(--ease);
}

.skip-link:focus {
  color: #ffffff;
  transform: translateY(0);
}

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

.tiny {
  font-size: 0.8rem;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 16px;
  color: var(--fordham-red);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.kicker {
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid var(--fordham-red);
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: none;
}

.lead {
  max-width: 70ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cluster,
.chip-row,
.pub-links,
.card-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.two-col,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
}

/* Header and navigation */

#header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header {
  position: relative;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(20, 20, 25, 0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 1 auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--fordham-red);
  text-decoration: none;
}

.brand:hover {
  color: var(--fordham-red-dark);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #ffffff;
  background: var(--fordham-red);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.03em;
}

.brand-text {
  overflow: hidden;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.2vw, 30px);
}

.nav-link,
.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 6px 0;
  color: #52525b;
  font-size: 0.91rem;
  font-weight: 560;
  text-decoration: none;
  transition: color var(--ease);
}

.nav-link::after,
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--fordham-red);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--ease);
}

.nav-link:hover,
.site-nav a:hover,
.nav-link.active,
.site-nav a.active,
.nav-link.is-active,
.site-nav a.is-active,
.site-nav a[aria-current="page"],
.nav-link[aria-current="page"] {
  color: var(--fordham-red);
  text-decoration: none;
}

.nav-link:hover::after,
.site-nav a:hover::after,
.nav-link.active::after,
.site-nav a.active::after,
.nav-link.is-active::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 40px;
  padding: 7px 15px;
  color: #ffffff;
  background: var(--fordham-red);
  border-radius: var(--radius-sm);
}

.site-nav a.nav-cta {
  padding: 7px 15px;
  color: #ffffff;
}

.nav-cta:hover,
.site-nav a.nav-cta:hover,
.site-nav a.nav-cta[aria-current="page"] {
  color: #ffffff;
  background: var(--fordham-red-dark);
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.nav-toggle:hover {
  background: var(--surface-soft);
}

.burger,
.burger::before,
.burger::after {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.burger {
  position: relative;
}

.burger::before,
.burger::after {
  position: absolute;
  left: 0;
  content: "";
}

.burger::before {
  top: -7px;
}

.burger::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .burger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .burger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .burger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Buttons and labels */

.btn,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  color: #ffffff;
  background: var(--fordham-red);
  border: 2px solid var(--fordham-red);
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color var(--ease), background-color var(--ease),
    border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn:hover,
.button:hover {
  color: #ffffff;
  background: var(--fordham-red-dark);
  border-color: var(--fordham-red-dark);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-ghost,
.btn-outline,
.button-outline {
  color: var(--fordham-red);
  background: transparent;
  border-color: var(--fordham-red);
}

.btn-ghost:hover,
.btn-outline:hover,
.button-outline:hover {
  color: #ffffff;
  background: var(--fordham-red);
  border-color: var(--fordham-red);
}

.btn-light,
.section-red .btn,
.cta-section .btn {
  color: var(--fordham-red);
  background: #ffffff;
  border-color: #ffffff;
}

.btn-light:hover,
.section-red .btn:hover,
.cta-section .btn:hover {
  color: var(--fordham-red-dark);
  background: #f4f4f5;
  border-color: #f4f4f5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fordham-red);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--fordham-red-dark);
  text-decoration: underline;
}

.badge,
.chip,
.tag,
.status-badge,
.news-category {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  width: fit-content;
  padding: 4px 10px;
  color: var(--ink-soft);
  background: #f1f1f3;
  border: 1px solid #e4e4e7;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 680;
  line-height: 1.25;
}

.badge-primary,
.status-active,
.status-upcoming,
.tag-status {
  color: var(--fordham-red);
  background: #f8ebef;
  border-color: #ebc8d2;
}

.status-open,
.status-complete {
  color: var(--success);
  background: #edf7f1;
  border-color: #c9e3d3;
}

/* Home hero */

.hero,
.home-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(620px, 76vh, 780px);
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
  background: #282429;
}

.hero::before,
.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(12, 9, 11, 0.82) 0%,
    rgba(12, 9, 11, 0.61) 52%,
    rgba(12, 9, 11, 0.37) 100%
  );
  content: "";
}

.hero-bg,
.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: #40383d;
  background-image: var(--hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.01);
}

.hero-content,
.home-hero-content {
  position: relative;
  z-index: 1;
  padding-top: clamp(88px, 12vh, 140px);
  padding-bottom: clamp(38px, 6vw, 64px);
}

.hero h1,
.home-hero h1 {
  max-width: 970px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 4.65rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.03;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.28);
}

.hero .lead,
.home-hero .lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.23rem);
}

.hero-meta {
  display: grid;
  grid-template-columns: minmax(0, 680px) auto;
  align-items: end;
  gap: 20px;
}

.leadership-card,
.meta-card {
  max-width: 680px;
  padding: clamp(22px, 4vw, 32px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.meta-label,
.leadership-label {
  margin-bottom: 14px;
  color: #7a7a84;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leadership-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 30px;
}

.leader + .leader,
.meta-value + .meta-value {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.leader-role {
  margin: 0 0 2px;
  color: var(--fordham-red);
  font-size: 0.82rem;
  font-weight: 730;
}

.leader-name,
.meta-value {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
}

.leader-title,
.meta-sub {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.meta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Inner-page hero */

.page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 300px;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--fordham-red), var(--fordham-red-dark));
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center 46%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.17;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(107, 15, 42, 0.91), rgba(139, 21, 56, 0.78));
  content: "";
}

.page-hero-content,
.page-hero > .container {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 64px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 3.55rem);
  letter-spacing: -0.025em;
}

.page-hero .lead,
.page-hero p {
  max-width: 800px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero .kicker,
.hero .kicker {
  color: var(--fordham-red);
}

/* Sections and shared cards */

.section {
  padding-block: clamp(64px, 8vw, 96px);
  background: var(--surface);
}

.section-alt {
  background: var(--surface-soft);
  border-block: 1px solid var(--line-soft);
}

.section-warm {
  background: var(--surface-warm);
}

.section-red,
.cta-section {
  color: #ffffff;
  background: var(--fordham-red);
}

.cta-section.red {
  background: linear-gradient(135deg, var(--fordham-red), var(--fordham-red-dark));
}

.section-red h2,
.section-red h3,
.section-red p,
.cta-section h2,
.cta-section h3,
.cta-section p {
  color: #ffffff;
}

.section-red p,
.cta-section p {
  opacity: 0.9;
}

.section-header {
  max-width: 760px;
  margin-bottom: clamp(30px, 5vw, 52px);
}

.section-header.center,
.section-header.text-center {
  margin-inline: auto;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 14px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-header.compact {
  margin-bottom: 24px;
}

.section-header.compact h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-footer {
  margin-top: 34px;
  text-align: center;
}

.card,
.list-card,
.event-card,
.pub-card,
.publication-card,
.project-card,
.person-card,
.value-card {
  min-width: 0;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.card,
.project-card,
.publication-card,
.pub-card,
.value-card {
  padding: clamp(20px, 3vw, 28px);
}

.card:hover,
.list-card:hover,
.event-card:hover,
.pub-card:hover,
.publication-card:hover,
.project-card:hover,
.person-card:hover,
.value-card:hover {
  border-color: #cccbd1;
  box-shadow: var(--shadow);
}

.card h3,
.project-card h3,
.publication-card h3,
.pub-card h3 {
  margin-bottom: 10px;
}

.card p,
.project-card p,
.publication-card p,
.pub-card p {
  color: var(--ink-soft);
}

.card p + p,
.project-card p + p {
  margin-top: 12px;
}

.card-icon,
.icon-wrap,
.value-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--fordham-red);
  background: #f8ebef;
  border-radius: 50%;
}

.card-icon svg,
.icon-wrap svg,
.value-icon svg {
  width: 27px;
  height: 27px;
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--surface-warm);
  border: 1px solid #ebd5dc;
  border-left: 4px solid var(--fordham-red);
  border-radius: var(--radius);
}

.callout-title {
  margin: 0 0 2px;
  font-size: 1.05rem;
}

/* Image-led research cards and split content */

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

.research-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 330px;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
  background: #323238;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.research-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.92), rgba(8, 8, 10, 0.08) 80%);
  content: "";
  transition: background var(--ease);
}

.research-card:hover {
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transform: translateY(-3px);
}

.research-card:hover::after {
  background: linear-gradient(to top, rgba(8, 8, 10, 0.96), rgba(8, 8, 10, 0.24) 82%);
}

.research-card img,
.research-card-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.research-card:hover img,
.research-card:hover .research-card-image {
  transform: scale(1.045);
}

.research-card-content {
  width: 100%;
  padding: 26px;
}

.research-card h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.35rem;
}

.research-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.split-image,
.impact-image {
  overflow: hidden;
  min-height: 360px;
  background: #e5e5e7;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split-image img,
.impact-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

/* News */

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

.news-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.news-card:hover {
  color: var(--ink);
  border-color: #cccbd1;
  box-shadow: var(--shadow);
  text-decoration: none;
  transform: translateY(-3px);
}

.news-image,
.news-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eeeeef;
}

.news-image img,
.news-card-image img,
img.news-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.news-card:hover .news-image img,
.news-card:hover .news-card-image img,
.news-card:hover img.news-card-image {
  transform: scale(1.035);
}

.news-body,
.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.8rem;
}

.news-date {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 620;
}

.news-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
}

.news-card p {
  margin-bottom: 18px;
  color: var(--ink-soft);
}

.news-card .text-link {
  margin-top: auto;
}

.list-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
}

.list-date {
  color: var(--fordham-red);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.list-title {
  margin: 0 0 7px;
  font-size: 1.12rem;
}

.list-title a {
  color: var(--ink);
  text-decoration: none;
}

.list-title a:hover {
  color: var(--fordham-red);
}

.list-text {
  margin: 0;
  color: var(--ink-soft);
}

/* Events */

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

.event-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
}

.event-when,
.event-date-block {
  display: flex;
  width: 82px;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-self: start;
  color: var(--fordham-red);
  background: #f8ebef;
  border: 1px solid #ebc8d2;
  border-radius: var(--radius);
  line-height: 1;
}

.event-month {
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-day {
  font-size: 1.8rem;
  font-weight: 850;
}

.event-body h3,
.event-title {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.16rem;
}

.event-body p,
.event-description {
  margin: 0;
  color: var(--ink-soft);
}

.event-body p + p {
  margin-top: 10px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 15px;
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.event-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.event-meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--fordham-red);
}

/* Projects */

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

.project-card {
  position: relative;
  overflow: hidden;
}

.project-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--fordham-red);
  content: "";
}

.project-card:hover {
  transform: translateY(-2px);
}

.project-card-header,
.project-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.project-card h3,
.project-title {
  margin: 0;
  font-size: 1.28rem;
}

.project-summary {
  color: var(--ink-soft);
}

.project-meta,
.project-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.project-meta-item,
.detail-item {
  color: var(--muted);
  font-size: 0.84rem;
}

.project-meta-item strong,
.detail-label {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 730;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.funding-list,
.partner-grid,
.sponsor-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.partner-card,
.sponsor-logo {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 18px;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
}

/* Publications and filtering */

.filters,
.filter-bar,
.publication-filters,
.tabs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 32px;
  padding: 8px;
  background: #ededf0;
  border-radius: var(--radius);
}

.filter-btn,
.year-filter,
.year-btn,
.tab-button {
  min-height: 40px;
  padding: 7px 15px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 680;
  line-height: 1.2;
  transition: color var(--ease), background-color var(--ease), box-shadow var(--ease);
}

.filter-btn:hover,
.year-filter:hover,
.year-btn:hover,
.tab-button:hover {
  color: var(--fordham-red);
  background: rgba(255, 255, 255, 0.65);
}

.filter-btn.active,
.filter-btn.is-active,
.filter-btn[aria-selected="true"],
.year-filter.active,
.year-filter[aria-pressed="true"],
.year-btn.active,
.year-btn[aria-pressed="true"],
.tab-button.active,
.tab-button[aria-selected="true"] {
  color: var(--fordham-red);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.publications-list,
.publication-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.publication-card,
.pub-card {
  display: grid;
  gap: 13px;
}

.publication-card:hover,
.pub-card:hover {
  transform: translateY(-1px);
}

.publication-card h3,
.pub-title {
  margin: 0;
  color: var(--ink);
  font-size: 1.13rem;
  font-weight: 740;
  line-height: 1.35;
}

.pub-authors,
.publication-authors {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.publication-meta,
.pub-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.pub-venue,
.publication-venue {
  font-style: italic;
}

.pub-links,
.publication-actions {
  margin-top: 2px;
}

.pub-links a,
.publication-actions a,
.bibtex-button,
.bibtex-btn {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  color: var(--fordham-red);
  background: transparent;
  border: 1px solid #dec5cd;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 680;
  text-decoration: none;
}

.pub-links a:hover,
.publication-actions a:hover,
.bibtex-button:hover,
.bibtex-btn:hover {
  color: #ffffff;
  background: var(--fordham-red);
  border-color: var(--fordham-red);
  text-decoration: none;
}

.pub-grid {
  display: grid;
  grid-template-columns: 1.25fr 2.2fr 1.1fr 74px;
  align-items: center;
  gap: 16px;
}

.pub-grid-header {
  padding: 10px 16px;
  color: var(--muted);
  border-bottom: 2px solid var(--fordham-red);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pub-row {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
}

.pub-row:hover {
  background: var(--surface-warm);
}

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

.venue-card,
.venue-item {
  display: grid;
  min-height: 70px;
  place-items: center;
  padding: 12px;
  color: var(--ink-soft);
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  font-weight: 720;
  text-align: center;
}

/* People and about */

.people-grid,
.faculty-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

.value-card {
  height: 100%;
  text-align: center;
}

.value-card .value-icon,
.value-card .icon-wrap {
  margin-inline: auto;
}

.person-card,
.profile-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px;
}

.person-card:hover,
.profile-card:hover {
  transform: translateY(-1px);
}

.person-photo,
.profile-photo,
.avatar {
  flex: 0 0 150px;
  width: 150px;
  height: 180px;
  overflow: hidden;
  background: #e9e9eb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.person-photo img,
.profile-photo img,
.avatar img,
img.person-photo,
img.profile-photo,
img.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.avatar:not(:has(img)) {
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--fordham-red);
  font-size: 1.35rem;
  font-weight: 820;
}

.person-body,
.profile-body {
  min-width: 0;
  flex: 1;
}

.person-role,
.profile-role {
  margin-bottom: 4px;
  color: var(--fordham-red);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.person-name,
.profile-name,
.person-card h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 1.35rem;
}

.person-title,
.profile-title {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.91rem;
}

.person-details,
.profile-details {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.person-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--muted);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  text-decoration: none;
}

.social-links a:hover {
  color: #ffffff;
  background: var(--fordham-red);
  border-color: var(--fordham-red);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.search-wrap,
.search-field {
  position: relative;
  max-width: 620px;
}

.search-input,
#peopleSearch {
  width: 100%;
  min-height: 48px;
  padding: 10px 16px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #cfcfd5;
  border-radius: var(--radius-sm);
}

.search-input:focus,
#peopleSearch:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(29, 112, 184, 0.16);
  outline: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 68px);
  align-items: start;
}

.location-card,
.map-placeholder {
  padding: 24px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-placeholder {
  display: grid;
  min-height: 240px;
  place-items: center;
  margin-top: 18px;
  color: var(--muted);
  text-align: center;
}

/* Forms, loading, and empty states */

.contact-form label,
.form-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.form-control {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #cfcfd5;
  border-radius: var(--radius-sm);
}

.contact-form textarea,
textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.form-control:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(29, 112, 184, 0.16);
  outline: none;
}

.form-field + .form-field,
.contact-form label + label {
  margin-top: 16px;
}

.empty-state,
.loading-state,
.error-state,
.no-results {
  width: 100%;
  padding: clamp(38px, 7vw, 72px) 24px;
  color: var(--muted);
  background: var(--surface);
  border: 1px dashed #cfcfd5;
  border-radius: var(--radius);
  text-align: center;
}

.empty-state h3,
.error-state h3,
.no-results h3 {
  margin-bottom: 8px;
  color: var(--ink);
}

.error-state {
  color: var(--danger);
  background: #fff6f6;
  border-color: #e7b8be;
}

.loading-state::before {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 12px;
  border: 3px solid #dddde1;
  border-top-color: var(--fordham-red);
  border-radius: 50%;
  content: "";
  animation: spin 800ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Footer */

.site-footer {
  color: var(--footer-muted);
  background: var(--footer);
  border-top: 4px solid var(--fordham-red);
}

.footer-inner,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(2, minmax(160px, 1fr));
  gap: clamp(30px, 6vw, 72px);
  padding-top: 52px;
  padding-bottom: 44px;
}

.footer-about {
  max-width: 620px;
}

.footer-title,
.footer-brand {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.25;
}

.footer-heading {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 740;
}

.site-footer p {
  color: var(--footer-muted);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a,
.footer-links a {
  color: var(--footer-muted);
  text-decoration: none;
}

.site-footer a:hover,
.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer .social-links a {
  color: var(--footer-muted);
  background: #24252b;
  border-color: #34353d;
}

.site-footer .social-links a:hover {
  color: #ffffff;
  background: var(--fordham-red);
  border-color: var(--fordham-red);
  text-decoration: none;
}

.footer-bottom,
.footer-legal {
  padding: 22px 0;
  color: #a7a8b0;
  border-top: 1px solid #34353d;
  font-size: 0.82rem;
  text-align: center;
}

/* Markup-specific components used by the static pages */

.centered {
  text-align: center;
}

.centered .eyebrow,
.centered .button-row {
  margin-inline: auto;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.88);
}

.hero-lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.23rem);
  line-height: 1.65;
}

.card-label {
  display: block;
  margin: 0 0 12px;
  color: var(--fordham-red);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.leadership-grid > div + div {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.leadership-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--fordham-red);
  font-size: 0.82rem;
}

.leadership-grid h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.leadership-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card-grid > .loading,
.card-grid > .empty-state {
  grid-column: 1 / -1;
}

.image-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 350px;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(24px, 4vw, 34px);
  color: #ffffff;
  background-color: #33252b;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: box-shadow var(--ease), transform var(--ease);
}

.image-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(11, 9, 10, 0.94), rgba(11, 9, 10, 0.12) 86%);
  content: "";
  transition: background var(--ease);
}

.image-card::after {
  position: absolute;
  inset: auto -20% -50% auto;
  z-index: -1;
  width: 300px;
  height: 300px;
  background: rgba(196, 62, 92, 0.22);
  border-radius: 50%;
  content: "";
  filter: blur(4px);
}

.trustworthy-card {
  background-image: linear-gradient(rgba(68, 18, 35, 0.14), rgba(68, 18, 35, 0.14)),
    url("assets/trustworthy-ai.jpg");
  background-position: center 42%;
}

.applied-card {
  background-image: linear-gradient(135deg, rgba(53, 7, 23, 0.54), rgba(27, 27, 35, 0.48)),
    url("assets/applied-intelligence.jpg");
  background-position: center 72%;
}

.image-card:hover {
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transform: translateY(-4px);
}

.image-card:hover::before {
  background: linear-gradient(to top, rgba(11, 9, 10, 0.97), rgba(11, 9, 10, 0.3) 88%);
}

.image-card .card-label {
  color: rgba(255, 255, 255, 0.75);
}

.image-card h3 {
  max-width: 24ch;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.image-card p {
  max-width: 58ch;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.card-link {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 740;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 7vw, 84px);
}

.mission-summary {
  max-width: 860px;
  margin: 64px auto 0;
}

.mission-summary h2 {
  margin-bottom: 12px;
}

.large-copy {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.impact-panel,
.quote-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 46px);
  color: #ffffff;
  background: linear-gradient(145deg, var(--fordham-red), var(--fordham-red-dark));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.impact-panel::after,
.quote-panel::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.impact-panel p,
.quote-panel p {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.impact-number {
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.check-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  content: "✓";
  font-weight: 850;
}

.quote-panel {
  display: grid;
  min-height: 280px;
  place-items: center;
}

.quote-panel p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-style: italic;
  line-height: 1.45;
}

.heading-row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.heading-row h2 {
  margin-bottom: 0;
}

.heading-row > a {
  flex: 0 0 auto;
  font-weight: 720;
  text-decoration: none;
}

.button-row {
  display: flex;
  width: fit-content;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.button-small {
  min-height: 38px;
  padding: 7px 13px;
  font-size: 0.82rem;
}

.button-disabled {
  cursor: not-allowed;
  opacity: 0.62;
  pointer-events: none;
}

.button-light {
  color: var(--fordham-red);
  background: #ffffff;
  border-color: #ffffff;
}

.button-light:hover {
  color: var(--fordham-red-dark);
  background: #f1f1f3;
  border-color: #f1f1f3;
}

.button-outline-light {
  color: #ffffff;
  background: transparent;
  border-color: #ffffff;
}

.button-outline-light:hover {
  color: var(--fordham-red);
  background: #ffffff;
  border-color: #ffffff;
}

.cta-section {
  padding-block: clamp(62px, 8vw, 92px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--fordham-red), var(--fordham-red-dark));
}

.cta-section h2 {
  margin-bottom: 14px;
  color: #ffffff;
}

.cta-section p {
  max-width: 680px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.cta-section .button:not(.button-light):not(.button-outline-light) {
  color: var(--fordham-red);
  background: #ffffff;
  border-color: #ffffff;
}

.cta-section .button:not(.button-light):not(.button-outline-light):hover {
  color: var(--fordham-red-dark);
  background: #f1f1f3;
  border-color: #f1f1f3;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 0.8rem;
}

.news-card.card {
  padding: 0;
}

.news-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-accent {
  height: 8px;
  background: linear-gradient(90deg, var(--fordham-red), var(--fordham-red-light));
}

.card-content {
  min-width: 0;
}

.news-card .card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.news-card .meta-row {
  margin-bottom: 12px;
}

.news-card .text-link {
  margin-top: auto;
}

.featured-story {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1.35fr);
  align-items: stretch;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.featured-story > div:last-child {
  padding: clamp(28px, 5vw, 52px);
}

.featured-story-mark {
  display: grid;
  min-height: 300px;
  place-items: center;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(145deg, var(--fordham-red), var(--fordham-red-dark));
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 880;
  letter-spacing: -0.06em;
}

.featured-story h3 {
  margin: 14px 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.featured-story p {
  color: var(--ink-soft);
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.past-events-support {
  padding: 12px 16px;
  background: #fbf4f6;
  border-left: 3px solid var(--fordham-red);
  border-radius: 0 10px 10px 0;
  font-size: 0.94rem !important;
  line-height: 1.55;
}

.event-date {
  display: flex;
  width: 100%;
  min-height: 88px;
  align-items: center;
  flex-direction: column;
  align-self: start;
  overflow: hidden;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #dfbcc7;
  border-radius: 14px;
  box-shadow: 0 5px 14px rgba(139, 21, 56, 0.12);
  text-align: center;
}

.event-date-month,
.event-date-year-header {
  width: 100%;
  padding: 7px 5px 6px;
  color: #ffffff;
  background: var(--fordham-red);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.event-date-year-header {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.event-date-body {
  display: flex;
  min-height: 59px;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-direction: column;
  padding: 8px 6px 9px;
}

.event-date-day {
  color: var(--fordham-red);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.event-date-month-only {
  color: var(--fordham-red-dark);
  font-size: 1.3rem;
  font-weight: 820;
  letter-spacing: 0.055em;
  line-height: 1;
}

.event-date-year {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1;
}

.event-date-time {
  width: 100%;
  padding: 0 5px 7px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 650;
  line-height: 1.2;
}

.event-date-plain {
  justify-content: center;
  padding: 12px 8px;
  color: var(--fordham-red);
  background: #f8ebef;
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.25;
}

.event-card .meta-row {
  margin-bottom: 10px;
}

.event-speaker {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.event-speaker-label {
  margin-bottom: 5px;
  color: var(--fordham-red);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.event-speaker strong {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.35;
}

.event-speaker-affiliation {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.4;
}

.event-speaker-credentials {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.event-location,
.event-capacity {
  margin-top: 10px !important;
  color: var(--muted) !important;
  font-size: 0.84rem;
}

.event-card .button-small {
  margin-top: 14px;
}

.topic-sections {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.topic-group + .topic-group {
  margin-top: 0;
}

.topic-group:first-child {
  margin-top: 0;
}

.topic-group > header {
  max-width: 760px;
  margin-bottom: 22px;
}

.topic-group > header h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.topic-group > header p {
  color: var(--muted);
}

.focus-areas {
  align-items: flex-start;
  flex-direction: column;
  margin-top: 36px;
}

.focus-areas .project-tags {
  margin-top: 0;
}

.project-card .tag {
  margin-bottom: 14px;
}

.project-card .project-meta {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.project-meta span {
  color: var(--muted);
  font-size: 0.84rem;
}

.project-meta strong {
  color: var(--ink);
}

.featured-project {
  border-top: 4px solid var(--fordham-red);
}

.publication-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
  gap: 18px;
  margin-bottom: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.publication-tools label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 720;
}

.publication-tools input,
.publication-tools select {
  width: 100%;
  min-height: 46px;
  padding: 9px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #c8c8cf;
  border-radius: var(--radius-sm);
}

.publication-tools input:focus,
.publication-tools select:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(29, 112, 184, 0.16);
  outline: none;
}

.result-count {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.publication-card.card {
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
}

.publication-year {
  display: grid;
  width: 70px;
  height: 46px;
  place-items: center;
  color: var(--fordham-red);
  background: #f8ebef;
  border: 1px solid #ebc8d2;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
}

.publication-card .meta-row {
  margin-bottom: 10px;
}

.publication-card h3 {
  margin-bottom: 9px;
}

.venue {
  color: var(--muted);
  font-style: italic;
}

.authors {
  margin-bottom: 13px;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.publication-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.publication-links a,
.publication-links button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 6px 11px;
  color: var(--fordham-red);
  background: transparent;
  border: 1px solid #dec5cd;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.publication-links a:hover,
.publication-links button:hover {
  color: #ffffff;
  background: var(--fordham-red);
  border-color: var(--fordham-red);
}

.person-card.card {
  padding: 28px;
}

.person-card > img {
  flex: 0 0 150px;
  width: 150px;
  height: 185px;
  object-fit: cover;
  object-position: center top;
  background: #e9e9eb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.person-content {
  min-width: 0;
  flex: 1;
}

.person-content > .tag {
  margin-bottom: 9px;
}

.person-content h3 {
  margin-bottom: 5px;
}

.person-details > div + div {
  margin-top: 4px;
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.expertise-list li {
  padding: 5px 9px;
  color: var(--ink-soft);
  background: #f1f1f3;
  border: 1px solid #e4e4e7;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 650;
  line-height: 1.2;
}

.person-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 6px 11px;
  color: var(--fordham-red);
  background: transparent;
  border: 1px solid #dec5cd;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.person-links a:hover {
  color: #ffffff;
  background: var(--fordham-red);
  border-color: var(--fordham-red);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(32px, 7vw, 84px);
}

.location-card.card {
  padding: clamp(24px, 4vw, 34px);
}

.loading {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  padding: 28px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.66);
  border: 1px dashed #cfcfd5;
  border-radius: var(--radius);
  text-align: center;
}

.include-error {
  margin-block: 12px;
  padding: 12px 16px;
  color: var(--danger);
  background: #fff6f6;
  border: 1px solid #e7b8be;
  border-radius: var(--radius-sm);
}

.anchor-section {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-about h2 {
  font-size: 1.35rem;
}

.footer-contact p {
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive layout */

@media (max-width: 1080px) {
  .grid-4,
  .values-grid,
  .card-grid-4,
  .funding-list,
  .partner-grid,
  .sponsor-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: -24px;
    left: -24px;
    display: none;
    max-height: calc(100vh - var(--header-height));
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 14px 24px 22px;
    overflow-y: auto;
    background: #ffffff;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(20, 20, 25, 0.12);
  }

  .site-nav.open,
  .site-nav.is-open,
  .site-nav[data-open="true"] {
    display: flex;
  }

  .nav-link,
  .site-nav a {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
  }

  .nav-link::after,
  .site-nav a::after {
    display: none;
  }

  .nav-link:hover,
  .site-nav a:hover,
  .nav-link.active,
  .site-nav a.active,
  .nav-link.is-active,
  .site-nav a.is-active,
  .site-nav a[aria-current="page"],
  .nav-link[aria-current="page"] {
    background: #f8ebef;
  }

  .nav-cta {
    color: #ffffff;
    background: var(--fordham-red);
  }

  .two-col,
  .split-layout,
  .split-feature,
  .contact-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .meta-actions {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .featured-story {
    grid-template-columns: minmax(160px, 0.5fr) minmax(0, 1.5fr);
  }

  .events-grid,
  .projects-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .pub-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pub-grid-header {
    display: none;
  }

  .pub-row {
    margin-bottom: 12px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

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

  .footer-inner,
  .footer-grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(160px, 1fr);
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .site-nav {
    right: -16px;
    left: -16px;
    padding-inline: 16px;
  }

  .brand-mark {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .brand-subtitle {
    display: none;
  }

  .hero,
  .home-hero {
    min-height: 660px;
  }

  .hero::before,
  .home-hero::before {
    background: linear-gradient(
      180deg,
      rgba(12, 9, 11, 0.45) 0%,
      rgba(12, 9, 11, 0.82) 62%,
      rgba(12, 9, 11, 0.92) 100%
    );
  }

  .hero-content,
  .home-hero-content {
    padding-top: 72px;
    padding-bottom: 30px;
  }

  .hero h1,
  .home-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  .leadership-list {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leader + .leader,
  .meta-value + .meta-value,
  .leadership-grid > div + div {
    padding-top: 16px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .page-hero {
    min-height: 250px;
  }

  .page-hero-content,
  .page-hero > .container {
    padding-block: 48px;
  }

  .grid-2,
  .grid-3,
  .card-grid-2,
  .card-grid-3,
  .card-grid-4,
  .research-grid,
  .mission-grid,
  .news-grid,
  .people-grid,
  .faculty-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .research-card {
    min-height: 290px;
  }

  .image-card {
    min-height: 300px;
  }

  .featured-story {
    grid-template-columns: 1fr;
  }

  .featured-story-mark {
    min-height: 170px;
  }

  .event-card {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 15px;
    padding: 18px;
  }

  .event-when,
  .event-date-block {
    width: 70px;
    min-height: 76px;
  }

  .list-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .person-card,
  .profile-card {
    align-items: center;
    flex-direction: column;
    padding: 22px;
    text-align: center;
  }

  .person-card > img {
    flex-basis: auto;
    width: 140px;
    height: 168px;
  }

  .person-photo,
  .profile-photo,
  .avatar {
    flex-basis: 168px;
    width: 140px;
    height: 168px;
  }

  .chip-row,
  .person-links,
  .profile-card .pub-links {
    justify-content: center;
  }

  .project-card-header,
  .project-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .project-meta,
  .project-details {
    grid-template-columns: 1fr;
  }

  .publication-tools {
    grid-template-columns: 1fr;
  }

  .publication-card.card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .funding-list,
  .partner-grid,
  .sponsor-row {
    grid-template-columns: 1fr;
  }

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

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

  .footer-inner,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    display: none;
  }

  .brand-text {
    max-width: 210px;
  }

  .hero-actions,
  .meta-actions,
  .card-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .meta-actions .btn,
  .card-actions .btn,
  .button-row .button {
    width: 100%;
  }

  .filters,
  .filter-bar,
  .publication-filters,
  .tabs-list {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-btn,
  .year-filter,
  .year-btn,
  .tab-button {
    width: 100%;
    text-align: left;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-when,
  .event-date-block,
  .event-date {
    width: 74px;
  }

  .venue-grid {
    grid-template-columns: 1fr;
  }
}

/* Accessibility preferences */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .btn,
  .button,
  .nav-cta,
  .filter-btn,
  .year-filter,
  .year-btn,
  .tab-button {
    border: 1px solid ButtonText;
  }

  .research-card::after,
  .hero::before,
  .home-hero::before,
  .page-hero::before {
    background: transparent;
  }
}

@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .hero-actions,
  .meta-actions,
  .filter-bar,
  .publication-filters,
  .cta-section,
  .section-red {
    display: none !important;
  }

  body {
    color: #000000;
    background: #ffffff;
    font-size: 11pt;
  }

  .hero,
  .home-hero,
  .page-hero {
    min-height: 0;
    color: #000000;
    background: #ffffff;
  }

  .hero::before,
  .home-hero::before,
  .hero-bg,
  .home-hero-bg,
  .page-hero::before,
  .page-hero-bg {
    display: none;
  }

  .hero h1,
  .home-hero h1,
  .page-hero h1,
  .hero .lead,
  .home-hero .lead,
  .page-hero p {
    color: #000000;
    text-shadow: none;
  }

  .card,
  .list-card,
  .event-card,
  .project-card,
  .publication-card,
  .pub-card,
  .person-card {
    break-inside: avoid;
    box-shadow: none;
  }

  a[href]::after {
    color: #333333;
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }

  a[href^="#"]::after,
  a[href^="mailto:"]::after {
    content: "";
  }
}
