@font-face {
  font-family: "Alegreya";
  font-weight: 100 900;
  font-style: normal;
  src: url("../fonts/Alegreya-VariableFont_wght.woff2") format("woff2-variations");
  font-display: auto;
}
@font-face {
  font-family: "Alegreya";
  font-weight: 100 900;
  font-style: italic;
  src: url("../fonts/Alegreya-Italic-VariableFont_wght.woff2") format("woff2-variations");
  font-display: auto;
}
@font-face {
  font-family: "Inter";
  font-weight: 100 900;
  font-style: normal;
  src: url("../fonts/Inter-VariableFont_opsz_wght.woff2") format("woff2-variations");
  font-display: auto;
}
@font-face {
  font-family: "Inter";
  font-weight: 100 900;
  font-style: italic;
  src: url("../fonts/Inter-Italic-VariableFont_opsz_wght.woff2") format("woff2-variations");
  font-display: auto;
}
html {
  box-sizing: border-box;
}

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

html {
  height: 100%;
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

a,
area,
button,
[role=button],
input,
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

/* Remove default padding */
ul,
ol {
  margin-block: 0;
  padding-inline: 0;
  padding: 0;
  margin: 0;
}

header,
footer,
section,
article {
  container-type: inline-size;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

p,
li,
figcaption {
  text-wrap: pretty;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Make images easier to work with, low-res background if available as well */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  shape-margin: 0.75rem;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --primary-serif: "Alegreya", Georgia, serif;
  --primary-sans: "Inter", system-ui, sans-serif;
  --content-size: clamp(1rem, 2vw, 1.25rem);
  --text-color: #000000;
  --nav-color: var(--site-highlight);
  --link: var(--site-highlight);
  --clicky-size: 1.125rem;
  --clicky-sub-size: 1rem;
  --clicky-font: var(--primary-sans);
  --clicky-weight: 500;
  --clicky-sub-weight: 400;
  --clicky-color: var(--site-highlight);
  --clicky-sub-color: var(--site-highlight);
  --top-bar-height: 80px;
  --site-highlight: #7F56D9;
  --site-page-bg: #EBE8E8;
  --container-shadow: -2px 2px 10px 0px rgba(0, 0, 0, 0.25);
  --column-padding: 1.625rem;
  --splash-padding: 50vh;
  --gutter: 1rem;
  --para-max: 42.5rem;
  --content-max: 80rem;
  --breakout: 60rem;
  --main-width: 100%;
  --table-width: 55rem;
  --listing-width: 60rem;
  --search-width: 60rem;
  --text-width: 40rem;
}

:is(b, .bold) {
  font-weight: 700;
}

.content-breaktout {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
}

.content {
  width: 100%;
  max-width: var(--para-max);
  margin-inline: auto;
}

.center {
  text-align: center;
}

.content h1, .content-breakout h1 {
  margin-block-start: 3rem;
  font-family: var(--primary-serif);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--text-color);
  line-height: 1.2;
  text-align: center;
}
.content h1 + :is(p, ol, ul, figure), .content-breakout h1 + :is(p, ol, ul, figure) {
  margin-block-start: 3rem;
}
.content h2, .content-breakout h2 {
  font-family: var(--primary-serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-color);
  margin-block-start: 1.5rem;
}
.content h2 + :is(figure, p, ul, ol, img, table), .content-breakout h2 + :is(figure, p, ul, ol, img, table) {
  margin-block-start: 0.75rem;
}
.content h3, .content-breakout h3 {
  font-family: var(--primary-serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--text-color);
  margin-block-start: 1.5rem;
}
.content h3 + :is(figure, p, ul, ol, img, table), .content-breakout h3 + :is(figure, p, ul, ol, img, table) {
  margin-block-start: 0.75rem;
}
.content h4, .content-breakout h4 {
  font-family: var(--primary-serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--text-color);
  margin-block-start: 1.5rem;
}
.content h4 + :is(figure, p, ul, ol, img, table), .content-breakout h4 + :is(figure, p, ul, ol, img, table) {
  margin-block-start: 0.75rem;
}
.content p, .content-breakout p {
  margin-block-start: 1.5rem;
  font-family: var(--primary-serif);
  font-weight: 400;
  font-size: var(--content-size);
  color: var(--text-color);
}
@media only screen and (min-width: 1024px) {
  .content p, .content-breakout p {
    font-size: 1.25rem;
  }
}
.content ul, .content-breakout ul {
  padding-inline-start: 2rem;
  margin-block-start: 1.5rem;
  font-family: var(--primary-serif);
  font-weight: 400;
  font-size: var(--content-size);
  color: var(--text-color);
}
.content ul.bullet, .content-breakout ul.bullet {
  list-style-type: disc;
}
.content ul.lower-alpha, .content-breakout ul.lower-alpha {
  list-style-type: lower-alpha; /* a., b., c. */
}
.content ul li, .content-breakout ul li {
  margin-block-start: 0.5rem;
}
.content ul li::marker, .content-breakout ul li::marker {
  color: var(--site-highlight);
}
.content ul.bibliography, .content-breakout ul.bibliography {
  list-style-type: none;
}
.content ul.bibliography li, .content-breakout ul.bibliography li {
  font-family: var(--primary-serif);
  text-indent: -1.5em;
}
.content ul.bibliography li a, .content-breakout ul.bibliography li a {
  overflow-wrap: anywhere;
}
.content ol, .content-breakout ol {
  list-style-type: 1;
  padding-inline-start: 2rem;
  margin-block-start: 1.5rem;
  font-family: var(--primary-serif);
  font-weight: 400;
  font-size: var(--content-size);
  color: var(--text-color);
}
.content ol li, .content-breakout ol li {
  margin-block-start: 0.5rem;
}
.content ol li::marker, .content-breakout ol li::marker {
  color: var(--site-highlight);
}
.content :is(ul, ol) :is(ul, ol), .content-breakout :is(ul, ol) :is(ul, ol) {
  margin-block-start: 0;
}
.content :is(a, a:visted), .content-breakout :is(a, a:visted) {
  font-family: var(--primary-serif);
  font-weight: 400;
  font-size: var(--content-size);
  color: var(--link);
}
.content :is(a, a:visted):is(:hover, :focus-visible), .content-breakout :is(a, a:visted):is(:hover, :focus-visible) {
  text-decoration: none;
}
.content figure, .content-breakout figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-block-start: 1.5rem;
  width: 100%;
  max-width: 100%;
  padding: 1rem;
}
.content figure figcaption, .content-breakout figure figcaption {
  font-family: var(--primary-serif);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-color);
  text-align: center;
}

