html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-overflow-scrolling: touch;
    color: rgba(41, 41, 41, 1);
   
    min-height: 100vh; 
}

body.scroll-lock {
  overflow: hidden !important;
}

/* Para centrar <main> */
main {
    max-width: 1920px; 
    width: 100%;
    margin: 0 auto;
    background: rgba(210, 210, 210, 1);
}

* {
    box-sizing: border-box;
}

h1,
h2,
h3 {
    line-height: .9;
}

h1 {
    font-size: 1rem;
    text-transform: lowercase;
    font-weight: 400;
}

h2 {
    font-size: 3.36rem;
    font-weight: 900;
    text-transform: uppercase;
    mix-blend-mode: normal;
    text-shadow: none;
}

h2.sol {
    mix-blend-mode: soft-light;
    text-shadow: 0 0 6px rgba(0, 0, 0, 1), -1px -1px 1px rgba(255, 255, 255, 1);
}

h2.big {
    font-size: 8rem;
}

h3 {
    font-size: 1.68rem;
    font-weight: 400;
}

p {
    margin-bottom: .7rem;
    font-weight: 400;
    text-transform: none;
    text-indent: 1em;
}

p:last-child {
    margin-bottom: 0;
}

p::first-letter {
    text-transform: uppercase;
}

figure {
    position: relative;
}

figure figcaption {
    position: absolute;
    bottom: 1%;
    left: 1%;
}

i,
figcaption {
    font-size: .7rem;
    font-style: italic;
    position: relative;
}

i:before,
figcaption:before {
    content: '*';
    margin-right: .25rem;
}

.c {
    column-count: 2;
    column-gap: 2rem;
}

.r {
    text-align: right
}

a {
    text-decoration: none;
}

a:hover,
a:focus {
    color: rgba(38, 38, 38, 1);
    text-decoration: underline;
    cursor: pointer;
}
button {
    display: block;
    background: rgba(205, 205, 205, 1);
    padding: .25rem 1.5rem;
    border-radius: 10px;
    line-height: 1.5;
    opacity: 1;
    font-weight: 700;
    font-size: .9rem;
    color: rgba(255, 255, 255, 1);
}
button:hover {
    filter: invert(1);
    text-decoration: none;
    opacity: .75;
}
blockquote {
    background: rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-left: 1px solid rgba(0, 0, 0, 1);
    margin: 0;
}
/* ================= */
.grid {
  width: 82%;
    display: grid;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 1);
    margin: 0 auto;
}

.grid.big {
    width: 91%;
}

.grid.full {
    width: 100%;
}

.grid-row {
  display: grid;
  width: 100%;
  margin-bottom: 1px;
}

.grid-row>article {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 0;
  position: relative;
}

.img-box {
  width: 100%;
  height: 100%;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

img.responsive-img {
    width: 100%;
    height: 100%; 
    object-fit: cover;
    object-position: center;
}

.video-box {
  width: 100%;
  height: 100%;
  position: relative;
  aspect-ratio: 1 / 2;
  overflow: hidden;
}

.video-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .artxt {
  position: relative;
}

.artxt .extended {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.artxt .extended .inner {
  max-height: 10em;
  overflow-y: auto;
  padding-right: 1rem;
}

.artxt {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: center;
  gap: 0;
}
.artxt.row{
   flex-direction: row; 
}
.artxt hr{
  width: 100%;
  margin: .5rem 0 1rem;
  opacity: .5;
} */

.artxt {
  position: relative;
}

.artxt .extended {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.artxt .extended .inner {
  max-height: 10em;
  overflow-y: auto;
  padding-right: 1rem;
}

.artxt {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: center;
  gap: 0;
}
.artxt.row{
   flex-direction: row; 
}
.artxt hr{
  width: 100%;
  margin: .5rem 0 1rem;
  opacity: .5;
}
























