/* === === === === === #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;
  }
}
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 {
    font-size:0.8em;
    text-transform: uppercase;
  }
#cover figcaption span.credit:before {
    content: "\f030";
    font-family: var(--ff_icon);
    padding:0 1em;
  }
@media (min-width: 800px) {
         #cover figcaption {
            width: 35%;
            font-size: 1em;
            padding: 16px 32px 16px 16px;
          }
        }

body.home {
  display: grid;
  grid-template-rows: auto auto auto;
  grid-gap: 0;
}
@media (min-width: 768px) {
  body.home {
  display: grid;
  grid-template-rows: 33vh auto auto;
  grid-gap: 0;
}
}
@media print {
  header,
  button,
  nav,
  footer {
    display: none;
  }
}

div.gcontainer {
    display:grid;
    grid-template-rows: auto;
}
.gpub {
    display:grid;
    grid-template-columns: 25% 73% 1fr; 
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.front__head-list.gpub {
  display: flex;
  grid-column: 2;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .front__head-list.gpub {
      display:grid;
      grid-template-columns: 0 95% 0; 
      margin-left:5%;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
  }
}
.nivelfoot.gpub {
    display:flex;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    flex-direction:column;
}
.nivelfoot .gitem {
    width:60%;
    text-align:center;
    margin: auto;
}
.nivelfoot .gitem.pubtitle {
    width:95%;
    justify-content: center;
}
.nivelfoot .uniartsx {
	width:100%;
    height:0;
    padding-top:100%;
    background-image: url(pix/uniarts-x.png);
	background-position: center;
    background-repeat: no-repeat;
    background-size: contain;}

.gpub.nivel01 {
   background-image: url(pix/nivel01.jpg);
}

.gpub.nivel02 {
   background-image: url(pix/nivel02.jpg);
   padding-block: 1rem;
}

.gpub.nivel03 {
   background-image: url(pix/nivel03.jpg);
   padding-block: 1rem;
}

.gpub.nivel04 {
   background-image: url(pix/nivel04.jpg);
}

.gpub.nivel05 {
   background-image: url(pix/nivel05.jpg);
}

.gpub.nivel06 {
   background-image: url(pix/nivel06.jpg);
   padding-block: 2rem;
}

.gpub.nivel07 {
   background-image: url(pix/nivel07.jpg);
   padding-block: 1rem;
}

.gpub.nivel08 {
   background-image: url(pix/nivel08.jpg);
}

.gpub.nivel09 {
   background-image: url(pix/nivel09.jpg);
   padding-block: 2rem;
}
.gpub.nivel10 {
   background-image: url(pix/nivel10.jpg);
}
.gpub.nivel11 {
   background-image: url(pix/nivel11.jpg);
}
.gpub.nivel12 {
   background-image: url(pix/nivel12.jpg);
}
.gpub.nivel13 {
   background-image: url(pix/nivel13.jpg);	
   padding-block: 2rem;
}
.gpub.nivel14 {
   background-image: url(pix/nivel14.jpg);
}
.gpub.nivel15 {
   background-image: url(pix/nivel15.jpg);
}
.gpub.nivel16 {
   background-image: url(pix/nivel16.jpg);
}
.gpub.nivel17 {
	background-image: url(pix/nivel17.jpg);
	padding-block: 1rem;
 }
 .gpub.nivel18 {
	background-image: url(pix/nivel18.jpg);
	padding-block: 2rem;
 }
 .gpub.nivel19 {
	background-image: url(pix/nivel19.jpg);
	padding-block: 2rem;
 }
 .gpub.nivel20 {
	background-image: url(pix/nivel20.jpg);
	padding-block: 1rem;
 }
 .gpub.nivel21 {
	background-image: url(pix/nivel21.jpg);
 }
 .gpub.nivel22 {
	background-image: url(pix/nivel22.jpg);
 }
  .gpub.nivel23 {
	background-image: url(pix/nivel23.webp);
 }
 .gpub.nivel24 {
	background-image: url(pix/nivel24.webp);
 }
.gitem.nivel {
   width: 100%;
    height: 120px;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 1 / 2;
}
.gitem.pubtitle, .gitem.title-cont {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    grid-column: 2 / 3;
}
.front__head-list .gitem.pubtitle {
    padding-block: 1rem;
}
.gitem.nivel div.cover-meta {
    width: 3em;}

.gitem.nivel div.cover-meta span {
    font-size: 0.8em;}

.gitem.nivel .cover-meta span.nro {
    font-size: 2em; }

.gitem.nivel div.cover-meta {
    line-height:0.8em;}

.gcontainer a {
    cursor:pointer;
}
.gcontainer .gpub {
    opacity: 0.85;
}
.gcontainer a:hover .gpub {
    opacity:1;
}
.gpub.nivel14v {
	overflow: hidden;
	opacity:1;
	background:#000;
	width: 100vw;
	height: 25vw;
}
.nivel14v .gitem {
	z-index:111;
	grid-row:1;
}
.video_bg{
	
	z-index:1;
	grid-row:1;
	grid-column:1 / 4;
}
@media (min-width: 768px) {
        .front__head-list.gpub {
            grid-template-columns: 25% 50% 25%; 
            margin-left:0;
            }
        .nivelfoot .gitem {
            width:25%;
            text-align: left;
            margin: 0;
            padding:1em;
        }
        .nivelfoot .gitem.pubtitle {
            width:50%;
            justify-content: flex-start;
        }
        }

@media only screen and (orientation: landscape) {
    .gpub {
        grid-template-columns: 25% 50% 1fr; 
    }
    .front__head-list.gpub {
        grid-template-columns: 25% 50% 25%;
        margin-left:0;
        min-height:180px;
        grid-column: 1 / -1;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .nivelfoot.gpub {
        flex-direction:row;
        justify-content: center;
        align-items: center;
    }
    .gitem.nivel {
        width: 100%;
        height: 100%;
        min-height:180px;
        grid-column: 1 / 2;
    }
    .gitem.pubtitle {
        padding: 0;
        margin: 2rem 0;
        display: flex;
        align-items: center;
        grid-column: 2 / 3;
    }
    .gitem.nivel div.cover-meta {
        width: 4.6em;}

    .gitem.nivel div.cover-meta span {
        font-size: 1.4em;}

    .gitem.nivel .cover-meta span.nro {
        font-size: 3.6em; }

    .gitem.nivel div.cover-meta {
        line-height:1.33em;}
    
    .nivelfoot .gitem {
            width:25%;
            text-align: left;
            margin: 0;
            padding:1em;
        }
        .nivelfoot .gitem.pubtitle {
            width:50%;
            justify-content: flex-start;            
            text-align: left;
        }
}

footer .widget li {
    border:none;
}

@supports not (display: grid) {
  .gpub > div {
    float: left;     
  }
    .gitem.nivel {
        width: 25%;
        margin-left:5%
    }
    .gitem.pubtitle {
        width:75%;
    }
}
h2.pub-title, h1.foot-title, h2.foot-title, h1.front__head-title {
    font-family: titling-gothic-fb-condensed, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:1.6em !important;
	line-height: 0.9em;
    text-transform: uppercase;
	background: none !important;
    box-shadow: none !important;
    color:#FFF !important;    
    transition: all 0.3s linear 0s;
    margin:0;
}
h2.pub-title {
	text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}
h1.foot-title, h2.foot-title, h1.front__head-title {
    color:#000 !important;   
}
.oneliner h2.pub-title {
    font-size:2em !important;
    line-height:140px;}

@media (min-width: 414px) {
        .oneliner h2.pub-title {
             font-size:3em !important;
            line-height:140px;}
     h2.pub-title, h1.foot-title, h2.foot-title {
            font-size:1.8em !important;}
}

@media (min-width: 1024px) {
       h2.pub-title, h1.foot-title, h2.foot-title {
            font-size:2.4em !important;}
        .oneliner h2.pub-title {
            font-size:4em !important;}
 }

@media (min-width: 1366px) {
       h1.front__head-title, h2.pub-title, h1.foot-title, h2.foot-title {
            font-size:3em !important;}
        .oneliner h2.pub-title {
            font-size:4.5em !important;
            line-height:180px;}
 }

h2.pub-title em {
	font-family: titling-gothic-fb-condensed, sans-serif;
    font-weight: 200;
    font-style: normal;
    display: block;}

h1.foot-title span, h2.foot-title span {
	font-family: titling-gothic-fb-condensed, sans-serif;
    font-weight: 200;
    font-style: normal;
    display: block;
    font-size:0.5em;}

h1.front__head-title em, h1.foot-title em, h2.foot-title em {
	font-family: titling-gothic-fb-condensed, sans-serif;
  font-weight: 200;
  font-style: normal;
  text-transform: uppercase;
  display: inline;
}

section.nivel-pub-sec, section.pub-cont {
    min-height:140px;}

section.pub-cont .pl-section-pad {
    padding:0;}

.row.nivelpub, div.title-cont.oneliner {
    min-height:140px;}

div.title-cont.multiliner {
    position: relative;
    top: 50%;
    transform: translateY(30%);
    -webkit-transform: translateY(30%);
    -ms-transform: translateY(30%);}

div.title-cont.multiliner.carpa {
    transform: translateY(20%);
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);}

.nivel-foot-sec div.title-cont.multiliner {
    top: 50%;
    transform: translateY(70%);
    -webkit-transform: translateY(70%);
    -ms-transform: translateY(70%);}
@media (min-width: 1366px) {
       nivel-foot-sec div.title-cont.multiliner {
            top: 50%;
            transform: translateY(80%);
            -webkit-transform: translateY(80%);
            -ms-transform: translateY(80%);}
 }
 div.nivel {
  text-align: center;
  color: #FFF;
}
.library a span {
  color:#FFF;
}
.library {
  --clr_link: #FFF;
}
.home a {
  text-decoration: none!important;
}
.posa h2.pub-title, .posa span {
	color: #000!important;
	text-shadow: none;
}
.posa .cover-meta span.nro {
    border-bottom: 2px #000 solid;
}
.front__head, .library__footer {
  display: grid;
  grid-template-columns: var(--gb_margin) 1fr var(--gb_margin);
}
.library__footer-list {
  display: flex;
  flex-direction: column;
}
.library__footer > * {
  grid-column: 1 / -1;
}
/* .library__footer-list li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}
.library__footer-list li.uniarts {
    grid-column: 2;
    grid-row: 1;
}
.library__footer-list li.foot-credits {
  grid-column: 1 / 2;
  grid-row: 2;
} */
@media (min-width: 768px) {
  .library__footer-list {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column: 2 / -2;
  }
  .library__footer-list li:nth-child(1) {
      grid-column: 1;
      grid-row: 1;
  }
  .library__footer-list li.uniarts {
      grid-column: 2;
      grid-row: 1;
  }
  .library__footer-list li.foot-credits {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}
.front__head-list {
  list-style: none;
}
.front__head-x, .unilink {
  display: none;
}
.front__head .gitem.pubtitle {
  justify-content: flex-start;
  margin-block: 2vh;
}
@media (min-width: 768px) {
  .front__head-list li, .unilink {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
  .front__head-list li a {
    max-height: 25vh;
  }
  .front__head-list img {
    height: 25vh;
  }
  .front__head-x {
    height: 20vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(pix/unix.png);
    z-index: 33;
  }
}