#main h2,
#main h1 {
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  font-family: var(--primary-serif);
  color: var(--primary-text-color);
}

#main > div > h3 {
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  font-family: var(--primary-serif);
  color: var(--primary-text-color);
  line-height: 1.3;
}
#main > div > h3 + p {
  margin-block-start: 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: #525252;
  text-align: center;
}
#main ul[data-el=stems] {
  margin-block-start: 0;
  padding-inline-start: 0;
}

#main ul[data-el=stems] li:has(h3.caption) {
  list-style-type: none;
}
#main ul[data-el=stems] li :is(h3, h3.caption) {
  text-align: left;
  margin-inline: initial;
}

#main h3 + table,
#main h3.caption + div.hyphTable > table:first-of-type {
  margin-block-start: 0;
}

#main table {
  margin-block-start: 0;
  padding: 1rem;
  background-image: url(../../images/body-bg.png);
  background-repeat: repeat;
  box-shadow: 0px 1px 3px 0px rgba(10, 13, 18, 0.1), 0px 1px 2px -1px rgba(10, 13, 18, 0.1);
  border-radius: 8px;
  font-family: var(--primary-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary-text-color);
  border-collapse: collapse;
}
#main table td {
  padding-block: 0.75rem;
  padding-inline: 0.75rem;
  border: 1px solid #d8d8d8;
}
#main table td div[data-el=note] {
  margin-inline: 0;
}

