html {
  box-sizing: border-box; }

body {
  -webkit-overflow-scrolling: touch; }

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

.site {
  display: flex;
  min-height: 100vh;
  flex-direction: column; }

.site__content {
  flex: 1; }

img {
  max-width: 100%;
  height: auto;
  width: auto;
  vertical-align: middle; }

img::selection {
  background: transparent; }

figure {
  margin: 0; }

@font-face {
  font-family: 'SUIT-Regular';
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }
body {
  background-color: #fff;
  font-family: "Pretendard", "Roboto", "Noto Sans KR", sans-serif;
  font-size: 1em;
  line-height: 1.8;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-weight: 300; }

::selection {
  color: #fff;
  background-color: #3c3d41; }

p {
  margin-top: 0;
  margin-bottom: 1.25rem; }

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #313237;
  margin-top: 0;
  margin-bottom: .5rem; }

a {
  color: #277cea;
  text-decoration: none;
  transition: all .2s linear;
  border-bottom: 1px dashed #277cea; }
  a:active, a:focus {
    outline: 0; }
  a:hover, a:focus {
    color: #68a4f1;
    border-bottom: 1px solid #68a4f1; }

hr {
  height: 1px;
  background: #ededed;
  border: 0; }

em {
  font-style: italic; }

abbr[title] {
  text-decoration: none; }

mark {
  background: #ff0;
  color: #313237; }

code {
  padding: 0.2em 0.4em;
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 0.9rem;
  color: #25292e;
  background-color: #f6f8fa;
  border-radius: 3px; }

pre {
  padding: 0.8rem;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow-x: auto;
  font: 1rem Consolas, "Liberation Mono", Menlo, Courier, monospace;
  color: #25292e;
  word-wrap: normal;
  background-color: #f6f8fa;
  border: solid 1px #dce6f0;
  border-radius: 0.3rem; }
  pre > code {
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #25292e;
    word-break: normal;
    white-space: pre;
    background: transparent;
    border: 0; }

strong {
  font-weight: bold; }

.blur {
  background: #fff;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="16" /></filter></svg>#filter');
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
  transition: filter 400ms, -webkit-filter 400ms; }
  .blur.lazyloaded {
    -webkit-filter: blur(0);
    filter: blur(0); }

.dark-bg {
  background-color: #313237; }

.hidden {
  display: none;
  visibility: hidden; }

.container {
  padding: 0 20px;
  margin: 0 auto;
  max-width: 100%; }
  @media only screen and (min-width: 36em) {
    .container {
      margin: 0 auto;
      max-width: 540px; } }
  @media only screen and (min-width: 48em) {
    .container {
      margin: 0 auto;
      max-width: 720px; } }
  @media only screen and (min-width: 62em) {
    .container {
      margin: 0 auto;
      max-width: 960px; } }
  @media only screen and (min-width: 75em) {
    .container {
      margin: 0 auto;
      max-width: 1170px; } }

.header {
  background-color: #fff;
  color: #000000;
  position: absolute;
  z-index: 4;
  width: 100%;
  top: 0;
  left: 0;
  will-change: transform;
  transition: transform .3s, background-color 0.5s ease;
  transform: translateY(0%); }
  .header a {
    display: flex;
    align-items: center;
    border-bottom: 0; }
  .header.fix-nav {
    position: fixed;
    background-color: #fff;
    transition: transform .3s, background-color 0.5s ease;
    z-index: 5; }
  .header.hide-nav {
    transform: translateY(-120%);
    transition: transform .3s; }

.header__logo {
  display: flex;
  height: 100%;
  overflow: hidden;
  padding: 19px 0;
  margin-right: 1.25rem;
  outline: 0;
  border-bottom: 0;
  color: #313237; }
  .header__logo:hover {
    color: #313237;
    border-bottom: 0; }
  .header__logo .header__logo--container {
    width: 58px; }
    .header__logo .header__logo--container .logo {
      fill: currentColor; }

.header__inner {
  display: flex;
  align-items: center;
  height: 3.75em;
  justify-content: space-between; }

.header__links {
  padding-bottom: .5rem;
  display: none;
  position: absolute;
  top: 3.75em;
  left: 0;
  width: 100%;
  height: auto;
  background: #fff; }

.header__link {
  color: #000000;
  padding: .938rem 0;
  border-top: 1px solid #ededed; }

.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 100%;
  background-color: transparent;
  padding-left: 1.25rem;
  cursor: pointer; }
  .header__toggle span {
    display: block;
    position: relative;
    margin-top: 4px;
    background-color: #000000;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    transition: all 0.2s cubic-bezier(1, 0.13, 0.35, 1.09); }
    .header__toggle span:first-child {
      margin-top: 0; }
  .header__toggle.--open span:first-child {
    transform: rotate(45deg) translate(4px, 4px); }
  .header__toggle.--open span:nth-child(2n) {
    opacity: 0; }
  .header__toggle.--open span:last-child {
    transform: rotate(-45deg) translate(4px, -4px); }

.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 2;
  transition: opacity 1s ease 0.1s; }
  .header__overlay.--open {
    width: 100%;
    height: 120%;
    opacity: 1; }

@media (min-width: 62em) {
  .header__toggle {
    display: none;
    visibility: hidden; }

  .header__links {
    position: static;
    padding: 0;
    display: flex;
    flex-direction: column;
    visibility: visible;
    width: auto;
    height: 100%; }

  .header__links-wrapper {
    display: flex;
    height: 100%;
    padding: 0; }

  .header__link {
    position: relative;
    padding: .938rem 1rem;
    border: 0;
    height: 100%; }
    .header__link::after {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      bottom: 0;
      height: 3px;
      width: 100%;
      transform: scaleX(0);
      background: #277cea;
      transition: color 0.2s ease-in-out, transform .2s ease-in-out; }
    .header__link:hover {
      color: #0f4c9c; }
    .header__link:hover::after,
    .header__link :active::after,
    .header__link :focus::after {
      transform: scaleX(1);
      color: #0f4c9c;
      transition: transform .2s ease-in-out; } }
footer {
  padding: 2.8125rem 0;
  border-top: 1px solid #f0f0f0;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(33, 33, 33, 0.6); }
  footer a {
    color: rgba(33, 33, 33, 0.6);
    border-bottom: 0; }
    footer a:hover, footer a:focus {
      color: #277cea;
      border-bottom: 0; }

.social {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  margin: 0 auto 25px; }

.social__link:not(:last-child) {
  margin-right: 1.5rem; }

.social__icon {
  fill: currentColor;
  height: 1.5rem;
  width: 1.5rem; }

.btn,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  position: relative;
  display: inline-block;
  padding: 18px 30px;
  font-size: 11px;
  font-family: inherit;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  color: #fff;
  background-color: #222325;
  text-align: center;
  border: 0;
  border-radius: 0;
  transition: all 0.45s cubic-bezier(0.25, 1, 0.33, 1);
  outline: 0; }
  .btn::after,
  input[type="submit"]::after,
  input[type="reset"]::after,
  input[type="button"]::after {
    display: none; }
  .btn:hover,
  .btn :focus,
  .btn :active,
  input[type="submit"]:hover,
  input[type="submit"] :focus,
  input[type="submit"] :active,
  input[type="reset"]:hover,
  input[type="reset"] :focus,
  input[type="reset"] :active,
  input[type="button"]:hover,
  input[type="button"] :focus,
  input[type="button"] :active {
    color: #fff;
    background-color: #44464a;
    outline: 0; }

.btn + .btn {
  margin-top: 2em; }
  @media only screen and (min-width: 350px) {
    .btn + .btn {
      margin-top: 0;
      margin-left: 2em; } }

button:disabled {
  cursor: not-allowed;
  opacity: .65;
  transition: background-color .2s ease; }
  button:disabled:hover,
  button:disabled :focus {
    background-color: #222325; }

.post-card {
  display: block;
  position: relative;
  width: 250px;
  height: 330px;
  min-height: 250px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-bottom: 2.25rem;
  border-bottom: 0;
  transition: box-shadow .25s ease; }
  .post-card:hover, .post-card:focus {
    border-bottom: 0;
    box-shadow: 0 2px 40px 0 rgba(153, 155, 168, 0.3); }
  @media only screen and (min-width: 48em) {
    .post-card {
      width: 48.4375%;
      margin-right: 3.125%; }
      .post-card:last-of-type, .post-card:nth-child(2n+2) {
        margin-right: 0; } }
  @media only screen and (min-width: 75em) {
    .post-card {
      width: 31.25%;
      margin-right: 3.125%; }
      .post-card:nth-child(2n+2) {
        margin-right: 3.125%; }
      .post-card:last-of-type, .post-card:nth-child(3n+3) {
        margin-right: 0; } }
  .post-card__label {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 2; }
  .post-card__inner {
    text-align: center;
    display: block;
    position: relative;
    margin-top: 1em;
    margin-bottom: -8px;
    padding: 0.25rem 1.25rem 0.25rem;
    width: 100%;
    color: #838c8d;
    border-bottom: 0; }
    .post-card__inner:focus, .post-card__inner:hover {
      color: #838c8d;
      border-bottom: 0; }
  .post-card__header {
    margin-bottom: 0.75rem; }
  .post-card__meta {
    font-size: 0.875rem; }

.post-card__thumb {
  margin: 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  height: 250px; }
  .post-card__thumb::after {
    content: "";
    display: block;
    height: 0;
    width: 100%; }
  .post-card__thumb > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block; }

.label {
  padding: 0px 10px;
  margin-bottom: 1rem;
  display: inline-block;
  line-height: 20px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  transition: all 0.2s ease; }
  .label:focus, .label:hover {
    color: #fff;
    background-color: #277cea;
    border: 2px solid #277cea; }

.pagination {
  display: flex;
  justify-content: center;
  margin: 1.25rem auto; }

input,
textarea {
  display: inline-block;
  padding: 5px 0;
  width: 100%;
  border: 0;
  border-bottom: 2px solid #ededed;
  outline: none;
  font-family: "Pretendard", "Roboto", sans-serif;
  background: transparent; }
  input:focus,
  textarea:focus {
    border-color: #277cea;
    transition: border-color .25s; }

.form__input {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 35px; }
  .form__input::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #277cea;
    z-index: 5;
    transition: width 0.45s cubic-bezier(0.694, 0.048, 0.335, 1);
    transition-delay: .1s; }
  .form__input::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6161;
    z-index: 4;
    transition: width 0.45s cubic-bezier(0.694, 0.048, 0.335, 1); }
  .form__input:hover::after,
  .form__input :focus::after,
  .form__input :active::after {
    width: 100%; }
  .form__input:hover::before,
  .form__input :focus::before,
  .form__input :active::after {
    width: 100%; }
  .form__input.error:hover::after,
  .form__input.error :focus::after,
  .form__input.error :active::after {
    width: 0%; }
  .form__input.error:hover::before,
  .form__input.error :focus::before,
  .form__input.error :active::after {
    width: 0%; }

.error input {
  border-bottom-color: #ff6161; }
.error textarea {
  border-bottom-color: #ff6161; }

.error-data {
  color: #ff6161;
  font-size: 14px;
  position: absolute;
  left: 0;
  bottom: -21px; }

.modal {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: 0;
  overflow-y: auto;
  z-index: 999; }

.modal__inner {
  flex: 0 1 auto;
  position: relative;
  margin: 1.875em;
  width: auto;
  max-width: 768px;
  outline: 0;
  opacity: 0;
  transform: translateY(200px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050; }

.modal__content {
  position: relative;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 4px; }
  .modal__content h1 {
    text-align: center; }

.modal__close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: 0;
  outline: 0;
  color: #313237;
  cursor: pointer; }
  .modal__close-button:hover {
    background-color: transparent; }

.modal__overlay {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1040;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.75);
  transition: opacity 1s ease 0.1s; }

body.modal--open {
  overflow: hidden; }

table {
  display: table;
  width: 100%;
  overflow-x: scroll;
  margin-bottom: 1.25rem;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #ededed;
  border-radius: 4px;
  font-size: 14.5px; }
  table th {
    background-color: #f9f9f9; }
  table th,
  table td {
    padding: 6px 11px;
    border: 1px solid #ededed; }

.highlight table td {
  padding: 5px; }

.highlight table pre {
  margin: 0; }

.highlight .cm {
  color: #999988;
  font-style: italic; }

.highlight .cp {
  color: #999999;
  font-weight: bold; }

.highlight .c1 {
  color: #999988;
  font-style: italic; }

.highlight .cs {
  color: #999999;
  font-weight: bold;
  font-style: italic; }

.highlight .c, .highlight .cd {
  color: #999988;
  font-style: italic; }

.highlight .err {
  color: #a61717;
  background-color: #e3d2d2; }

.highlight .gd {
  color: #000000;
  background-color: #ffdddd; }

.highlight .ge {
  color: #000000;
  font-style: italic; }

.highlight .gr {
  color: #aa0000; }

.highlight .gh {
  color: #999999; }

.highlight .gi {
  color: #000000;
  background-color: #ddffdd; }

.highlight .go {
  color: #888888; }

.highlight .gp {
  color: #555555; }

.highlight .gs {
  font-weight: bold; }

.highlight .gu {
  color: #aaaaaa; }

.highlight .gt {
  color: #aa0000; }

.highlight .kc {
  color: #000000;
  font-weight: bold; }

.highlight .kd {
  color: #000000;
  font-weight: bold; }

.highlight .kn {
  color: #000000;
  font-weight: bold; }

.highlight .kp {
  color: #000000;
  font-weight: bold; }

.highlight .kr {
  color: #000000;
  font-weight: bold; }

.highlight .kt {
  color: #445588;
  font-weight: bold; }

.highlight .k, .highlight .kv {
  color: #000000;
  font-weight: bold; }

.highlight .mf {
  color: #009999; }

.highlight .mh {
  color: #009999; }

.highlight .il {
  color: #009999; }

.highlight .mi {
  color: #009999; }

.highlight .mo {
  color: #009999; }

.highlight .m, .highlight .mb, .highlight .mx {
  color: #009999; }

.highlight .sb {
  color: #d14; }

.highlight .sc {
  color: #d14; }

.highlight .sd {
  color: #d14; }

.highlight .s2 {
  color: #d14; }

.highlight .se {
  color: #d14; }

.highlight .sh {
  color: #d14; }

.highlight .si {
  color: #d14; }

.highlight .sx {
  color: #d14; }

.highlight .sr {
  color: #009926; }

.highlight .s1 {
  color: #d14; }

.highlight .ss {
  color: #990073; }

.highlight .s {
  color: #d14; }

.highlight .na {
  color: #008080; }

.highlight .bp {
  color: #999999; }

.highlight .nb {
  color: #0086B3; }

.highlight .nc {
  color: #445588;
  font-weight: bold; }

.highlight .no {
  color: #008080; }

.highlight .nd {
  color: #3c5d5d;
  font-weight: bold; }

.highlight .ni {
  color: #800080; }

.highlight .ne {
  color: #990000;
  font-weight: bold; }

.highlight .nf {
  color: #990000;
  font-weight: bold; }

.highlight .nl {
  color: #990000;
  font-weight: bold; }

.highlight .nn {
  color: #555555; }

.highlight .nt {
  color: #000080; }

.highlight .vc {
  color: #008080; }

.highlight .vg {
  color: #008080; }

.highlight .vi {
  color: #008080; }

.highlight .nv {
  color: #008080; }

.highlight .ow {
  color: #000000;
  font-weight: bold; }

.highlight .o {
  color: #000000;
  font-weight: bold; }

.highlight .w {
  color: #bbbbbb; }

.highlight {
  background-color: #f8f8f8; }

.tab {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  padding: 0;
  list-style: none;
  position: relative; }

.tab > * {
  flex: none;
  padding-left: 20px;
  position: relative; }

.tab > * > a {
  display: block;
  text-align: center;
  padding: 9px 20px;
  color: #999;
  border-bottom: 2px solid transparent;
  border-bottom-color: transparent;
  font-size: 13px;
  text-transform: uppercase;
  transition: color .1s ease-in-out;
  line-height: 20px; }

.tab > .active > a {
  color: #000;
  border-color: #1e87f0;
  font-weight: bold; }

.tab li a {
  text-decoration: none;
  cursor: pointer; }

.tab-content {
  padding: 0; }

.tab-content li {
  margin: 25px 0px 25px 0px;
  border: 3px;
  display: none; }

.tab-content li.active {
  display: initial; }

.tab-content li.active > .publications > ol > li {
  display: initial; }

.hero {
  margin: 3.75rem auto 0;
  min-height: 16.25rem;
  width: 100%;
  position: relative;
  background-color: #dde5ea;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover; }
  @media only screen and (min-width: 62em) {
    .hero {
      margin: 0 auto;
      height: 36em; } }
  .hero::before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 56, 81, 0.8); }

.hero--small {
  margin: 3.75rem auto 0;
  min-height: 8.75rem;
  width: 100%;
  position: relative;
  background-color: #313237; }
  @media only screen and (min-width: 62em) {
    .hero--small {
      height: 12.5em; } }
  .hero--small::before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 56, 81, 0.8); }

.hero__wrap {
  position: absolute;
  margin: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
  max-width: 90%;
  z-index: 1; }
  @media only screen and (min-width: 48em) {
    .hero__wrap {
      max-width: 50em; } }
  .hero__wrap .hero__meta {
    font-size: 1.5em; }
  .hero__wrap .hero__secondtitle {
    font-size: 1.6em;
    color: #fff; }

.page-content {
  max-width: 55em;
  margin: 0 auto;
  padding: 2.5em 0; }
  @media only screen and (min-width: 48em) {
    .page-content {
      padding: 3.75rem 0; } }

.blog {
  background-color: #f9f9f9; }

.post-list {
  padding-top: 1em;
  display: flex;
  flex-wrap: wrap;
  flex: 1 0 auto; }
  @media only screen and (min-width: 48em) {
    .post-list {
      padding-top: 1em; } }

.post-content {
  max-width: 52.5rem;
  margin: 0 auto;
  padding-top: 2.5em; }
  @media only screen and (min-width: 48em) {
    .post-content {
      padding-top: 5em; } }

.comments {
  padding: 50px 0;
  background-color: #fafafa; }

.controls__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.375rem 0 1.25rem;
  border-top: 1px solid #ededed; }
  .controls__inner .prev {
    align-items: flex-start;
    text-align: left; }
  .controls__inner .next {
    align-items: flex-end;
    text-align: right; }

.controls__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }
  .controls__item span {
    font-size: 0.875rem;
    color: #838c8d; }
  .controls__item a {
    color: #313237;
    font-weight: bold;
    border-bottom: 0; }
    .controls__item a svg {
      transition: all .2s linear; }
    .controls__item a:hover {
      color: #277cea;
      border-bottom: 0; }
      .controls__item a:hover svg {
        fill: #277cea; }

.publications {
  margin-top: 2rem; }
  .publications h1 {
    color: #B509AC;
    font-size: 2rem;
    text-align: center;
    margin-top: 1em;
    margin-bottom: 1em; }
  .publications h2 {
    margin-bottom: 1rem; }
    .publications h2 span {
      font-size: 1.5rem; }
  .publications h2.year {
    color: #e8e8e8;
    border-top: 1px solid #e8e8e8;
    padding-top: 1rem;
    margin-top: 2rem;
    margin-bottom: -2rem;
    text-align: right; }
  .publications ol.bibliography {
    list-style: none;
    padding: 0;
    margin-top: 0; }
    .publications ol.bibliography li {
      margin-bottom: 1rem; }
      .publications ol.bibliography li .row {
        margin-bottom: 0.5em; }
      .publications ol.bibliography li .abbr {
        height: 2rem;
        margin-bottom: 0rem; }
        .publications ol.bibliography li .abbr abbr {
          display: inline-block;
          background-color: #B509AC;
          padding-left: 1rem;
          padding-right: 1rem; }
          .publications ol.bibliography li .abbr abbr a {
            color: white; }
            .publications ol.bibliography li .abbr abbr a:hover {
              text-decoration: none; }
        .publications ol.bibliography li .abbr .award {
          color: #B509AC !important;
          border: 1px solid #B509AC; }
      .publications ol.bibliography li .title {
        font-weight: bolder; }
      .publications ol.bibliography li .author a {
        border-bottom: 1px dashed #B509AC; }
        .publications ol.bibliography li .author a:hover {
          border-bottom-style: solid;
          text-decoration: none; }
      .publications ol.bibliography li .author > em {
        border-bottom: 1px solid;
        font-style: normal; }
      .publications ol.bibliography li .links a.btn {
        color: var(--global-text-color);
        border: 1px solid var(--global-text-color);
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 0.25rem;
        padding-bottom: 0.25rem; }
        .publications ol.bibliography li .links a.btn:hover {
          color: #B509AC;
          border-color: #B509AC; }
      .publications ol.bibliography li .hidden {
        font-size: 0.875rem;
        max-height: 0px;
        overflow: hidden;
        text-align: justify;
        -webkit-transition: 0.15s ease;
        -moz-transition: 0.15s ease;
        -ms-transition: 0.15s ease;
        -o-transition: 0.15s ease;
        transition: all 0.15s ease; }
        .publications ol.bibliography li .hidden p {
          line-height: 1.4em;
          margin: 10px; }
        .publications ol.bibliography li .hidden pre {
          font-size: 1em;
          line-height: 1.4em;
          padding: 10px; }
      .publications ol.bibliography li .hidden.open {
        max-height: 100em;
        -webkit-transition: 0.15s ease;
        -moz-transition: 0.15s ease;
        -ms-transition: 0.15s ease;
        -o-transition: 0.15s ease;
        transition: all 0.15s ease; }
      .publications ol.bibliography li div.abstract.hidden {
        border: dashed 1px var(--global-bg-color); }
      .publications ol.bibliography li div.abstract.hidden.open {
        border-color: var(--global-text-color); }

/*# sourceMappingURL=jekyll-sleek.css.map */
