body,
html {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  box-sizing: border-box !important;
}

.container {
  box-sizing: border-box;
  margin: auto;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
  background: var(--white);
  columns: var(--black);
}
.container > * {
  color: var(--black);
}

.container.alignwide {
  max-width: 100rem;
}
.container.alignfull {
  width: 100%;
}

main.site-main {
  min-height: 100vh;
}

.sticky-page {
  display: flex;
  flex-direction: row;
  gap: 0;
}
@media (max-width: 1440px) {
  .sticky-page {
    flex-direction: column;
  }
}

p,
a,
div,
span,
.copy {
  font-size: var(--text-md);
  line-height: var(--line-md);
}

.big {
  font-size: var(--text-xl);
  line-height: var(--line-lg);
}
.small {
  font-size: var(--text-sm);
  line-height: var(--line-sm);
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
}

.display {
  font-size: var(--text-6xl);
  line-height: var(--line-6xl);
}

.h1,
h1 {
  font-size: var(--text-5xl);
  line-height: var(--line-5xl);
}
.h2,
h2 {
  font-size: var(--text-3xl);
  line-height: var(--line-3xl);
}
.h3,
h3 {
  font-size: var(--text-2xl);
  line-height: var(--line-2xl);
}
.h4,
h4 {
  font-size: var(--text-xl);
  line-height: var(--line-xl);
}

.wp-element-button,
.btn {
  width: fit-content;
  text-decoration: none;
  background: unset;
  color: var(--black);
  border: 1.5px solid var(--black);
  border-radius: 0;
  padding: var(--spacer-xs);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  gap: var(--spacer-xxs);
  align-items: center;
  font-size: var(--text-md);
  line-height: var(--line-md);
}

.teaser::after,
.wp-element-button::after,
.btn::after {
  content: "";
  width: 20px; /* make room for multiple repeats */
  height: 20px;
  display: inline-block;

  mask: url("../assets/icons/chevron.svg") no-repeat 100% 100%;
  background-color: var(--black);
  transition: all 0.3s ease;
}

.wp-element-button:hover,
.btn:hover {
  background: var(--black);
  color: var(--white);
}

.wp-element-button:hover::after,
.btn:hover::after {
  background-color: var(--white);
}

.tag {
  display: flex;
  align-items: center;
  gap: var(--spacer-xxs);

  font-size: var(--text-sm);
  border: 1.5px solid var(--black);
  border-radius: 0.375rem;
  padding: var(--spacer-xs) var(--spacer-xs);
  background-color: unset;
  width: fit-content;
  transition: all 0.3s ease;

  margin: 0;
  line-height: 100%;
}
.tag.filled {
  background-color: var(--black);
  color: var(--white);
}

.tag > * {
  line-height: 100%;
  margin: auto;
}

/* Screen Reader */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; /* prevent line breaks */
  border: 0;
}

/* Marquee Animation */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  } /* 2 Elements */
}

@keyframes marquee-small {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-6.25%);
  } /* 16 Elements */
}

.marquee {
  position: relative;
  display: flex;
  width: fit-content;
  white-space: nowrap;
  animation: marquee linear infinite 3s;
}

.marquee > * {
  padding-right: 1.5em;
}

#main-404 {
  min-height: 100vh;
}

.embed-privacy-container > p {
  display: none;
}
.embed-privacy-footer {
  display: none !important;
}

html:lang(es-CL) time {
  text-transform: lowercase;
}

.swiper-wrapper {
  user-select: none !important;
}