#main table.entryTable {
  max-width: var(--table-width);
  margin-inline: auto;
}

#main table thead td h3 {
  margin-block-start: 0;
}

#main table thead td h3 ~ br {
  display: none;
}

#main table thead td h3 ~ span {
  margin-top: 0.5rem;
}

div[data-el=source] {
  font-family: var(--primary-serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary-text-color);
}
div[data-el=source] div[data-el=cit] {
  margin-block-start: 0.5rem;
  font-weight: 400;
  font-size: 1rem;
}

#main h3 {
  width: 100%;
  max-width: var(--text-width);
  margin-inline: auto;
  margin-block-start: 1.5rem;
  font-family: var(--primary-serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary-text-color);
  text-align: center;
}

#main h3 + * {
  margin-block-start: 0.5rem;
}

#main h3.caption {
  font-size: 1.25rem;
  font-weight: 600;
}

#main h3[data-el=headword] {
  display: inline;
}

#main span.warning {
  margin-top: 0.5rem;
  display: block;
}

#main table ul {
  margin-inline: 0;
  margin-block-start: 0;
  padding-inline-start: 0;
  list-style-type: none;
}

#main h2 + *,
#main h1 + * {
  margin-top: 1.5rem;
}

div[data-el=listBibl] {
  margin-inline: auto;
  margin-block-start: 1.5rem;
  width: 100%;
  max-width: var(--text-width);
}

div[data-el=bibl] {
  margin-inline-start: 1.5rem;
  margin-block-start: 0.5rem;
  display: list-item;
  list-style-type: none;
  text-indent: -1.5rem;
  font-size: 1rem;
  font-family: var(--primary-serif);
  color: var(--primary-text-color);
}
div[data-el=bibl] span.mjTitle {
  font-style: italic;
}

#main ul.glossary {
  list-style: none;
}
#main ul.glossary h3 {
  text-align: left;
}
#main ul.glossary p[data-el=def] {
  margin-block-start: 0.25rem;
  font-style: italic;
}

div[data-el=note] {
  width: 100%;
  max-width: var(--text-width);
  margin-inline: auto;
  margin-block-start: 0;
  font-family: var(--primary-serif);
}
div[data-el=note] .noteCaption {
  font-family: var(--primary-serif);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
}

p[data-el=def] + div[data-el=note] {
  margin-block-start: 1.5rem;
}

#main :where(p) {
  font-family: var(--primary-serif);
  font-size: 1rem;
  color: var(--primary-text-color);
  margin-top: 0.5rem;
  margin-inline: auto;
  width: 100%;
  max-width: var(--text-width);
}

#main :where(ul, p) {
  width: 100%;
  max-width: var(--text-width);
  margin-block-start: 1rem;
  margin-inline: auto;
  font-size: 1rem;
  font-family: var(--primary-serif);
  color: var(--primary-text-color);
}

#main :where(ul) {
  padding-inline-start: 1.5rem;
}

.interlin {
  font-variant: small-caps;
}

p[data-el=def] + div#hyph_ {
  margin-block-start: 3rem;
}

#main h2 + div[data-el=eg] h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
#main h2 + div[data-el=eg] p {
  font-size: 1rem;
}

/* Keyframes */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes camusFade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  } /* fade in */
  15% {
    opacity: 1;
  } /* hold */
  20% {
    opacity: 0;
  } /* fade out */
  100% {
    opacity: 0;
  }
}
/**
 * Clicky Menus v1.5.0
 */
/**
 * Initial state, hidden off screen
 */
.clicky-menu > li > ul {
  position: static;
  top: 100%;
  left: 0;
  display: none;
}
@media only screen and (min-width: 1024px) {
  .clicky-menu > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    /*[1]*/
  }
}

