@charset "UTF-8";
@font-face {
  font-family: Garamond;
  src: url("/theme/fonts/EBGaramond08-Regular.woff") format("woff");
  font-style: normal;
}
@font-face {
  font-family: Garamond;
  src: url("/theme/fonts/EBGaramond08-Italic.woff") format("woff");
  font-style: italic;
}
@font-face {
  font-family: Montreal;
  src: url("/theme/fonts/NeueMontreal-Regular.woff") format("woff");
  font-weight: 100;
}
@font-face {
  font-family: Montreal;
  src: url("/theme/fonts/NeueMontreal-Regular.woff") format("woff");
  font-weight: bold;
}
:root {
  --color-background: #eaeaea;
  --color-hard-shade: #4b4b4b;
  --color-medium-shade: #8e8e8e;
  --color-light-shade: #c8c8c8;
  --color-highlight: rgba(77, 109, 251);
  --type-titles: Montreal, Helvetica, sans-serif;
  --type-text-details: Montreal, Helvetica, sans-serif;
  --type-text-body: Garamond, Hoefler Text, bodyfont, serif;
  --font-size-details: 0.5em;
  --font-size-body: 1em;
  --font-size-h1: 1em;
  --font-size-h2: 0.9em;
  --font-size-h3: 0.7em;
  --zoom-variable: 2;
}

html {
  background-color: var(--color-background);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  display: flex;
  color: var(--color-hard-shade);
  margin: 0;
  flex-direction: row;
  background: var(--color-background);
  color: var(--color-hard-shade);
  font: var(--font-size-body) var(--type-text-body);
  width: 100vw;
  height: 100vh;
  overflow-y: hidden;
}

body::selection {
  color: var(--color-background);
  background-color: var(--color-hard-shade);
}

.flex-spacer {
  flex-grow: 1;
}

#visualizer {
  width: 85%;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#visualizer .category_list {
  margin-top: 15px;
  padding-left: 0;
}
#visualizer .category_list a {
  color: var(--color-hard-shade);
  width: 100%;
  cursor: pointer;
}
#visualizer .category_list a:hover li {
  background: linear-gradient(90deg, var(--color-medium-shade) 0, var(--color-light-shade) 5px, var(--color-background) 10px);
  font-style: italic;
}
#visualizer .category_list li {
  padding: 15px 30px;
  border-bottom: 1pt solid var(--color-hard-shade);
  list-style-type: circle;
}
#visualizer .category_list li::before {
  content: "⤷";
  padding-right: 10px;
}

#visualizer.home .encounter-space {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#visualizer.home .encounter-space .right {
  background: linear-gradient(90deg, var(--color-medium-shade) 0, var(--color-light-shade) 5px, var(--color-background) 10px);
  border-radius: 8px 0 0 0;
  overflow: hidden;
}
#visualizer.home .encounter-space .left {
  background: linear-gradient(270deg, var(--color-medium-shade) 0, var(--color-light-shade) 5px, var(--color-background) 10px);
  border-radius: 0 8px 0 0;
  overflow: hidden;
}
#visualizer.home .encounter-space figure {
  margin: 0;
  mix-blend-mode: multiply;
}
#visualizer.home .encounter-space figcaption {
  text-align: end;
  font-size: small;
}
#visualizer.home .encounter-space .left figcaption {
  text-align: start;
}
#visualizer.home .books {
  position: fixed;
  top: 1rem;
  right: 2.5rem;
  filter: brightness(0.5);
}

#visualizer.log {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  pointer-events: auto;
}
#visualizer.log img {
  display: inline;
}
#visualizer.log #tab {
  width: 30%;
  flex-direction: row;
  pointer-events: auto;
  height: fit-content;
  padding-right: 0;
}
#visualizer.log #tab .guestbook {
  width: 100%;
}
#visualizer.log #tab .guestbook input[type=text], #visualizer.log #tab .guestbook input[type=url], #visualizer.log #tab .guestbook textarea {
  background: var(--color-background);
  border: 1px solid var(--color-hard-shade);
  border-radius: 2px;
  margin-bottom: 2px;
  color: var(--color-hard-shade);
}
#visualizer.log #tab .guestbook input[type=submit] {
  color: var(--color-hard-shade);
  border: 1px solid var(--color-hard-shade);
  border-radius: 2px;
  cursor: pointer;
}
#visualizer.log #tab .guestbook input[type=submit]:hover {
  background-color: var(--color-hard-shade);
  color: var(--color-background);
}
#visualizer.log #tab .guestbook .form, #visualizer.log #tab .guestbook small {
  padding-right: 1rem;
}
#visualizer.log #tab .guestbook a {
  color: var(--color-hard-shade);
  text-decoration: underline 2px dotted var(--color-hard-shade);
}
#visualizer.log #tab .guestbook a:hover {
  text-decoration: none;
}
#visualizer.log #tab .guestbook .credits {
  text-align: right;
  border-bottom: 2pt dotted var(--color-light-shade);
  margin: 1rem 0 1rem;
  padding-bottom: 0.3em;
}
#visualizer.log #tab .guestbook .error {
  margin-top: 0.5em;
}

