/* === === === === === #nav-links & post-nav === === === === === */

.post-nav {
  --clr_link: var(--clr_post_nav);
  --clr_link_hover: var(--clr_link_hover_em);
}
.post-nav > * {
  position: fixed;
  bottom: 34vh;
  z-index: 11;
}
.next-post {
  left: 1vw;
}
.prev-post {
  right: 1vw;
}
.next-post a i,
.prev-post a i {
  font-size: var(--fs_postnav);
}
.post-nav a {
  transform: scale(1);
  transition: transform 250ms ease-in-out;
}
.post-nav a:hover,
.post-nav a:focus {
  transform: scale(1.2);
  outline: 0;
}
.post-nav a:focus {
  outline: 0;
}
.down-post {
  position: absolute;
  bottom: 2vh;
  right: 0;
  left: 0;
  z-index: 99999;
  text-align: center;
  cursor: pointer;
}
.down-post i {
  font-size: calc(1rem + 1vw);
  color: #fff;
}
.down-post i:hover {
  color: var(--clr_link_hover);
}
.down-post.posa i {
  font-size: calc(1rem + 1vw);
  color: var(--clr_link);
}
.down-post.posa i:hover {
  color: var(--clr_link_hover);
}
.nav-links {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
  animation-iteration-count: 2;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
/* === === === === === ## SEARCHBAR & inputs == === === === === */

#search {
  width: auto;
  height: 45px;
  margin: 0;
  padding: 0;
  text-align: right;
  cursor: pointer;
}
.scrollhide-nav {
  width: auto;
  position: fixed;
  right: 45px;
  top: 0;
  transition: -webkit-transform 1s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 1s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 1s cubic-bezier(0.86, 0, 0.07, 1),
    -webkit-transform 1s cubic-bezier(0.86, 0, 0.07, 1);
  z-index: 999;
}
.scrollhide-nav.hidden {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
/* @ Search Form */
.searchfield {
  border-radius: 3px;
  height: 23px;
  padding: 5px 5px 5px 12px;
  margin: 1rem;
  cursor: default;
  line-height: 1.2em;
  transition: all 0.7s;
  text-indent: 15px;
  box-sizing: border-box;
  width: 50ch;
}
fieldset {
  border: 0;
}
section.no-results form,
section.error-404 form {
  margin: 2rem 0;
}
.searchform {
  position: relative;
  width: 190px;
  margin: 3px 0 3px 0;
  display: inline-block;
}
.btn-search {
  color: var(--clr_post_nav);
  width: 45px;
  height: 45px;
  text-align: center;
}
.home .btn-search {
  color: var(--clr_search_button);
}
.btn-search:hover {
  cursor: pointer;
  opacity: 0.6;
}
.searchfield {
  border-radius: 3px;
  height: 23px;
  padding: 5px 5px 5px 12px;
  margin: 0;
  cursor: default;
  line-height: 1.2em;
  transition: all 0.7s;
  text-indent: 15px;
  box-sizing: border-box;
  width: 100%;
}
.searchfield:focus {
  cursor: text;
  box-shadow: none;
  background-color: #fff;
  color: #000;
}
#searchform {
  height: 45px;
  width: 45px;
  line-height: 45px;
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  vertical-align: top;
  font-size: var(--fs_icon);
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  -ms-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
#searchform.has-focus {
  width: calc(100vw - 45px);
  background-color: var(--clr_bg);
}
@media (min-width: 768px) {
}
#masthead #searchform fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
#searchform input {
  vertical-align: top;
  margin: 0;
  font-family: var(--ff_title);
  border: none;
  height: 45px;
  width: 0;
  padding: 0;
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  -ms-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
  border-radius: 0;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.8);
}
#searchform focus {
  box-shadow: none;
}
#searchform.has-focus input,
#searchform input:focus {
  width: calc(100% - 45px);
}
#searchform.has-focus .btn-search {
  color: var(--clr_link);
}
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  display: inline-block;
  height: 32.55px;
  padding: 4px 6px;
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 21.7px;
  color: #555;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