.clicky-menu > li > ul > li > ul {
  margin-inline-start: 0rem;
  margin-block-end: 0.5rem;
  padding-inline: 0.5rem;
  padding-block: 0.5rem;
  background-color: #ececec;
  border-radius: 5px;
}

.clicky-menu > li > ul > li > ul > li:not(.clicky-sub-header) {
  margin-inline-start: 0.5rem;
}

.clicky-sub-header {
  font-family: var(--clicky-font);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-color);
}

/* Contain position of submenu to parent list item. This is probably the 80% of the 80/20 use case */
.clicky-menu > li {
  position: relative;
}

/**
 * No JS fallback
 *
 * Triggers menus on hover rather than click. Supports keyboard navigation in modern browsers.
 */
.clicky-menu.no-js li:hover > ul {
  display: block;
}

.clicky-menu.no-js li:focus-within > ul {
  /*[2]*/
  display: block;
}

/**
 * Open/Close Menu Behavior with JS
 */
.clicky-menu ul[aria-hidden=false] {
  display: block;
}

/* Prevent offscreen-submenus */
.clicky-menu .sub-menu--right {
  left: auto !important;
  right: 0 !important;
}

/**
 * Footnotes
 *
 * [1] Using visibility instead of display allows for easier transitions and animation of submenus
 * [2] Must be a separate ruleset so that hover works in non-modern browsers
 */
.hero-container {
  --hero-height: 620px;
  padding-inline: 1rem;
  background: url(../images/hero-bg-purple.webp) 25px 25px/250px 250px repeat;
  border-block-end: 3px solid var(--site-highlight);
  height: var(--hero-height);
  /* &:has(#slide-0.glide__slide--active) {
  background: url(../images/camas-bg.webp) right top / 665px auto no-repeat,
  url(../images/hero-bg-purple.webp) 25px 25px / 25px 25px repeat;
  } */
}
@media only screen and (min-width: 1024px) {
  .hero-container {
    padding-inline: 2rem;
  }
}

.glide {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  height: var(--hero-height);
}

.glide__track,
.glide__slides,
.glide__slide {
  height: var(--hero-height);
}

#slide-0 {
  background: url(../images/camas-bg-small.webp) center center/cover no-repeat;
}
@media only screen and (min-width: 1024px) {
  #slide-0 {
    background: url(../images/camas-bg.webp) center right/665px auto no-repeat;
  }
}
#slide-0 .hero-flex-container {
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: visible;
}
#slide-0 .hero-flex-container .hero-copy-container {
  margin-inline: auto;
}
@media only screen and (min-width: 1024px) {
  #slide-0 .hero-flex-container .hero-copy-container {
    margin-inline: initial;
  }
}
#slide-0 .hero-flex-container .camas-bg {
  position: absolute;
  width: 665px;
  height: auto;
  top: 0;
  right: 0;
}
#slide-0 .hero-flex-container .camas-collection {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #slide-0 .hero-flex-container .camas-collection {
    display: block;
    margin-block-start: 4rem;
    margin-inline-start: 2rem;
    align-self: flex-start;
    z-index: 2;
  }
}
#slide-0 .hero-flex-container .camas-logo {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #slide-0 .hero-flex-container .camas-logo {
    margin-inline-start: 0;
    margin-inline-start: 2rem;
    width: clamp(160px, 35vw, 400px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
#slide-0 .hero-flex-container .camas-logo img {
  z-index: 2;
  filter: drop-shadow(0 4px 5px rgba(10, 13, 18, 0.1)) drop-shadow(0 2px 2px rgba(10, 13, 18, 0.06));
  max-width: 100%;
  height: auto;
  display: block;
}
#slide-0 .hero-title {
  margin-block-start: 3rem;
  display: grid;
  grid-template-columns: max-content;
  color: #ffffff;
  text-shadow: 0 1.1px 3.3px rgba(10, 13, 18, 0.1), 0 1.1px 2.2px rgba(10, 13, 18, 0.1);
  font-family: var(--primary-serif);
  font-weight: 600;
  line-height: 1;
  gap: 0.25rem;
}
#slide-0 .hero-title .mobile-slide-logo {
  grid-row: 1/4;
}
#slide-0 .hero-title .mobile-slide-logo img {
  width: 75px;
  height: auto;
}
#slide-0 .hero-title .line-1 {
  font-size: clamp(2rem, 8vw, 3rem);
}
#slide-0 .hero-title .line-2 {
  margin-block-start: 0.25rem;
  margin-inline-start: auto;
  font-size: clamp(1.8rem, 6vw, 3.5625rem);
}
#slide-0 .hero-title .line-3 {
  margin-block-start: 0.25rem;
  margin-inline-start: auto;
  font-size: clamp(1rem, 8vw, 1.25rem);
}
#slide-0 .hero-teaser {
  margin-block-start: 2rem;
  width: 100%;
  max-width: 36.875rem;
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(0, 92, 103, 0.25);
  text-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
  font-family: var(--primary-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
}
#slide-0 .hero-teaser a {
  color: #fff;
}

