@charset "UTF-8";
:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

/**
 * Product Landing — Hero. Mobile-first, mirrors the inner-blog hero.
 * Red RTL title above a full-width image carrying the grid-line + frosted-square
 * overlay (3-column grid on mobile, 7-column on desktop).
 */
.pl-hero {
  width: 100%;
  direction: rtl;
  text-align: right;
  overflow: hidden;
  /* ------------------------------
     TITLE
  ------------------------------ */
}
.pl-hero__header {
  margin: 0 2.6rem 3.6rem;
  padding-top: 3.1rem;
}
@media (width > 768px) {
  .pl-hero__header {
    max-width: 124rem;
    margin: 0 auto 3.2rem;
    padding: 0 0rem;
    padding-top: 7.4rem;
  }
}
.pl-hero__title {
  margin: 0;
  max-width: 30.8rem;
  color: var(--red-main);
  font-family: "Simpler", sans-serif;
  font-size: 4.1rem;
  font-weight: 900;
  line-height: 1.1;
}
@media (width > 768px) {
  .pl-hero__title {
    max-width: 62rem;
    margin-right: 0;
    margin-left: auto;
    font-size: 7.6rem;
  }
}
.pl-hero {
  /* ------------------------------
     FEATURED IMAGE WITH GRID
  ------------------------------ */
}
.pl-hero__image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (width > 768px) {
  .pl-hero__image-container {
    height: 44rem;
    max-width: 124rem;
    margin: 0 auto;
  }
}
.pl-hero__image {
  display: block;
  width: 100%;
  height: auto;
  z-index: 0;
}
@media (width > 768px) {
  .pl-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