input,
textarea,
.uneditable-input,
.add-on {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
input {
  width: 220px;
}
textarea {
  width: 100%;
  height: auto;
}
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(82, 168, 236, 0.6);
}
/* === === === === === search results etc == === === === === */

section.error-404,
section.not-found {
  background-color: var(--clr_bg);
  position: relative;
  z-index: -1;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  place-content: center;
  text-align: center;
}
.not-found p {
  color: var(--clr_text);
  font-size: 1.6rem;
  font-family: var(--ff_body);
  margin-top: 2rem;
}

/* === === === === === footer == === === === === */
.home footer {
  margin-top: 0;
}
footer a {
  color: var(--clr_link_alt);
}
footer a:hover,
footer a:active {
  color: var(--clr_text);
}
footer a {
  transform: scale(1);
  transition: transform 250ms ease-in-out;
  text-decoration: none;
}
footer a:hover,
footer a:focus {
  transform: scale(1.2);
  outline: 0;
  text-decoration: none;
}
footer .legal-list a:hover,
footer .legal-list a:focus {
  transform: none;
  color: var(--clr_link_hover_em);
}
footer {
  margin: 4rem 0 0 0;
  padding: 4rem 0;
}
footer ul {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 0;
  list-style: none;
  -webkit-margin-start: 0;
  -webkit-padding-start: 0;
  -moz-padding-start: 0;
}
footer ul li {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  justify-items: center;
  flex-direction: column;
  margin: 1rem;
}
footer ul li:nth-child(1) {
  grid-column: 2 / 7;
  grid-row: 1;
}
footer ul li.uniarts,
footer ul li.uniarts-nega {
  grid-column: 2 / 7;
  grid-row: 3;
}
footer ul li.foot-credits {
  grid-column: 2 / 7;
  grid-row: 2;
}
.legal-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 1rem;
}
.legal-list li {
  flex-direction: row;
}
@media (min-width: 768px) {
  footer ul {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 20px;
  }
  footer ul li {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
  }
  footer ul li:nth-child(1) {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
  }
  footer ul li.uniarts,
  footer ul li.uniarts-nega {
    grid-column: 5 / 7;
    grid-row: 1 / 2;
  }
  footer ul li.foot-credits {
    grid-column: 2 / 7;
    grid-row: 2 / 3;
  }
  .legal-list {
    flex-direction: row;
  }
  .legal__privacy::before {
    content: "|";
    padding-right: 1em;
  }
}
section.divider,
footer {
  border-top: 1px solid var(--clr_link);
  border-top-style: dashed;
}
/*--------------------------------------------------------------
## nivel PUBLICATION SERIES
--------------------------------------------------------------*/
div.cover.uni-x {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
div.uniarts {
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("pix/uniarts.png");
  z-index: 33;
}
.cover-bits {
  top: 10%;
  width: 90%;
  left: 5%;
  position: absolute;
}
div.cover-meta {
  width: 30ch;
  height: 15em;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding: 2em;
}

div.cover-meta span {
  font-family: var(--ff_alt);
  font-size-adjust: 0.5;
  font-weight: normal;
  font-style: normal;
  display: block;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0.2em;
}
div.cover-meta span.sarja {
  padding-top: 0;
  margin-top: -0.5em;
}
.cover-meta span.nro {
  font-size: 5.5em;
  padding-bottom: 0.25em;
  letter-spacing: -0.05em;
  border-bottom: 2px var(--clr_link) solid;
  padding-bottom: 0.4em;
}

.cover-meta span.year {
  font-size: 1.5em;
  padding-top: 0.2em;
}

.cover-meta {
  text-align: center;
  line-height: 1em;
  color: var(--clr_link);
}
.foot-credits {
  text-align: center;
  margin-top: 5%;
  color: var(--clr_link);
}
.foot-credits span {
  line-height: 1.4em;
  display: block;
}
.foot-credits span em {
  font-style: normal;
  display: block;
}
.foot-credits span em::before {
  content: "";
  padding: 0 0.8em;
}
@media (min-width: 767px) {
  footer div.nivel {
    padding-bottom: 15%;
  }

  .foot-credits span em {
    display: inline;
  }

  .foot-credits span em::before {
    content: "|";
    padding-right: 0.8em;
  }
}

/* footer .cover-meta:hover {
    color: var(--clr_link_hover);
}
footer .cover-meta:hover span.nro {
    border-bottom-color: var(--clr_link_hover);
}


#footer a, #footer li h5 a, #footer {
    font-family: var(--ff_alt);
    font-size-adjust:0.5; 
    font-weight:normal; 
    font-style:normal;	
} */
/* #footer a:hover, #footer li h5 a:hover {
    color:var(--clr_link);
}
#footer {
     background: var(--clr_bg);
} */

/* ================ details-haitari + toc-loops  ============================== */

details {
  padding: 2rem 1rem;
  margin: 0;
  border-top: 1px dashed #999;
  height: auto;
  transition: all 0.5s ease-in-out;
}
details[open] {
  transition: all 1s ease;
}
summary:focus {
  outline: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "\f0ab";
  font-family: var(--ff_icon);
  font-weight: 300;
  display: inline-flex;
}
details[open] summary:before {
  content: "\f0aa";
}
summary {
  position: relative;
  list-style: none;
  padding-left: calc(1.75rem + 0.75rem + 0.75rem);
}
details p,
article details li,
.toc-list li {
  padding-left: calc(1.75rem + 0.75rem + 0.75rem);
  padding-block: 4px;
}
details div figure,
details div figcaption {
  margin-top: 1em !important;
}
.toc-body summary:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "\f078";
  font-family: var(--ff_icon);
  display: inline-flex;
}
.toc-body details[open] summary:before {
  content: "\f077";
}
details.toc-item ul {
  padding-top: 2rem;
  padding-inline-start: 0;
  list-style-position: inside;
  font-family: var(--ff_body);
  list-style-type: none;
  font-size: 1.2rem;
}
article details li::before {
  content: "\2013";
  padding-right: 0.5em;
}
details:not(.toc-item) {
  border-bottom: 1px dashed #999;
}
details[open] div {
  padding-top: 1rem;
}
details div * + * {
  margin-top: 0.75em;
}
details summary > * {
  display: inline;
}
@supports not (-ms-ime-align: auto) {
  details summary {
    cursor: pointer;
  }
  details summary > * {
    display: inline;
  }
}
details[open] {
  background-color: var(--clr_bg_sec);
  transition: all 1s ease;
}
details.toc-item[open] {
  background-color: var(--clr_bg);
}
summary {
  list-style: none;
  font-size: var(--fs-1);
  line-height: 1em;
  font-family: var(--ff_display);
}
summary,
details p {
  margin-left: 0;
}
summary:focus {
  outline: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary:before {
  position: absolute;
  left: 0;
  content: "\f067";
  font-family: var(--ff_icon);
  font-weight: 300;
  display: inline-flex;
}
details[open] summary:before {
  content: "\f068";
}
details ul,
details ol {
  list-style: none;
  margin-block-end: 0;
  margin-block-start: 0;
  padding-inline-start: 0;
  font-family: var(--ff_body);
}
.toc-subloop > h2 {
  padding-left: calc(1.75rem + 0.75rem + 0.75rem + 1rem);
  padding-block: 2rem;
  border-top: 1px dashed #999;
}
/* details:last-child, .toc-subloop li:last-child { 
    border-bottom: 1px dashed #999;
} */
.toc-list {
  padding-inline-start: 0;
}
.toc-list li {
  padding: 2rem 1rem;
  margin: 0;
  border-top: 1px dashed #999;
}
.toc-list a {
  font-family: var(--ff_title);
  font-size: var(--fs-0);
  font-weight: 700;
}
h2.toc-title {
  /* font-size:1.6rem; */
  font-size: var(--fs_medium);
}
.single article h3.toc-title {
  font-size: var(--fs_body);
  margin: 0;
}
.toc-body summary:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "\f078";
  font-family: var(--ff_icon);
  display: inline-flex;
}
.toc-body details[open] summary:before {
  content: "\f077";
}
.toc-loop ul {
  margin-left: calc(1.75rem + 0.75rem + 0.75rem);
  padding-left: 0;
}
.toc-loop ul li {
  margin: 1em 0 0.5em;
  padding-left: 0;
}