.hero-indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 18px;
}

#slide-1, #slide-2 {
  background: url(../images/camas-bg-small.webp) center center/cover no-repeat;
}
@media only screen and (min-width: 1024px) {
  #slide-1, #slide-2 {
    background: url(../images/camas-bg.webp) center right/665px auto no-repeat;
  }
}
#slide-1 .hero-title, #slide-2 .hero-title {
  margin-block-start: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  font-family: var(--primary-serif);
  color: #fff;
  text-shadow: 0 1.1px 3.3px rgba(10, 13, 18, 0.1), 0 1.1px 2.2px rgba(10, 13, 18, 0.1);
  line-height: 1.2;
}
@media only screen and (min-width: 1024px) {
  #slide-1 .hero-title, #slide-2 .hero-title {
    margin-block-start: 3rem;
  }
}
#slide-1 .hero-title .line-1, #slide-2 .hero-title .line-1 {
  font-size: clamp(1.2rem, 6vw, 2.25rem);
}
#slide-1 .hero-title .line-2, #slide-2 .hero-title .line-2 {
  margin-block-start: 1rem;
  font-size: clamp(1rem, 5vw, 2rem);
  font-weight: 600;
}
#slide-1 .hero-teaser, #slide-2 .hero-teaser {
  margin-block-start: 2rem;
  width: 100%;
  max-width: 36.875rem;
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(0, 92, 103, 0.25);
  text-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
  font-family: var(--primary-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
}
#slide-1 .hero-teaser a, #slide-2 .hero-teaser a {
  color: #fff;
}
#slide-1 .hero-flex-container, #slide-2 .hero-flex-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
  height: 100%;
  margin-block-start: 1.5rem;
}
#slide-1 .lansdowne-poster, #slide-2 .lansdowne-poster {
  width: 100%;
  max-width: 350px;
  height: auto;
}

.hero-indicator {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
  display: block;
  height: 100%;
  padding: 0.75rem;
}

.oblong {
  display: block;
  width: 42px;
  height: 8px;
  border: none;
  border-radius: 4px;
  background-color: #E9EAEB;
  transition: background-color 0.3s ease-in-out;
}

.is-active .oblong {
  background-color: var(--site-highlight);
}

table {
  --table-font: var(--primary-serif);
  --table-font-color: #222222;
  --table-font-desktop-size: 100%;
  --table-font-weight: 400;
  --th-font-weight: 600;
  --table-caption-font-weight: 600;
  --table-caption-bg-color: transparent;
  --th-bg-color: #eee;
  --td-border-color: #ccc ;
  --td-bg-color: #ffffff;
}