#visualizer::-webkit-scrollbar {
  display: none;
}

#visualizer.info {
  padding: 15px 15px 0 8px;
  display: flex;
  flex-direction: column;
}

#legend {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1em 0 0;
  width: 15%;
  margin: 15px 0 15px 15px;
  border-right: 1pt solid var(--color-light-shade);
}
#legend h1 {
  display: inline;
}
#legend header a {
  color: var(--color-dark-shade);
}
#legend .intro-text {
  margin-top: 0.5em;
}
#legend .intro-text h2 {
  padding-left: 1.2rem;
  margin-top: 1.2rem;
  font-family: var(--type-text-details);
}
#legend .intro-text li, #legend .intro-text h2 {
  font-size: 9pt;
}
#legend .intro-text ul {
  font-family: var(--type-text-details);
  padding-left: 0.2rem;
}
#legend .intro-text li a {
  cursor: pointer;
}
#legend .intro-text li::before {
  content: "⤷";
  margin-right: 5px;
}
#legend .intro-text p:first-of-type {
  margin-top: 0;
}
#legend .intro-text p {
  line-height: 1.1em;
}
#legend .intro-text a {
  cursor: context-menu;
  color: var(--color-hard-shade);
  background-color: var(--color-light-shade);
  padding: 1px 5px;
  border-radius: 2px;
}
#legend .intro-text a:hover {
  filter: invert(1);
}
#legend .intro-text .magic {
  color: var(--color-hard-shade);
  background-color: var(--color-light-shade);
  padding: 1px 5px;
  border-radius: 2px;
  cursor: help;
}
#legend .intro-text .magic:hover {
  filter: invert(1);
}
#legend .btn-sections-mobile {
  display: none;
}
#legend .sections {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  width: 15%;
  gap: 1em;
}
#legend .sections a {
  height: 1em;
  color: var(--color-light-shade);
}
#legend .sections a:hover {
  color: var(--color-dark-shade);
}
#legend .sections a::before {
  content: "/";
  font-weight: bold;
}
#legend .sections a:hover::before {
  content: "☀︎ /";
}
#legend p {
  margin: 0.5em 0;
  font-style: italic;
  display: inline-block;
}
#legend #legend__footer {
  display: flex;
  flex-direction: row;
  margin: 0 0 0 0;
  width: 100%;
  justify-content: flex-end;
}
#legend #legend__footer a {
  color: var(--color-dark-shade);
  transform: rotate(-90deg);
  position: absolute;
  bottom: 63px;
  left: -41px;
}
#legend #legend__footer p {
  cursor: pointer;
}
#legend #mi_nombre {
  color: var(--color-light-shade);
}
#legend #mi_nombre:hover {
  color: var(--color-hard-shade);
}
#legend #change-color-btn {
  cursor: pointer;
  appearance: none;
  background: var(--color-background);
  box-shadow: inset 1px 1px 5px var(--color-highlight);
  border: none;
  border-radius: 20px;
  color: var(--color-highlight);
  width: 10px;
  height: 10px;
}
#legend #change-color-btn:active {
  transform: translateY(0.5px) translateX(0.5px);
  box-shadow: inset 0px 0px 5px var(--color-highlight);
}
#legend #change-color-btn:hover {
  box-shadow: inset -1px -1px 5px var(--color-highlight);
}
#legend .radios, #legend .filters {
  padding: 0 0 0 0;
  font-size: 0.96em;
}
#legend .radios summary, #legend .filters summary {
  cursor: pointer;
}
#legend .radios input[type=checkbox], #legend .filters input[type=checkbox] {
  cursor: pointer;
}