/* ====================== #KUVAT  ============================== */
.wp-block-image img {
  mix-blend-mode: multiply;
}
.article-body > figure {
  grid-column: var(--col_all);
  align-items: end;
  margin: 1.5rem 0;
  padding: 0;
}
.article-body > figure > * {
  grid-column: var(--col_art_body);
}
figure.tall,
figure.small,
figure.narrow {
  grid-column: 4;
  display: flex;
  flex-direction: column;
}
figure.wide img {
  justify-self: end;
}
@media (min-width: 75em) {
  /* 75 */
  .article-body figure {
    margin: 1.5rem 0;
    padding: 0;
  }
  .article-body > figure a,
  .article-body > figure img {
    grid-column: var(--col_art_body);
  }
  .article-body > figure figcaption {
    grid-column: 5 / 7;
  }
  .article-body > figure.wide a,
  .article-body > figure.wide img {
    grid-column: 3 / 5;
  }
  .article-body > figure.wide figcaption {
    grid-column: 5 / 7;
  }
}
@media (min-width: 48em) {
  figure.tall,
  figure.small,
  figure.narrow {
    display: grid;
    grid-template-columns: 65% 1fr;
    grid-gap: 1rem;
  }
  figure.tall a,
  figure.tall > img,
  figure.small a,
  figure.small > img,
  figure.narrow a,
  figure.narrow > img {
    grid-column: 1;
  }
  figure.tall figcaption,
  figure.small figcaption,
  figure.narrow figcaption {
    grid-column: 2;
  }
  figure.narrow {
    grid-template-columns: auto 1fr;
  }
}
@media (min-width: 64em) {
  article .wp-block-group.fig {
    display: grid;
    grid-column: var(--col_all);
    grid-template-columns: var(--grid_article);
  }
  .fig .wp-block-group__inner-container {
    display: grid;
    grid-column: var(--col_margins);
    grid-column-gap: var(--gb_colgap);
  }

  .fig figure > a {
    z-index: 2;
  }
  .fig figcaption a {
    position: relative;
    z-index: 9;
  }
  /*  ----- responsive 2cols ----------  */
  .rcol2 .wp-block-group__inner-container {
    grid-template-columns: 2fr 3fr 3fr 2fr;
  }
  .rcol2 .wp-block-group__inner-container {
    max-height: 50vh;
  }
  .rcol2 figure {
    grid-column: var(--col_all);
    grid-row: 1;
    display: grid;
    grid-template-columns: var(--grid_rcol2);
    grid-column-gap: var(--gb_colgap);
  }
  .rcol2 figcaption {
    grid-row: 1;
    align-self: end;
  }
  .rcol2 figure:nth-child(1) figcaption {
    grid-column: 1;
  }
  .rcol2 figure:nth-child(2) a {
    grid-column: 3;
    grid-row: 1;
  }
  .rcol2 figure:nth-child(2) figcaption {
    grid-column: 4;
  }
  .rcol2 figure {
    margin: 0;
    padding: 0;
  }
  .rcol2 figure a {
    max-height: 50vh;
  }
  .rcol2 img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
  }
  .rcol2 figcaption {
    max-width: 50ch;
  }

  /*  -----  2cols ----------  */
  .col2 .wp-block-group__inner-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content max-content;
  }
  /* .col2 .wp-block-group__inner-container {
        max-height: 50vh;
    } */
  .col2 figure {
    grid-column: var(--col_all);
    grid-row: 1 /-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content max-content;
    grid-column-gap: var(--gb_colgap);
    grid-row-gap: var(--gb_rowgap);
    align-content: end;
  }
  .col2 figcaption {
    grid-row: 2;
  }
  .col2 figure:nth-child(1) > * {
    grid-column: 1;
    justify-self: end;
  }
  .col2 figure:nth-child(1) a {
    justify-self: end;
    align-self: end;
  }
  .col2 figure:nth-child(2) > * {
    grid-column: 2;
    justify-self: start;
    align-self: end;
  }
  /* .col2 figure {
        margin:0;
        padding:0;
    }
    .col2 figure a {
        max-height: 50vh;
        z-index: 2;
    }
    .col2 img {
        width:100%;
        height: 50vh;
        object-fit: cover;
    } */
  .col2 figcaption {
    max-width: 60ch;
  }

  /*  -----  3cols ----------  */
  .col3 .wp-block-group__inner-container {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: max-content max-content;
  }
  .col3 figure {
    grid-column: var(--col_all);
    grid-row: 1 /-1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: max-content max-content;
    grid-column-gap: var(--gb_colgap);
    grid-row-gap: var(--gb_rowgap);
    /* align-content: end; */
  }
  .col3 figcaption {
    grid-row: 2;
  }
  .col3 figure:nth-child(1) > * {
    grid-column: 1;
  }
  .col3 figure:nth-child(1) a {
    justify-self: end;
    align-self: end;
  }
  .col3 figure:nth-child(2) > * {
    grid-column: 2;
    justify-self: start;
  }
  .col3 figure:nth-child(2) > a {
    align-self: end;
  }
  .col3 figure:nth-child(3) > * {
    grid-column: 3;
    justify-self: start;
    align-self: end;
  }
  .col3 figure:nth-child(3) > figcaption {
    align-self: start;
  }
}