figure.table-wrapper {
  max-width: 100%;
  background-color: transparent;
  border: none;
  display: flex;
  overscroll-behavior-x: contain;
  overflow-x: auto;
  padding-block: 0;
  padding-inline: 1rem;
  container-type: inline-size;
}

.table-wrapper > .note {
  display: none;
}

@container (max-width: 700px) {
  .table-wrapper > .note {
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
table {
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  grid-column: full-width;
}

caption {
  font-family: var(--table-font);
  color: var(--table-font-color);
  font-weight: var(--table-caption-font-weight);
  border-top: 1px solid var(--td-border-color);
  border-left: 1px solid var(--td-border-color);
  border-right: 1px solid var(--td-border-color);
  padding: 0.25rem;
  background-color: var(--table-caption-bg-color);
  text-align: left;
}

th {
  font-weight: var(--th-font-weight);
  font-family: var(--table-font);
  font-size: var(--table-font-desktop-size);
  color: var(--table-font-color);
  font-variant: tabular-nums;
  background-color: var(--th-bg-color);
  border-top: 1px solid var(--td-border-color);
  border-bottom: 1px solid var(--td-border-color);
  border-top: 1px solid var(--td-border-color);
  border-left: 1px solid var(--td-border-color);
  border-right: 1px solid var(--td-border-color);
  padding: 0.5rem 0.5rem;
  text-align: left;
}

th.numeric {
  text-align: right;
}

td {
  background-color: var(--td-bg-color);
  font-family: var(--table-font);
  font-variant: tabular-nums;
  font-size: var(--table-font-desktop-size);
  padding: 0.5rem 0.5rem;
  border-top: 1px solid var(--td-border-color);
  border-bottom: 1px solid var(--td-border-color);
  border-top: 1px solid var(--td-border-color);
  border-left: 1px solid var(--td-border-color);
  border-right: 1px solid var(--td-border-color);
  color: var(--table-font-color);
  text-align: left;
  text-wrap: balance;
}

td.numeric {
  text-align: right;
}

td.emphasis {
  background-color: var(--th-bg-color);
  text-align: center;
  font-weight: 700;
}

html {
  background: url(../images/page-bg.webp) 25px 25px repeat;
}

.page-content-wrapper {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 2rem;
}

.content-breakout {
  width: 100%;
  max-width: var(--breakout);
  margin-inline: auto;
  margin-block-start: 1.5rem;
}

.topbar-items-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  height: 100%;
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
}

.nav-wrapper {
  height: var(--top-bar-height);
  background-color: #ffffff;
  /* Shadows/shadow-md */
  box-shadow: 0 4px 6px -1px rgba(10, 13, 18, 0.1), 0 2px 4px -2px rgba(10, 13, 18, 0.06);
  padding-inline: 2rem;
  background: #FFF;
}

.nav-arrow-use {
  display: none;
}

.site-header {
  min-width: 122px;
  height: var(--top-bar-height);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.site-header .top-logo-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--primary-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--site-highlight);
  text-decoration: none;
}

.panel-opener {
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  margin-inline-start: auto;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
  width: 64px;
  height: 64px;
}
@media only screen and (min-width: 1024px) {
  .panel-opener {
    display: none;
  }
}

.site-navigation .main-menu li button.panel-closer {
  position: absolute;
  top: 1rem;
  right: 2rem;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
  z-index: 5;
}
@media only screen and (min-width: 1024px) {
  .site-navigation .main-menu li button.panel-closer {
    display: none;
  }
}

