html, body {
  margin: 0;
  padding: 0;
  font-family: 'customFont', sans-serif; }

@font-face {
  font-family: "customFont";
  src: url("../assets/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: "customFont";
  src: url("../assets/Roboto-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap; }
@font-face {
  font-family: "customFont";
  src: url("../assets/Roboto-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: "customFont";
  src: url("../assets/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }
.body-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 15vw 85vw;
  margin-left: 0;
  margin-top: 6vh;
  height: calc(100vh - 6vh); }

#header {
  position: fixed;
  /* fixed at the top */
  color: whitesmoke;
  top: 0;
  left: 0;
  width: 100vw;
  /* trapezoid width */
  height: 6vh;
  /* trapezoid height */
  /* Trapezoid: thinner on the LEFT, thicker on the RIGHT */
  z-index: 1;
  /* sits above the background */
  display: grid;
  grid-template-columns: 50vw 50vw;
  align-items: center;
  justify-items: left;
  gap: 2vw; }
  #header .pageTitle-cianna {
    position: relative;
    height: calc(6vh - 1vh);
    margin-left: 2vw; }
  #header #pageTitle-icon {
    height: calc(6vh - 1vh);
    margin-right: 1vmin; }
  #header #pageTitle-text {
    font-size: clamp(12px, calc(6vh / 2), 50px); }
  #header .pageTitle {
    display: flex;
    flex-direction: row;
    align-items: center; }

#myNavbar {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #09203f 0%, #537895 100%);
  /* border: rgb(176, 250, 105) 1px solid; */
  text-align: left;
  color: white;
  padding-top: 3vh; }

#landingCategory {
  grid-column: 2;
  display: grid;
  width: 100%;
  box-sizing: border-box;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  justify-content: stretch;
  align-content: start;
  align-items: start;
  margin: 0;
  padding: 30px;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: visible; }
  #landingCategory a {
    text-decoration: none; }
  #landingCategory .pageSummary {
    border: 1px solid #c5c5c5;
    border-radius: 5%;
    background-color: rgba(81, 27, 119, 0.1);
    color: #09203f;
    width: 100%;
    max-width: 500px;
    height: 500px;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden; }
    #landingCategory .pageSummary:hover {
      transform: scale(1.05);
      transition: all 0.5s; }
    #landingCategory .pageSummary .pageSummary-top {
      height: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 10px;
      box-sizing: border-box; }
      #landingCategory .pageSummary .pageSummary-top .pageSummary-image {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; }
      #landingCategory .pageSummary .pageSummary-top svg.pageSummary-image {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto; }
    #landingCategory .pageSummary .pageSummary-bottom {
      height: 50%;
      display: flex;
      flex-direction: column;
      padding: 15px;
      box-sizing: border-box;
      position: relative; }
      #landingCategory .pageSummary .pageSummary-bottom hr.pageSummary-line {
        width: 100%;
        margin: 10px 0;
        border: 0;
        border-top: 1px solid rgba(9, 32, 63, 0.3); }
      #landingCategory .pageSummary .pageSummary-bottom .pageSummary-title {
        font-size: 1.2rem;
        margin: 0;
        text-align: center;
        flex-shrink: 0; }
      #landingCategory .pageSummary .pageSummary-bottom .pageSummary-abstract {
        flex-grow: 1;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        margin: 10px 0;
        text-align: justify; }
      #landingCategory .pageSummary .pageSummary-bottom .pageSummary-NB {
        opacity: 0.75;
        font-size: 0.8rem;
        text-align: right;
        margin-top: auto;
        flex-shrink: 0; }