/*  -----  FLEX fig ----------  */

  .flexfig .wp-block-group__inner-container {
    display: flex;
    flex-flow: var(--flex_direction);
  }
  .fig.aic .wp-block-group__inner-container {
    align-items: center;
  }
  .flexfig figure {
    display: flex;
    flex-flow: column;
    gap: 1rem;
  }
figcaption {
  text-align: left !important;
  font-size: 0.8em !important;
  margin: 0 !important;
  /* min-height: 3rem; */
}
#cover figcaption {
    width: 100%;
    height: auto;
    right: 0;
    bottom: 0;
    font-size: 0.8em;
    padding: 8px 16px 8px 8px;
    background:rgba(0,0,0,0.6);
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    -ms-box-sizing: border-box !important;
    box-sizing: border-box !important;
  }
#cover figcaption  {
    position:absolute;
    font-family: "Monosten A", Courier, monospace;
	  font-weight: normal;
	  font-style: normal;
	  line-height: 1.1em;
    color: #FFF;
    text-transform: none;
    transition: all 0.3s linear 0s;
    z-index: 1;
  }
#cover figcaption span.credit, article figcaption span, article figcaption b {
    font-size:0.8em;
    text-transform: uppercase;
    font-weight: normal;
  }
article figcaption span, article figcaption b {
    display: block;
    padding-top: 0.4em;
  }
#cover figcaption span.credit::before {
    content: "\f030";
    font-family: var(--ff_icon);
    padding:0 1em;
  }
  article figcaption span::before {
    content: "\f030";
    font-family: var(--ff_icon);
    padding-right: 0.5rem;
  }
@media (min-width: 800px) {
         #cover figcaption {
            width: 35%;
            font-size: 1em;
            padding: 16px 32px 16px 16px;
          }
        }

@media print {
  header,
  button,
  nav,
  footer {
    display: none;
  }
}

.boxed {
  border: 1px solid var(--clr_text);
  padding: 1rem;
}
.boxed p {
  font-family: var(--ff_alt);
  font-size: 0.9rem;
  margin-top: 0.6em;
}
article blockquote.pure p {
  font-style:normal;
}
article blockquote.pure p em {
  font-style:italic;
}
article p em strong, figcaption em strong {
  text-transform: uppercase;
  font-size: .85em;
  opacity:1;
}
article p span.uppercase, h2 span.uppercase, h3 span.uppercase {
  text-transform: uppercase;
  font-size: 1em;
}

#cover {
  background-image: url("pix/carpa9_cover.webp");
}