#tab {
  position: sticky;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  top: 0;
  z-index: 1000;
  padding-bottom: 5px;
  padding-top: 16px;
  padding-right: 15px;
  background: var(--color-background);
  border-bottom: 2pt dotted var(--color-light-shade);
}
#tab h1 {
  display: inline;
  font-family: var(--type-text-body);
  font-style: italic;
  font-size: var(--font-size-h1);
  margin: 2px 0 0 14px;
}
#tab p {
  margin: 0.5em 0;
  font-style: italic;
  display: inline-block;
}
#tab .toggle_view {
  position: absolute;
}
#tab .active {
  color: var(--color-hard-shade);
  border-top: 3pt solid var(--color-hard-shade);
  padding: 14px 2px 0 2px;
}
#tab .inactive {
  color: var(--color-light-shade);
  cursor: pointer;
}
#tab .inactive:hover {
  color: var(--color-hard-shade);
}
#tab .radios, #tab .filters {
  padding: 0 0 0 0;
  width: 100%;
  font-size: 0.96em;
}
#tab .radios summary, #tab .filters summary {
  cursor: pointer;
}
#tab .radios input[type=checkbox], #tab .filters input[type=checkbox] {
  cursor: pointer;
}
#tab .filters summary {
  list-style-type: none;
}
#tab .filters details:last-child {
  margin-bottom: 10px;
}
#tab .filters .filters_container {
  display: grid;
  padding-left: 15px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  pointer-events: auto;
}
#tab .filters:hover > summary > h1 {
  color: var(--color-hard-shade);
}
#tab .radios {
  margin-bottom: 4px;
}
#tab .radios summary {
  list-style-type: "> ";
  color: var(--color-medium-shade);
  font-size: 0.5em;
}
#tab .radios summary:first-child:hover::before {
  content: none;
}
#tab .radios p {
  font-style: normal;
  text-transform: uppercase;
  font-family: var(--type-titles);
}
#tab .radios summary:first-of-type p {
  margin-bottom: 0;
  margin-top: 0.4em;
}
#tab .radios div {
  padding: 0;
}
#tab .radios[open] > summary {
  color: var(--color-medium-shade);
  list-style-type: "⌵ ";
}
#tab .filters[open] > summary > h1 {
  color: var(--color-hard-shade);
  border-top: 3pt solid var(--color-hard-shade);
  padding: 14px 2px 0 2px;
}
#tab .filters[open] > summary:hover {
  list-style-type: "";
}
#tab .media_checkbox,
#tab .formats_checkbox,
#tab .tool_checkbox,
#tab .role_checkbox,
#tab .context_checkbox {
  display: inline-block;
}

.visible {
  display: flex;
}

.hide {
  display: none;
}

#index {
  display: none;
  width: 100%;
}
#index > details:first-of-type {
  padding-top: 7px;
}
#index .article {
  display: block;
}
#index details {
  padding: 10px 15px 7px 12px;
  border-bottom: 1pt solid var(--color-hard-shade);
  cursor: pointer;
}
#index details summary:before {
  font-family: "Courier New", Courier, monospace;
  content: "▶";
}
#index details[open] summary:before {
  content: "▼";
  cursor: pointer;
}
#index details:hover {
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, var(--color-medium-shade) 0, var(--color-light-shade) 5px, var(--color-background) 10px);
}
#index details:hover .article_tab h2 {
  color: var(--color-hard-shade);
}
#index details:hover .Website {
  color: #3498db;
}
#index details:hover .Garments {
  color: #1f43d3;
}
#index details:hover .Web-to-print {
  color: #2ecc71;
}
#index details:hover .Zine {
  color: #9b59b6;
}
#index details:hover .Cards {
  color: #f1c40f;
}
#index details:hover .Server {
  color: #34495e;
}
#index details:hover .Game {
  color: #e62c22;
}
#index details:hover .Book {
  color: #633a0a;
}
#index details:hover .Installation {
  color: #8e44ad;
}
#index details:hover .Exhibition {
  color: #eb89ee;
}
#index details:hover .Event {
  color: #46bea6;
}
#index details:hover .Workshop {
  color: #ae2b27;
}
#index details:hover .Calendar {
  color: green;
}
#index details:hover .Pdf {
  color: snow;
}
#index details:hover .Placemat {
  color: midnightblue;
}
#index details:hover .Sticker {
  color: aqua;
}
#index details:hover .Poster {
  color: red;
}
#index details:hover .Cassette {
  color: gray;
}
#index details:hover .Post {
  color: pink;
}
#index details[open] {
  background: linear-gradient(90deg, var(--color-medium-shade) 0, var(--color-light-shade) 5px, var(--color-background) 10px);
  cursor: auto;
}
#index details[open] .article_tab h2 {
  color: var(--color-light-shade);
}
#index details[open] .Website {
  color: #3498db;
}
#index details[open] .Garments {
  color: #1f43d3;
}
#index details[open] .Web-to-print {
  color: #2ecc71;
}
#index details[open] .Zine {
  color: #9b59b6;
}
#index details[open] .Cards {
  color: #f1c40f;
}
#index details[open] .Server {
  color: #34495e;
}
#index details[open] .Game {
  color: #e62c22;
}
#index details[open] .Book {
  color: #633a0a;
}
#index details[open] .Installation {
  color: #8e44ad;
}
#index details[open] .Exhibition {
  color: #eb89ee;
}
#index details[open] .Event {
  color: #46bea6;
}
#index details[open] .Workshop {
  color: #ae2b27;
}
#index details[open] .Calendar {
  color: green;
}
#index details[open] .Pdf {
  color: snow;
}
#index details[open] .Placemat {
  color: midnightblue;
}
#index details[open] .Sticker {
  color: aqua;
}
#index details[open] .Poster {
  color: red;
}
#index details[open] .Cassette {
  color: gray;
}
#index details[open] .Post {
  color: pink;
}
#index .img_details {
  position: sticky;
  left: 0;
}