#pageContent {
  grid-column: 2;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-left: 10%;
  padding-right: 10%;
  overflow-y: auto;
  height: auto;
  font-size: 13pt;
  /* --- Styled code blocks (NOT inline code) --- */
  /* --- simple footnote styling --- */
  /* SVG separator that can host ANY inline SVG */ }
  #pageContent h1 {
    text-align: center;
    font-size: clamp(24px, 5vw, 60px); }
  #pageContent h2 {
    font-size: clamp(20px, 3vw, 40px);
    margin-top: 80px;
    margin-bottom: 0; }
  #pageContent h3 {
    font-size: clamp(16px, 2vw, 30px); }
  #pageContent img {
    display: block;
    margin: 20px auto;
    /* centers horizontally */
    max-width: 100%;
    /* responsive */
    height: auto;
    border: 1px solid #09203f; }
  #pageContent .codebox {
    position: relative;
    margin: 16px 0; }
    #pageContent .codebox pre {
      margin: 0;
      padding: 14px 44px 14px 14px;
      /* extra right padding for the copy button */
      background: #09203f;
      color: #fff;
      border: 1px solid #000;
      border-radius: 8px;
      overflow: auto;
      line-height: 1.4;
      font-size: 0.95em; }
    #pageContent .codebox pre code {
      color: inherit;
      background: transparent;
      white-space: pre;
      /* preserve formatting */ }
    #pageContent .codebox .copy-btn {
      position: absolute;
      top: 8px;
      right: 8px;
      z-index: 2;
      background: rgba(0, 0, 0, 0.35);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.35);
      border-radius: 6px;
      padding: 6px 10px;
      cursor: pointer;
      font-size: 0.85em;
      line-height: 1; }
    #pageContent .codebox .copy-btn:hover {
      background: rgba(0, 0, 0, 0.55); }
    #pageContent .codebox .copy-btn:active {
      transform: translateY(1px); }
  #pageContent .note,
  #pageContent p.note {
    font-style: italic;
    opacity: 0.5; }
  #pageContent .fn-ref {
    font-size: 0.8em;
    vertical-align: super; }
    #pageContent .fn-ref a {
      text-decoration: none; }
  #pageContent .footnotes {
    margin-top: 30px;
    font-size: 0.95em;
    opacity: 0.5; }
    #pageContent .footnotes ol {
      padding-left: 1.2rem; }
    #pageContent .footnotes li {
      margin: 0.4rem 0; }
    #pageContent .footnotes a.fn-backref {
      text-decoration: none;
      margin-left: 0.25rem; }
  #pageContent hr {
    color: #09203f; }
  #pageContent .hr-icon {
    margin: 25px auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    /* icon touches lines */
    width: 100%;
    /* Customize */
    --hr-line-color: #09203f;
    --hr-icon-size: 3rem;
    --hr-icon-pad-x: 1rem;
    color: var(--hr-line-color); }
  #pageContent .hr-icon__line {
    flex: 1;
    border-top: 3px solid var(--hr-line-color); }
  #pageContent .hr-icon__svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hr-icon-bg);
    padding: 0 var(--hr-icon-pad-x);
    /* Optional: if you want rounded background behind the SVG */
    /* border-radius: 999px; */ }
  #pageContent .hr-icon__svg svg {
    width: var(--hr-icon-size);
    height: var(--hr-icon-size);
    display: block;
    /* Important: lets your SVG inherit the text color */
    fill: currentColor; }

/* Grid container: 3 columns + small gaps + left/right margins via padding */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 400px);
  gap: 16px;
  /* fixed gap */
  margin-top: 18px;
  justify-content: center;
  box-sizing: border-box;
  /* Each card: enforce height/width = 4/3  => aspect-ratio = width/height = 3/4 */ }
  .team-grid .team-card {
    aspect-ratio: 3 / 4;
    /* width : height */
    width: 100%;
    display: grid;
    grid-template-rows: 1fr 1fr;
    /* top half (photo) / bottom half (text) */
    border-radius: 10px;
    overflow: hidden;
    /* ensures nothing can visually spill out */
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    /* Top half: strictly constrained */
    /* Image: MUST stay contained inside the top half */
    /* Bottom half: centered name + role */ }
    .team-grid .team-card .team-card__photoWrap {
      overflow: hidden;
      /* hard clip if anything tries to overflow */
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
      min-height: 0;
      /* important in grid/flex contexts to allow shrinking */ }
    .team-grid .team-card .team-card__photo {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      /* keep full image visible */
      display: block; }
    .team-grid .team-card .team-card__info {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 12px;
      min-height: 0; }
    .team-grid .team-card .team-card__name {
      font-weight: 700;
      font-size: 30px;
      margin: 0 0 6px 0; }
    .team-grid .team-card .team-card__role {
      font-weight: 400;
      margin: 0;
      opacity: 0.9; }

