/** Shopify CDN: Minification failed

Line 108:12 Expected identifier but found whitespace
Line 108:13 Unexpected "40%"
Line 211:12 Expected identifier but found whitespace
Line 213:2 Unexpected "@media"
Line 240:13 Expected identifier but found whitespace
Line 242:2 Unexpected "@media"

**/
.article {
  display: grid;
  grid-template:
    "blog-links--left header blog-links--right" auto
    "blog-links--left byline blog-links--right" auto
    "blog-links--left content blog-links--right" auto
    / var(--gutter) auto var(--gutter);
  margin-top: calc(var(--header-height) * -1);
  position: relative;
}

.article {
  --gutter: 20px;

  @media screen and (min-width: 990px) {
    --gutter: 70px
  }
}

.shopify-section-header {
  transition: color var(--fast)
}

.shopify-section-header.shopify-section-header--hero-mode {
  color: #fff
}

.article-header {
  grid-area: header;
  position: relative;
  color: #fff;
  display: grid;
  margin-inline: calc(var(--gutter) * -1);
}

.article-header__background {
  grid-area: article-header-background;
  grid-row: 1 / -1;
  grid-column: 1 / -1;
}

.article-header__background img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%
}

.article-header__text {
  align-items: center;
  background: #00000040;
  display: grid;
  flex-direction: column;
  grid-area: article-header-text;
  grid-template: "top" 1fr "middle" auto "bottom" 1fr/1fr;
  justify-content: center;
  max-height: 100vh;
  padding: 0 var(--gutter);
  position: sticky;
  text-align: center;
  top: 0;
  z-index: 1;
  grid-row: 1 / -1;
  grid-column: 1 / -1;

}

.article-header__text .top {
  grid-area: top
}

.article__tags a {
  color: inherit;
}

.article-header__text .middle {
  grid-area: middle
}

.article-header__text .bottom {
  align-self: flex-end;
  grid-area: bottom;
  margin: 1em 0 1em auto;
  max-width: 20em;
  text-align: right
}

.article-header__title {
  color: inherit;
  text-align: center;  letter-spacing: 0.02em;
}

.article-header__description {
  color: inherit;
  text-align: center;
  margin: 1em auto;
  max-width: 40%

  @media screen and (max-width:768px) {
    display: none;
  }
}

.article__byline {
  display: block;
  grid-area: byline;
  margin: 1em 0;
  text-align: center;
  font-family: var(--font-body-family);
  white-space: pre-line;
}

.article__blog-links {
  mix-blend-mode: exclusion;
  align-items: center;
  color: white;
  font-family: Janson, serif;
  font-style: italic;
  left: 0;
  margin: 0;
  position: sticky;
  text-transform: uppercase;
  top: 0;
  z-index: 1;
  height: 100vh;
}
.article__blog-links .article__blog-links__inner {
  align-items: center;
  display: flex;
  justify-content: center;
  height: var(--gutter);
  width: 100vh;
}

.article__blog-links a {
  color: currentColor;
  text-decoration: none;
}

@media screen and (hover: hover) {
  .article__blog-links a:hover {
    text-decoration: underline;
    text-underline-position: from-font;
  }
}

.article__blog-links.blog-links--left {
  grid-area: blog-links--left;
}

.article__blog-links.blog-links--left .article__blog-links__inner {
  left: 0;
  transform: translateX(-100%) rotate(-90deg);
  transform-origin: top right;
}


.article__blog-links.blog-links--right {
  grid-area: blog-links--right;
}


.article__blog-links.blog-links--right .article__blog-links__inner {
  transform: rotate(90deg) translateY(-100%);
  transform-origin: top left;
}


.article__content {
  grid-area: content;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 32px;

  @media screen and (min-width: 750px) {
    margin-bottom: 80px;
  }
}

.article__content.is-narrow > *:not(:first-child) {
  max-width: 923px;
  margin: 40px auto;
}


/* .article__content p {
  margin: 40px auto;
  text-align: left;
} */

.article__text-paragraph,
.article__content h4 {
  max-width: 1155px;
  margin: 40px auto;
  text-align: left;
}

.article__text-paragraph:first-child {
  font-size: 20px;
  max-width: none

  @media screen and (min-width: 750px) {
    font-size: 40px
  }
}

.article__image-paragraph {
  display: inline-block;
  font-size: 14px;
  text-align: left;
  letter-spacing: -0.02em;

  @media screen and (min-width: 750px) {
    font-size: 16px;
  }
}

.article__image-paragraph img {
  margin-bottom: 10px;

  @media screen and (min-width: 750px) {
    margin-bottom: 12px;
  }
}

.article__images-paragraph {
  display: inline-block;
  font-size: 10px;
  text-align: left

  @media screen and (min-width: 750px) {
    font-size: .58em
  }
}

.article__images-paragraph img {
  max-width: calc(100% - .3em);
  padding: 0 .15em
}

.article__iframe-paragraph {
  display: inline-block;
}

.article__video-paragraph {
  display: inline-block;
  font-size: smaller;
  text-align: left
}

.article__video-paragraph video {
  display: block;
  width: 100%
}

.article__video-paragraph video:focus {
  outline: none
}

.article__video-paragraph video[muted] {
  cursor: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 48 19' width='48' height='19' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext y='14'%3Eunmute%3C/text%3E%3C/svg%3E"), auto
}

.article__video-paragraph video:not([muted]) {
  cursor: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 48 19' width='48' height='19' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext y='14'%3Emute%3C/text%3E%3C/svg%3E"), auto
}

iframe {
  width: 100%
}

blockquote p {
  font: inherit
}

h1,
h2,
h3,
h4 {
  /* margin-left: auto;
  margin-right: auto;
  max-width: 720px; */
  text-align: left;
}

.article__content a {
  color: inherit
}

.bottom-nav {
  display: flex;
  grid-area: bottom-nav;
  justify-content: space-between;
  margin: var(--gutter-article) auto;
  max-width: 1155px;
  font-family: var(--font-body-family);
  font-style: italic;
  font-size: 30px;
  box-sizing: border-box;
  padding: 0 20px;

  @media screen and (min-width: 750px) {
    padding: 0;
  }
}

.bottom-nav hr {
  margin: 0;
  visibility: hidden;
  height: 0.33333em
}

.bottom-nav a {
  text-decoration: none;
  color: inherit
}

.bottom-nav a:hover hr {
  visibility: visible
}

.bottom-nav__blog-title {
  text-transform: capitalize;
  font-size: 16px;
  letter-spacing: -0.02em;
  display: none;

  @media screen and (min-width: 750px) {
    display: inline;
  }
}

/* shoppable images styling */
.article.shoppable .article__image-paragraph {
  margin: 28px 0 0 0;
}

.article.shoppable .article__image-paragraph br + a {
  font-family: var(--font-heading-family);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.02em;
  font-size: 16px;
  font-weight: 900;
  display: block;
  text-decoration: none;
}

.article.shoppable .article__image-paragraph br + a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 750px) {
  .article.shoppable .article__image-paragraph {
    margin: 64px 0 0 0;
  }

  .article.shoppable .article__image-paragraph br + a {
    font-size: 25px;
  }
}