#grid {
  width: 100%;
  overflow-x: hidden;
}
#grid .board {
  width: calc(100% - 1rem);
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
  column-gap: 55px;
  padding: 0.5rem;
  justify-content: space-around;
  align-items: baseline;
}
#grid .article {
  height: fit-content;
  flex-direction: column;
  align-items: center;
}
#grid .article .project {
  height: fit-content;
  min-height: unset;
  min-width: unset;
  width: fit-content;
  padding: 0px;
  margin: 0px;
}
#grid .article .article_sentence {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 0.7em;
}
#grid .description {
  display: none;
}
#grid .images {
  width: fit-content;
  height: fit-content;
  margin: 0;
  padding: 0;
}
#grid .images h2 {
  display: none;
}
#grid .images ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: inherit;
  height: inherit;
  position: relative;
  top: 0;
  left: 0px;
  padding: 0;
  margin: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#grid .images ul::-webkit-scrollbar {
  display: none;
}
#grid .images li {
  display: none;
  margin-right: 50px;
  align-items: center;
  margin-right: 0;
  padding: 0;
}
#grid .images li::before {
  content: none;
}
#grid .images li:first-child {
  display: block;
}
#grid .images li:hover img {
  filter: none !important;
}
#grid .images .magnifier {
  display: none;
}

#zoom-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(20px);
  z-index: 1000;
  flex-direction: row;
}
#zoom-viewer h2 {
  display: none;
}
#zoom-viewer ul {
  padding: 0;
  margin: 0;
}
#zoom-viewer .close_btn {
  position: absolute;
  right: 12px;
  top: 10px;
  border: none;
  background-color: unset;
  width: 19px;
  height: 19px;
  overflow: hidden;
  z-index: 15;
  cursor: pointer;
}
#zoom-viewer .close_btn:hover::before {
  background: var(--color-hard-shade);
}
#zoom-viewer .close_btn:hover::after {
  background: var(--color-hard-shade);
}
#zoom-viewer .close_btn::before, #zoom-viewer .close_btn::after {
  content: "";
  position: absolute;
  border-radius: 2px;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: var(--color-medium-shade);
}
#zoom-viewer .close_btn::before {
  transform: rotate(45deg);
}
#zoom-viewer .close_btn::after {
  transform: rotate(-45deg);
}
#zoom-viewer .images {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  height: 100%;
}
#zoom-viewer .images ul:first-of-type {
  width: calc(100% - 4em);
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 6em;
  justify-content: center;
  align-items: center;
  padding: 5em 2em 5em 2em;
  overflow-y: scroll;
}
#zoom-viewer .images ul:first-of-type li:first-of-type {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
}
#zoom-viewer .images .counter {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: var(--type-titles);
  margin: 1em;
  font-size: large;
}
#zoom-viewer .card_details {
  width: 20%;
  height: 100%;
  background-color: var(--color-background);
  border-radius: 2px;
  margin-top: 15px;
  padding: 15px;
  order: 2;
}
#zoom-viewer .card_details li:before {
  content: "⤷";
  padding-right: 5px;
  font-size: 0.8em;
}
#zoom-viewer .img_details {
  font-size: larger;
  font-family: var(--type-titles);
  border-bottom: 2pt dotted var(--color-light-shade);
  padding-bottom: 0.3em;
}
#zoom-viewer .x-small {
  width: calc(106px * var(--zoom-variable));
  --long: calc(106px * var(--zoom-variable));
}
#zoom-viewer .small {
  width: calc(150px * var(--zoom-variable));
  --long: calc(150px * var(--zoom-variable));
}
#zoom-viewer .medium {
  width: calc(210px * var(--zoom-variable));
  --long: calc(210px * var(--zoom-variable));
}
#zoom-viewer .large {
  width: calc(297px * var(--zoom-variable));
  --long: calc(297px * var(--zoom-variable));
}
#zoom-viewer .x-large {
  width: calc(420px * var(--zoom-variable));
  --long: calc(420px * var(--zoom-variable));
}
#zoom-viewer .vertical {
  height: var(--long);
  width: calc(var(--long) / 1.414);
}
#zoom-viewer .horizontal {
  width: var(--long);
  height: calc(var(--long) / 1.414);
}

