/* Import SCSS variables */
:root {
  --font-main: Inter, sans-serif;
  --font-heading: Alegreya Sans, sans-serif;
  --font-accent: Inter, sans-serif;
  --font-open-sans: "Open Sans", sans-serif;
  --color-black: #000;
  --color-black-lt: #2a2a2a;
  --color-white: #ffffff;
  --color-gray: #6f6f6f;
  --color-gray-lt: #eeefff;
  --color-gray-lt-alt: #eaeaea;
  --color-gray-dk: #54585a;
  --color-red: #b4182d;
  --color-blue: #3a97b4;
  --color-blue-dk: #052d5c;
  --color-teal: #005e63;
  --color-teal-lt: #00aebb;
  --color-green: #a9ad00;
  --color-orange: #f26722;
  --color-yellow: #fdb714;
  --color-olive: #666515;
  --color-csn-blue: #004990;
  --color-csn-blue-10: color-mix(in srgb, var(--color-csn-blue) 10%, white);
  --color-csn-blue-75: color-mix(in srgb, var(--color-csn-blue) 75%, white);
  --color-csn-blue-80: color-mix(in srgb, var(--color-csn-blue) 80%, white);
  --color-csn-blue-90: color-mix(in srgb, var(--color-csn-blue) 90%, white);
  --color-csn-blue-dk: #062e57;
  --color-csn-yellow: #ffd200;
  --color-csn-yellow-60: color-mix(in srgb, var(--color-csn-yellow) 60%, white);
  --color-csn-yellow-45: color-mix(in srgb, var(--color-csn-yellow) 45%, white);
  --color-faded-sand: #f9f1e2;
  --color-midnight-purple: #004890;
  --color-rich-black: #1e1d1b;
  --color-sky-blue: #4387f8;
  --color-yellow-ochre: #db9b2e;
  --color-cactus-green: #536810;
  --color-baked-clay: #bb612d;
  --bs-body-font-size: 1.125rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.333rem;
  --bs-body-color: var(--color-black-lt);
  --bs-body-bg: var(--color-white);
  --black: 0, 0, 0;
  --black-lt: 42, 42, 42;
  --white: 255, 255, 255;
  --gray: 111, 111, 111;
  --gray-lt: 238, 239, 239;
  --gray-dk: 84, 88, 90;
  --red: 180, 24, 45;
  --blue: 58, 151, 180;
  --blue-dk: 5, 45, 92;
  --teal: 0, 94, 99;
  --teal-lt: 0, 174, 187;
  --green: 169, 173, 0;
  --orange: 242, 103, 34;
  --yellow: 253, 183, 20;
  --olive: 102, 101, 21;
  --CSN-Blue: 0, 72, 144;
  --CSN-Blue-dk: 6, 46, 87;
  --CSN-Yellow: 255, 210, 0;
  --Faded-Sand: 249, 241, 226;
  --Midnight-Purple: 54, 28, 81;
  --Rich-Black: 30, 29, 27;
  --Sky-Blue: 67, 135, 248;
  --Yellow-Ochre: 219, 155, 46;
  --Cactus-Green: 83, 104, 12;
  --Baked-Clay: 187, 97, 45;
  --transparent: rgba(0, 0, 0, 0);
  --shadow: 0 0 .625rem .125rem rgba(var(--color-black), .1);
  --heading: var(--font-heading);
  --body: var(--font-main);
  --logo: "optimabold";
  --transition-duration: .3s;
  --transition-easing: ease;
  --transition: var(--transition-duration) var(--transition-easing);
}

/* ==========================================================================
   Faculty Center Page
   Node 10249
   ========================================================================== */
.page-node-10249 .fctl-room-grid img,
.page-node-10249 .fctl-program-detail img {
  display: block;
  width: 100%;
  height: auto;
}
.page-node-10249 .fctl-programming {
  background: var(--color-gray-lt-alt);
}
.page-node-10249 .fctl-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}
.page-node-10249 .fctl-card:hover, .page-node-10249 .fctl-card:focus-within {
  box-shadow: 0 0 0 2px var(--color-csn-yellow), 0 14px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}
.page-node-10249 .fctl-card:hover .card-title a, .page-node-10249 .fctl-card:focus-within .card-title a {
  color: #000;
  text-decoration: underline;
  text-decoration-color: var(--color-csn-yellow);
}
.page-node-10249 .fctl-card::before {
  content: "";
  display: block;
  height: 1.25rem;
  background: var(--color-csn-yellow);
}
.page-node-10249 .fctl-card.fctl-card-blue::before {
  background: var(--color-csn-blue);
}
.page-node-10249 .fctl-card .card-body {
  padding: 1.75rem 1.35rem 1.4rem;
}
.page-node-10249 .fctl-card .card-title {
  margin-bottom: 1.25rem;
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
}
.page-node-10249 .fctl-card .card-title a {
  color: var(--color-csn-blue);
  text-decoration: none;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.page-node-10249 .fctl-card .card-title a:hover, .page-node-10249 .fctl-card .card-title a:focus-visible {
  color: #000;
  text-decoration: underline;
  text-decoration-color: var(--color-csn-yellow);
}
.page-node-10249 .fctl-card .card-text {
  margin-bottom: 0;
  line-height: 2;
}
.page-node-10249 .fctl-program-detail {
  border-bottom: 1px solid #9fb5cc;
}
.page-node-10249 .fctl-program-detail:last-child {
  border-bottom: 0;
}
.page-node-10249 .faculty-center-news {
  background: var(--color-csn-blue-10);
}
.page-node-10249 .faculty-center-news .news-item h4 {
  height: 100%;
  border-left: 0.375rem solid var(--color-csn-yellow);
  padding: 0.35rem 1rem;
  margin: 0;
}
.page-node-10249 .faculty-center-news .news-item h4 a {
  display: block;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: none;
}
.page-node-10249 .faculty-center-news .news-item h4 a:hover, .page-node-10249 .faculty-center-news .news-item h4 a:focus {
  color: var(--color-csn-blue);
  text-decoration: underline;
  text-decoration-color: var(--color-csn-yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
/*# sourceMappingURL=../sourcemaps/node-10249--faculty-center.css.map */