.site-navigation {
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .site-navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
}
.site-navigation .main-menu.open {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  padding: 2rem;
  list-style: none;
  overflow: auto;
  z-index: 10;
}
.site-navigation .main-menu.open li:first-child {
  position: initial;
}
@media only screen and (min-width: 1024px) {
  .site-navigation .main-menu.open {
    position: initial;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    margin-inline-start: auto;
    list-style: none;
    background-color: transparent;
  }
}
.site-navigation .main-menu.closed {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .site-navigation .main-menu.closed {
    position: initial;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    z-index: 10;
    list-style: none;
    background-color: transparent;
  }
}
.site-navigation .main-menu li > button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding-inline: 0;
  padding-block: 0;
  margin-inline: 0;
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  font-family: var(--clicky-font);
  font-weight: var(--clicky-weight);
  font-size: var(--clicky-size);
  color: var(--clicky-color);
}
.site-navigation .main-menu li > button svg {
  stroke: var(--site-highlight);
}
.site-navigation .main-menu li > a {
  font-family: var(--clicky-font);
  font-weight: var(--clicky-weight);
  font-size: var(--clicky-size);
  color: var(--clicky-color);
  text-decoration: none;
}

button[aria-expanded=true] > svg {
  transform: rotate(180deg);
}

.main-menu > li > ul[aria-hidden=false] {
  width: 16rem;
  padding-block: 0.5rem;
  padding-inline: 1rem;
  background-color: #fcfcfc;
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0 4px 6px -2px rgba(10, 13, 18, 0.03), 0 2px 2px -1px rgba(10, 13, 18, 0.04);
  border: 1px solid #dbdbdb;
  border-radius: 5px;
}
@media only screen and (min-width: 1024px) {
  .main-menu > li > ul[aria-hidden=false] {
    position: absolute;
  }
}
.main-menu > li > ul[aria-hidden=false] li {
  list-style: none;
}
.main-menu > li > ul[aria-hidden=false] a {
  font-family: var(--clicky-font);
  font-weight: var(--clicky-sub-weight);
  font-size: var(--clicky-sub-size);
  color: var(--clicky-sub-color);
  text-decoration: underline;
  text-decoration-color: transparent;
}
.main-menu > li > ul[aria-hidden=false] a:is(:hover) {
  text-decoration-color: var(--site-highlight);
}

.site-navigation:has(.closed) .mobile-logo {
  display: none;
}