#timeline {
  padding: 15px;
  width: 70%;
}
#timeline .page_tab {
  padding-left: 25px;
}
#timeline .page_content {
  padding-left: 50px;
}

#info {
  width: 50%;
  padding: 7% 25% 7% 25%;
}

#CV {
  width: 50%;
  padding: 7% 25% 7% 25%;
  border-top: 1pt solid;
  pointer-events: auto;
  font-family: var(--type-text-details);
  font-size: 9pt;
}
#CV .article_content ul, #CV .article_content li {
  font-size: 1em;
  list-style-type: disc;
}
#CV .article_content h1 {
  margin-bottom: 5px;
}
#CV .article_content h2 {
  margin-top: 15px;
  color: var(--color-hard-shade);
  font-family: var(--type-text-details);
  font-weight: bold;
}
#CV .article_content a {
  color: var(--color-hard-shade);
  font-family: var(--type-text-body);
  font-style: italic;
}

#content {
  padding: 15px;
  background: linear-gradient(90deg, var(--color-medium-shade) 0, var(--color-light-shade) 5px, var(--color-background) 10px);
}

#site-title {
  padding-right: 14px;
  border-right: 1pt solid var(--color-hard-shade);
}

#site-title:hover {
  color: var(--color-hard-shade);
}

.article .article_tab {
  cursor: pointer;
}
.article .article_tab {
  display: flex;
  list-style: none;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.article .article_tab h2 {
  font-family: var(--type-text-body);
  color: var(--color-light-shade);
  font-style: italic;
  font-size: 0.8em;
  text-transform: lowercase;
  margin-bottom: 13px;
  font-weight: 100;
}
.article li:before {
  content: "⤷";
  padding-right: 5px;
  font-size: 0.8em;
}
.article li a:hover {
  font-style: italic;
  font-size: 1.05em;
}
.article .article_footer {
  display: grid;
  width: 100%;
  grid-template-columns: 3fr 3fr 3fr 3fr 3fr 20fr 1.5fr;
}
.article .article_footer li {
  color: var(--color-medium-shade);
  text-decoration: none;
  font-size: 0.8em;
}
.article .article_footer a {
  color: var(--color-medium-shade);
  text-decoration: none;
}
.article .article_footer li:hover {
  color: var(--color-hard-shade);
}
.article .article_footer li:hover a {
  color: var(--color-hard-shade);
}
.article h2 {
  font-size: 0.3em;
  text-transform: uppercase;
  font-family: var(--type-titles);
  color: var(--color-medium-shade);
  font-weight: 400;
}
.article .project {
  display: flex;
  justify-content: space-between;
  min-height: 60vh;
  margin: 8px 0 0 0;
}
.article .project .description {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 30%;
}
.article .project .description h2 {
  margin: 0.8em 0;
}
.article .project .description h2:first-of-type {
  margin-top: 0;
}
.article .project .description p:first-of-type {
  text-indent: 0;
}
.article .project .description p {
  font-size: 0.9em;
  padding: 0 40px 0 20px;
  margin: 0;
  text-indent: 20px;
  text-wrap: pretty;
}
.article .project .description p:has(em) {
  margin: 0.5em 0;
}
.article .project a {
  color: var(--color-hard-shade);
}
.article .project .images {
  width: 70%;
  height: 550px;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.article .project .images h2 {
  position: sticky;
  left: 0;
}
.article .project .images ul {
  display: flex;
  flex-direction: row;
  width: max-content;
  height: 80%;
  align-items: center;
}
.article .project .images li {
  margin-right: 50px;
  display: flex;
  align-items: center;
  cursor: zoom-in;
}
.article .project .images li br {
  display: none;
}
.article .project .images li::before {
  content: none;
}
.article .project .images li:has(img.website) {
  background-image: url("/images/frames/browser-tab.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #bfbfbf;
  display: inline-block;
  position: relative;
  border-radius: 5px;
}
.article .project .images li:has(img.website) img.website {
  display: block;
  height: auto;
  border: none;
  padding-top: 20px;
}
.article .project .images img {
  border-radius: 2px;
}
.article .project .images .img_details {
  display: none;
  flex-direction: row;
  justify-content: space-between;
}
.article .project .images .counter {
  font-family: var(--type-titles);
  font-size: calc(var(--font-size-body) - 0.1rem);
  color: var(--color-light-shade);
  order: 2;
}
.article .project .images::-webkit-scrollbar {
  display: none;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--type-titles);
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: normal;
}

h2 {
  font-family: var(--type-titles);
  font-size: var(--font-size-h2);
}

h3, h4 {
  color: var(--color-hard-shade);
  font-size: var(--font-size-h3);
}

time {
  color: var(--color-hard-shade);
}

img {
  border: none;
  display: block;
  width: 100%;
  height: auto;
  filter: blur(5px);
  transition: filter 0.2s ease;
}

img.loaded {
  filter: blur(0);
}

/* A7: x-small, A6: small, A5: medium, A4: large, A3:x-large */
.x-small {
  width: 106px;
  --long: 106px;
}

.small {
  width: 150px;
  --long: 150px;
}

.medium {
  width: 210px;
  --long: 210px;
}

.large {
  width: 297px;
  --long: 297px;
}

.x-large {
  width: 420px;
  --long: 420px;
}

.vertical {
  height: var(--long);
  width: calc(var(--long) / 1.414);
}

.horizontal {
  width: var(--long);
  height: calc(var(--long) / 1.414);
}

.vertical img,
.horizontal img {
  aspect-ratio: 1/1.414; /* √2 ratio for A-series */
}

blockquote {
  border-left: 1px solid var(--color-medium-shade);
  margin: 0;
  padding: 0 12px;
}

p {
  line-height: auto;
  margin: 0.5em 0;
  text-indent: 0;
}
p.caption {
  font-size: 80%;
  margin-top: 0;
}

a {
  color: var(--color-light-shade);
  text-decoration: none;
}
a:hover {
  color: var(--color-hard-shade);
  cursor: pointer;
}

ul, ol {
  margin: 0;
  padding: 0 0 0.5em 20px;
  font-size: 0.9em;
  list-style: none;
}

ul li, ol li {
  line-height: 1em;
  padding: 3px 0 0 0;
  list-style-type: none;
}

strong {
  color: var(--color-hard-shade);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: bold;
}

tt, pre {
  background-color: var(--color-background);
  font-family: Inconsolata, Monaco, monospace;
  line-height: 1.2em;
}

footer {
  position: fixed;
  bottom: 5px;
  right: 7px;
  color: var(--color-hard-shade);
  font-family: var(--type-text-details);
  font-size: 9pt;
}
footer p {
  margin-right: 0.5em;
}
footer li {
  display: inline;
}
footer a {
  color: var(--color-medium-shade);
  text-decoration: none;
  border-bottom: none;
  font-style: italic;
  font-family: var(--type-text-body);
  font-size: larger;
}

@media (max-width: 1200px) {
  #legend {
    width: 20%;
  }
  #visualizer {
    width: 80%;
  }
  #legend .sections {
    width: 20%;
  }
  #info {
    width: 80%;
  }
  #CV {
    column-count: 2;
  }
  .article .project {
    flex-direction: column;
  }
  .article .project .description {
    width: 100%;
    order: 2;
  }
  .article .project .description p {
    padding: 0 20px;
  }
  .article .project .images {
    width: 100%;
    order: 1;
    height: 450px;
  }
}
@media (max-width: 768px) {
  body {
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    font-size: 1.2em;
  }
  #legend {
    width: 100%;
    border-right: none;
    border-bottom: 1pt solid var(--color-hard-shade);
    margin: 0 0 0 0;
    padding: 0 0 24px 0;
  }
  #legend .intro-text {
    margin: 87px 10% 0 10%;
    width: 80%;
  }
  #legend header {
    position: fixed;
    padding: 15px 100px 9.5px 15px;
    background-color: var(--color-background);
    border-bottom: 1pt solid var(--color-hard-shade);
    z-index: 1000;
    width: calc(100% - 115px);
  }
  #legend .btn-sections-mobile {
    display: block;
    position: fixed;
    top: 0;
    right: 17px;
    padding: 20.5px 15px 12px 15px;
    color: var(--color-light-shade);
    z-index: 1000;
    width: 46.96px;
    font-weight: bold;
    margin: 0 auto;
  }
  #legend .sections {
    display: none;
    position: fixed;
    top: 53px;
    right: 17px;
    transform: none;
    width: fit-content;
    flex-wrap: wrap;
    justify-content: end;
    gap: 1em;
    padding: 17.5px 15px 12px 15px;
    z-index: 1001;
    background-color: var(--color-background);
    border-top: none;
    border: 1pt solid var(--color-hard-shade);
    border-top: 0;
  }
  #legend #legend__footer {
    margin-top: 1rem;
    justify-content: center;
  }
  #legend #legend__footer a {
    display: none;
  }
  #visualizer {
    width: 100%;
    overflow-y: visible;
  }
  #visualizer .category_list {
    margin-top: 0;
  }
  #visualizer.home .books {
    position: relative;
    bottom: 1rem;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    right: 0;
  }
  #visualizer .article .article_sentence {
    margin-top: 0.3em;
  }
  #visualizer .article .project .images .img_details {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  #visualizer .article .project .images .img_details .counter {
    margin-top: 0.5em;
  }
  #visualizer.info {
    padding: 0;
  }
  #visualizer.log {
    flex-direction: column;
  }
  #visualizer.log #tab {
    width: calc(100% - 15px);
  }
  #tab {
    padding: 7px 15px;
    width: calc(100% - 30px);
    position: sticky;
    top: 45.5px;
  }
  #tab .active {
    border: none;
    padding: 2px 0 2px 10px;
  }
  #tab .filters .filters_container {
    grid-template-columns: 1fr 1fr;
  }
  #info {
    width: 80%;
    padding: 7% 10%;
  }
  #CV {
    column-count: 1;
  }
  #grid .images .small .vertical, #grid .images .medium .vertical, #grid .images .large .vertical {
    height: auto;
    max-height: 250px;
  }
  .article .project .images {
    height: 350px;
  }
  .article .project .images img {
    height: auto;
    max-height: 80%;
  }
}
@media (max-width: 480px) {
  #tab {
    padding: 7px 15px;
    width: calc(100% - 30px);
  }
  #tab h1 {
    margin: 2px 2px 5px 0;
  }
  #tab .filters[open] > summary > h1 {
    border: none;
    padding: 2px 0 2px 10px;
  }
  #tab .filters .filters_container {
    grid-template-columns: 1fr;
    padding-left: 10px;
  }
  #index details {
    padding: 10px 10px 7px 10px;
  }
  .article .article_footer {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
  }
  .article .project {
    min-height: auto;
  }
  .article .project .images {
    height: 250px;
  }
  .article .project .images .small .vertical, .article .project .images .medium .vertical, .article .project .images .large .vertical {
    height: auto;
    max-height: 200px;
  }
  .article .project .images .website {
    width: 400px;
  }
  .article .project .images .x-large.horizontal {
    max-width: 100%;
  }
  #grid .board {
    gap: 50px;
    margin-top: 20px;
  }
  footer {
    position: relative;
    padding: 0px;
    width: 100%;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
  }
  footer p {
    text-align: center;
    width: 70%;
  }
}
@media (max-width: 320px) {
  .article .project .images {
    height: 180px;
  }
  #legend {
    padding: 0 10px 10px 10px;
  }
}
@media (max-height: 700px) {
  .article .project {
    min-height: 70vh;
  }
}
@media (max-height: 500px) {
  .article .project {
    min-height: auto;
  }
  .article .project .images {
    height: 250px;
  }
}
@media print {
  /* to be defined */
}

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