@charset "UTF-8";
:root {
  --tme-max-width: 99.7rem;
  --tme-xs3lg1: 3rem;
  --tme-xs3lg0: 3rem;
  --tme--global--padding-top: clamp( 5.5rem, 10vw, 10rem );
  --tme--global--padding-bottom: clamp( 5.5rem, 10vw, 10rem );
}
@media (min-width: 782px) {
  :root {
    --tme-xs3lg1: 1.5rem;
    --tme-xs3lg0: 0rem;
  }
}

/**
 * Clamps, aka truncates, multi-line text. Note that non-webkit browsers will
 * not see the ellipsis ¯\_(ツ)_/¯
 * @param {Value}          $font-size     - Font size of the text
 * @param {Unitless Value} $line-height   - Line height of the text;
 * @param {Number}         $lines-to-show - Number of lines to show
 * @example scss
 * p {
 *    @include line-clamp($font-size: 16px, $line-height: 1.5, $lines-to-show: 3);
 * }
 */
.big-article {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  --big-article-fill: var(--wp--preset--color--primary);
}
@media (min-width: 782px) {
  .big-article {
    flex-direction: row;
    position: relative;
    justify-content: space-between;
    gap: 1.5rem;
  }
}
.big-article:after {
  display: block;
  content: "";
  width: min(var(--tme-max-width), 100vw);
  height: 7.5rem;
  background-color: var(--big-article-fill);
  margin-bottom: var(--wp--preset--spacing--20);
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 0;
  z-index: 0;
}
.big-article .big-article__image {
  margin-left: calc(var(--wp--style--root--padding-left) * -1);
  margin-right: calc(var(--wp--style--root--padding-right) * -1);
  position: relative;
  z-index: 5;
}
@media (min-width: 782px) {
  .big-article .big-article__image {
    order: 2;
    margin-left: 0;
    flex: 0 0 calc(50% + var(--wp--style--root--padding-right) * 0.5);
  }
}
.big-article .big-article__image figure {
  aspect-ratio: 1;
  margin-bottom: 0;
}
.big-article .big-article__image figure img, .big-article .big-article__image figure picture {
  -o-object-fit: cover;
  object-fit: cover;
  min-width: 100%;
}
.big-article .big-article__image figure img img, .big-article .big-article__image figure picture img {
  max-width: 100%;
  height: auto;
}
.big-article .big-article__content {
  padding-top: var(--wp--preset--spacing--20);
  padding-bottom: var(--wp--preset--spacing--20);
}
@media (min-width: 782px) {
  .big-article .big-article__content {
    padding-top: var(--wp--preset--spacing--50);
    padding-bottom: var(--wp--preset--spacing--30);
    position: relative;
    z-index: 5;
    max-width: 31.625rem;
    flex: 0 0 50%;
  }
}
.big-article .big-article__content > * {
  margin-block-start: 1rem;
  margin-block-end: 0;
}
@media (min-width: 782px) {
  .big-article .big-article__content > * {
    margin-block-start: 3rem;
  }
}
.big-article .big-article__content > *.wp-block-buttons {
  margin-block-start: 3rem;
}
.big-article .big-article__content .wp-block-heading {
  letter-spacing: -0.01em;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 1.2;
  font-size: var(--wp--preset--font-size--display-4);
}
.big-article .big-article__content .big-article__excerpt p {
  font-size: 1.125rem;
  line-height: 1.44;
  display: block;
  display: -webkit-box;
  font-size: 1.125rem;
  max-height: 8.1rem;
  line-height: 1.44;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
@media (min-width: 782px) {
  .big-article .big-article__content .big-article__excerpt p {
    display: block;
    display: -webkit-box;
    font-size: 1.125rem;
    max-height: 6.48rem;
    line-height: 1.44;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
}

.has-primary-background-color > .wp-block-acf-big-article .wp-block-buttons .wp-block-button .wp-block-button__link, .has-primary-background-color > .wp-block-acf-big-article .wp-block-buttons .wp-block-button .wp-element-button {
  background-color: var(--wp--preset--color--contrast) !important;
}
.has-primary-background-color > .wp-block-acf-big-article .wp-block-buttons .wp-block-button .wp-block-button__link:hover, .has-primary-background-color > .wp-block-acf-big-article .wp-block-buttons .wp-block-button .wp-element-button:hover {
  background-color: var(--wp--preset--color--base) !important;
}/*# sourceMappingURL=style.css.map */