.paper-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 40px;
  /* Entire card is a link */
  /* Left / right split: 30% / 70% */ }
  .paper-list .paper-card {
    width: 95%;
    margin: 0 auto;
    border: 2px solid #09203f;
    border-radius: 15px;
    display: flex;
    align-items: stretch;
    min-height: 160px;
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
    height: 260px;
    max-height: 260px;
    overflow: hidden; }
  .paper-list .paper-card:hover,
  .paper-list .paper-card:focus-visible {
    outline: none;
    transform: scale(1.05);
    transition: all 0.25s; }
  .paper-list .paper-left {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
    min-width: 0;
    height: 100%;
    overflow: hidden; }
  .paper-list .paper-figure {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center; }
    .paper-list .paper-figure img {
      display: block;
      /* keep aspect ratio */
      width: auto;
      height: auto;
      /* fit inside the available box */
      max-width: 100%;
      max-height: 100%;
      /* safety: if another rule forces width/height, still don't crop */
      object-fit: contain;
      object-position: center; }
  .paper-list .paper-right {
    flex: 1 1 70%;
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    border-left: 2px solid #09203f;
    box-sizing: border-box;
    min-width: 0;
    min-height: 0;
    height: 100%;
    overflow: hidden; }
  .paper-list .paper-title {
    font-weight: 800;
    text-align: center;
    margin: 0 0 10px 0;
    line-height: 1.15;
    font-size: 1.55rem; }
  .paper-list .paper-abstract {
    flex: 1 1 auto;
    margin: 0;
    line-height: 1.45;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px; }
  .paper-list .paper-authors {
    margin: 10px 0 0 0;
    text-align: right;
    opacity: 0.72;
    font-size: 0.95em; }

/* Optional: make edge margins responsive on smaller screens */
@media (max-width: 900px) {
  .team-grid {
    padding: 0 24px; } }
/* ============== */
/* FOR SMARTPHONE */
@media (min-width: 950px) {
  body {
    overflow: hidden; }

  .body-wrapper {
    margin-top: 6vh; }

  #myNavbar {
    grid-column: 1; }

  #myNavbarToggleButton {
    display: none; } }
@media (max-width: 1800px) and (min-width: 950px) {
  .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr); } }
@media (max-width: 950px) {
  body {
    overflow-x: hidden; }

  .body-wrapper {
    grid-template-columns: 99vw;
    grid-column-gap: 0;
    margin-top: 6vh; }

  #myNavbar {
    z-index: 10;
    /* position: absolute; */
    position: fixed;
    width: 50vw;
    /* left:-50vw; */
    left: 0vw;
    height: 100vh;
    transition: all 0.5s; }

  #myNavbarToggleButton {
    position: absolute;
    z-index: 5;
    right: -50px;
    width: 50px;
    top: 50px;
    height: 50px;
    background-color: #111218;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    align-items: center;
    justify-items: center;
    display: grid;
    place-items: center; }
    #myNavbarToggleButton:hover {
      background-color: #525252; }
    #myNavbarToggleButton .nav-icon {
      position: relative;
      width: 22px;
      height: 16px;
      background: linear-gradient(#fff 0 0) top/100% 2px, linear-gradient(#fff 0 0) center/100% 2px, linear-gradient(#fff 0 0) bottom/100% 2px;
      background-repeat: no-repeat; }
      #myNavbarToggleButton .nav-icon::before, #myNavbarToggleButton .nav-icon::after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 2px;
        background: #fff;
        transform-origin: center;
        opacity: 0; }
    #myNavbarToggleButton.is-open .nav-icon {
      background: none; }
      #myNavbarToggleButton.is-open .nav-icon::before {
        opacity: 1;
        transform: translateY(-50%) rotate(45deg); }
      #myNavbarToggleButton.is-open .nav-icon::after {
        opacity: 1;
        transform: translateY(-50%) rotate(-45deg); }

  #landingCategory {
    grid-column: 1;
    width: 100%;
    grid-template-columns: 1fr;
    padding: 20px 20px; }
    #landingCategory .pageSummary {
      width: 100%;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto; }

  #pageContent {
    grid-column: 1; }

  .paper-list .paper-card {
    height: auto;
    max-height: none;
    overflow: visible;
    flex-direction: column;
    min-height: 0;
    /* let content define height */
    /* Text first (top) */
    /* Figure second (bottom) */ }
    .paper-list .paper-card .paper-right {
      order: 1;
      flex: 1 1 auto;
      /* flexible */
      border-left: 0;
      min-height: 0;
      overflow: hidden; }
      .paper-list .paper-card .paper-right .paper-abstract {
        max-height: 30vh;
        overflow-y: auto;
        overflow-x: hidden;
        min-height: 0; }
    .paper-list .paper-card .paper-left {
      order: 2;
      /* switch the divider from vertical to horizontal */
      border-right: 0;
      border-top: 2px solid #000;
      /* flexible but with a minimum figure area */
      flex: 0 0 auto;
      min-height: 220px;
      /* <-- adjust to taste */
      height: auto;
      /* remove desktop cap so it can grow if needed, but keep tidy */
      max-height: none;
      overflow: hidden;
      padding: 12px;
      box-sizing: border-box; }
    .paper-list .paper-card .paper-figure {
      width: 100%;
      height: 100%; }
      .paper-list .paper-card .paper-figure img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block; }

  .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr); } }

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