.site-navigation:has(.open) .mobile-logo {
  width: 120px;
  height: 120px;
  position: fixed;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.cicr-logo-large {
  width: 100%;
  max-width: 400px;
}

.logo-container {
  --spinDur: 90s;
  /* circle spin duration */
  --fadeDur: 60s;
  /* full cycle for all Camus fades */
  position: relative;
  width: 477px;
  height: 481px;
  margin-inline: auto;
}

/* Every child fills container, center its contents */
.logo-container > div {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* Slower, softer crossfade between Camus layers */
.camus-1,
.camus-2,
.camus-3,
.camus-4,
.camus-5 {
  z-index: 1;
  opacity: 0;
  animation: camusFade var(--fadeDur) linear infinite both;
}

.camus-1 {
  animation-delay: calc(var(--fadeDur) / 5 * 0);
}

.camus-2 {
  animation-delay: calc(var(--fadeDur) / 5 * 1);
}

.camus-3 {
  animation-delay: calc(var(--fadeDur) / 5 * 2);
}

.camus-4 {
  animation-delay: calc(var(--fadeDur) / 5 * 3);
}

.camus-5 {
  animation-delay: calc(var(--fadeDur) / 5 * 4);
}

/* Spinning circle stays above Camus layers */
.circle-container {
  z-index: 2;
  animation: spin var(--spinDur) linear infinite;
}

/* Make images scale nicely */
.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  min-height: 0;
  min-width: 0;
}

:is(.camus-1, .camus-2, .camus-3, .camus-4, .camus-5) img {
  transform: scale(0.8);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .circle-container,
  .camus-1,
  .camus-2,
  .camus-3,
  .camus-4,
  .camus-5 {
    animation: none;
  }
  .camus-1 {
    opacity: 1;
  }
}
button:focus-visible {
  outline: 2px solid rebeccapurple;
  outline-offset: 4px;
  /* Optional enhancements */
  border-radius: 0.25rem;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.skip-link {
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  box-sizing: border-box;
  position: absolute;
  margin: 0;
  padding: 0;
}

.skip-link:focus {
  clip-path: none;
  z-index: 999;
  height: 5rem;
  line-height: 5rem;
  background: white;
  font-size: 1.2rem;
  text-decoration: none;
  color: #1295e6;
  text-align: center;
  width: 100%;
  position: fixed;
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip-path: inset(50%);
  margin: -1px;
}

body:has(.main-menu.open) {
  overflow: hidden;
}

@view-transition {
  navigation: auto;
}
button {
  cursor: pointer;
}

.nav-panel {
  position: fixed;
  inset: 0;
  display: none;
  opacity: 0;
  overflow: auto;
  transition-property: opacity, display;
  transition-duration: 200ms, 200ms;
  transition-timing-function: ease-out, ease-out;
  transition-behavior: allow-discrete;
  z-index: 100;
  background-color: #000000;
}

.nav-panel.open {
  display: block;
  opacity: 1;
  background: #000;
}
@starting-style {
  .nav-panel.open {
    opacity: 0;
  }
}

.nav-grid-container {
  margin-block-start: 1.5rem;
  width: calc(100% - 50px);
  margin-inline: 0;
  max-width: 1440px;
  padding-inline-start: 1rem;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: repeat(3, min-content);
  justify-content: center;
  row-gap: 0;
}
@media only screen and (min-width: 768px) {
  .nav-grid-container {
    margin-inline: auto;
    margin-block-start: 2rem;
    row-gap: 3rem;
  }
}
.nav-grid-container .panel-closer {
  position: fixed;
  top: 0.75rem;
  right: 2rem;
  justify-self: flex-start;
  appearance: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
}
.nav-grid-container .panel-closer img {
  background: transparent;
}
@media only screen and (min-width: 768px) {
  .nav-grid-container .panel-closer {
    top: 2rem;
    right: 2rem;
    width: auto;
    height: auto;
  }
}
.nav-grid-container .nav-title {
  width: 90%;
  margin-block-start: 0;
  margin-block-end: 1rem;
  font-family: var(--primary-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 3rem);
  color: #ffffff;
  letter-spacing: 2.4px;
  line-height: 1.3;
  text-align: left;
  display: none;
}
@media only screen and (min-width: 768px) {
  .nav-grid-container .nav-title {
    display: block;
    margin-block-start: 1.5rem;
    margin-block-end: 0;
    text-align: left;
  }
}

.content-text {
  color: var(--site-highlight);
}
.content-text:is(:hover, :focus-visible) {
  text-decoration: none;
}

.territorial-container {
  padding-inline: 2rem;
}

.territorial {
  width: 100%;
  max-width: 38rem;
  margin-block-start: 3rem;
  margin-inline: auto;
  padding-block: 1.5rem;
  padding-inline: 1.25rem;
  background-color: #FAFAFA;
  border-radius: 8px;
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0 4px 6px -2px rgba(10, 13, 18, 0.03), 0 2px 2px -1px rgba(10, 13, 18, 0.04);
  font-family: var(--primary-serif);
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--text-color);
}

.content-column-container {
  padding-inline: 1rem;
}
@media only screen and (min-width: 1024px) {
  .content-column-container {
    padding-inline: 2rem;
  }
}

footer {
  margin-block-start: 3rem;
  padding-block-end: 3rem;
}

.sponsors {
  margin-block-start: 1.5rem;
  padding-inline: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media only screen and (min-width: 1024px) {
  .sponsors {
    flex-direction: row;
  }
}

.sshrc-logo {
  width: 100%;
  max-width: 525px;
  height: auto;
}

.uvic-logo {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.cicr-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: var(--content-max);
  padding-inline: 2rem;
  margin-inline: auto;
}
.cicr-footer .footer-right, .cicr-footer .footer-left {
  height: 1px;
  width: 100%;
  background-color: #A4A7AE;
}
.cicr-footer .cicr-logo-footer-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*# sourceMappingURL=cicr.css.map */
