@media (min-width: 48em) {
  .site-header.site-header--minimal .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 90em) {
  .site-header.site-header--minimal .site-header__inner {
    display: grid;
    grid-template-columns: 1fr 43rem 43rem 1fr;
  }
}
@media (min-width: 90em) {
  .site-header.site-header--minimal .logo-main-wrap {
    grid-column: 2;
  }
}
@media (min-width: 48em) {
  .site-header.site-header--minimal .logo-main {
    margin-left: 0;
    margin-right: auto;
    width: 14rem;
  }
}
@media (min-width: 48em) {
  .site-header.site-header--minimal .logo-main__link {
    background-size: 240px 176px;
    background-position: -2px -1px;
    height: 2.75rem;
  }
}

.header-extra {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 0.625rem;
  padding: 1rem 0 0.625rem;
  text-align: center;
  color: white;
  font-size: 14px;
  font-size: 0.875rem;
  font-style: italic;
}
@media (min-width: 48em) {
  .header-extra {
    border-top: none;
    margin-top: 0;
    padding: 0 1rem;
  }
}
@media (min-width: 90em) {
  .header-extra {
    grid-column: 3;
    text-align: right;
  }
}

.header-extra__shipping {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
@media (min-width: 90em) {
  .header-extra__shipping {
    justify-content: flex-end;
  }
}
.header-extra__shipping::before {
  content: "";
  display: block;
  background: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/icon_shipping.svg) center no-repeat;
  background-size: contain;
  height: 1.5rem;
  width: 1.5rem;
}

.lp-nav {
  background-color: white;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 2.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: color 200ms, background-color 200ms;
}
@media (min-width: 81.25em) {
  .lp-nav {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.lp-nav::after {
  display: none;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--markerWidth, 0);
  height: 0.375rem;
  background-color: #a39662;
  transform: translate3d(var(--markerLeft, 0), 0, 0);
  transition: transform 250ms, width 200ms, background-color 200ms;
  will-change: width;
}
@media (min-width: 48em) {
  .lp-nav::after {
    display: block;
  }
}

.lp-nav__inner {
  display: flex;
  margin: 0 auto;
  max-width: 85rem;
  flex-direction: column;
  position: relative;
}
@media (min-width: 81.25em) {
  .lp-nav__inner {
    align-items: center;
    flex-direction: row;
  }
}

.lp-nav__label {
  display: none;
  letter-spacing: 0.15em;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #999;
  text-transform: uppercase;
  padding-bottom: 0.625rem;
}
@media (min-width: 81.25em) {
  .lp-nav__label {
    display: block;
    padding-right: 1.25rem;
    padding-bottom: 0;
  }
}

.lp-nav__expand {
  background: none;
  box-shadow: none;
  border-radius: none;
  width: calc(100% + 1.25rem);
  margin-right: auto;
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
  margin-left: -0.625rem;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #999;
  text-transform: uppercase;
  font-weight: normal;
  text-align: left;
  letter-spacing: 0.15em;
  padding-left: 1.25rem;
  padding-right: 2.75rem;
}
@media (min-width: 81.25em) {
  .lp-nav__expand {
    display: none;
  }
}
.lp-nav__expand:hover {
  color: #333;
}
.lp-nav__expand::before, .lp-nav__expand::after {
  content: "";
  height: 0.15rem;
  border-radius: 0.075rem;
  background-color: #999;
  width: 1rem;
  position: absolute;
  right: 1rem;
  top: 47.5%;
  transition: all 0.25s ease;
  transform: translateX(-0.65rem) rotate(45deg);
}
.lp-nav__expand:after {
  transform: rotate(-45deg);
}
.lp-nav__expand[aria-expanded=true]::before {
  transform: translateX(-0.65rem) rotate(-45deg);
}
.lp-nav__expand[aria-expanded=true]:after {
  transform: rotate(45deg);
}
.lp-nav__expand:hover {
  background: none;
}
.lp-nav__expand:hover::before, .lp-nav__expand:hover::after {
  background-color: #333;
}

.lp-nav__menu {
  padding-top: 0.625rem;
  display: none;
}
.lp-nav__menu.is-showing {
  display: block;
}
@media (min-width: 81.25em) {
  .lp-nav__menu.lp-nav__menu {
    display: flex;
    align-items: center;
    padding-top: 0;
  }
}

.lp-nav__items {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0.625rem;
}
@media (min-width: 81.25em) {
  .lp-nav__items {
    gap: 1.5rem;
    display: flex;
    flex-direction: row;
    padding: 0;
  }
}
.lp-nav__items.is-expanded {
  display: flex;
}

.lp-nav__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 81.25em) {
  .lp-nav__item {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}
.lp-nav__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0.5rem;
}
@media (min-width: 81.25em) {
  .lp-nav__item:last-child {
    padding-bottom: 0;
  }
}
.lp-nav__item a {
  color: #828c63;
  display: block;
  text-decoration: none;
  position: relative;
}
@media (min-width: 81.25em) {
  .lp-nav__item a {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.lp-nav__item a:hover {
  text-decoration: underline;
  color: #585f43;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

.lp {
  padding-bottom: 5rem;
}

.lp-top {
  background: #f0eee3 url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_bg.webp) center top no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media (min-width: 72em) {
  .lp-top {
    background-size: auto 140%;
  }
}

.lp-top__inner {
  padding: 5rem 1.5rem 21.25rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 30.5rem;
}
@media (min-width: 48em) {
  .lp-top__inner {
    height: 46.25rem;
  }
}

.lp-top__tag {
  background: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_tag.webp) center no-repeat;
  background-size: contain;
  position: absolute;
  top: -14rem;
  left: calc(50% - 12rem);
  z-index: 1;
  height: 60rem;
  width: 25rem;
  z-index: 5;
  transform: scale(0.75) translateY(-10rem);
}
@media (min-width: 48em) {
  .lp-top__tag {
    transform: none;
  }
}

.lp-title {
  background: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/title.webp) center no-repeat;
  background-size: contain;
  text-indent: -999rem;
  position: relative;
  z-index: 2;
  animation: showTitle 0.5s 0.5s both;
  position: absolute;
  margin: 0;
  top: 31.5rem;
  left: 0.3125rem;
  height: 12.5rem;
  width: 22.5rem;
  rotate: 10deg;
}
@keyframes showTitle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.lp-top__year {
  animation: showYear 1s 0.5s both;
  background-color: white;
  color: #a39662;
  padding: 0.5rem 0.75rem;
  font-family: "Tungsten A", "Tungsten B", "Helvetica Neue", sans-serif;
  position: absolute;
  font-size: 32px;
  font-size: 2rem;
  top: 30.25rem;
  right: 6.125rem;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  text-transform: uppercase;
  rotate: 10deg;
  z-index: 7;
}

@keyframes showYear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.lp-top__sub {
  color: #7e875c;
  text-align: center;
  font-weight: bold;
  animation: showSub 0.5s 1.25s both;
  line-height: 1.25;
  font-size: 20px;
  font-size: 1.25rem;
  max-width: 18rem;
  position: absolute;
  top: 44.5rem;
  left: 2.25rem;
  width: 15rem;
  rotate: 10deg;
}
@keyframes showSub {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.lp-top__proceeds {
  text-align: center;
  font-style: italic;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  font-family: Georgia, serif;
  animation: showProceeds 0.5s 1.75s both;
  font-size: 14px;
  font-size: 0.875rem;
  max-width: 18.5rem;
  position: absolute;
  bottom: 0.875rem;
  left: 50%;
  color: white;
  background-color: rgba(130, 140, 99, 0.85);
  line-height: 1.35;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.44);
  transform: translateX(-50%);
  width: 100%;
  z-index: 6;
}
@keyframes showProceeds {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.lp-top__ribbon-horiz {
  position: absolute;
  top: 8rem;
  left: 0;
  right: 0;
  height: 10rem;
}
@media (min-width: 48em) {
  .lp-top__ribbon-horiz {
    top: 14rem;
  }
}
.lp-top__ribbon-horiz::before {
  content: "";
  display: block;
  background: transparent url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_ribbon_down.webp) center no-repeat;
  background-size: contain;
  position: absolute;
  transform-origin: top left;
  rotate: 90deg;
  top: 0;
  left: calc(55rem + 50%);
  height: 50rem;
  width: 8rem;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to top, black 10rem, rgba(0, 0, 0, 0) 25rem);
          mask-image: linear-gradient(to top, black 10rem, rgba(0, 0, 0, 0) 25rem);
}
.lp-top__ribbon-horiz::after {
  content: "";
  display: block;
  background: transparent url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_ribbon_down2.webp) center no-repeat;
  background-size: contain;
  position: absolute;
  transform-origin: top left;
  rotate: 90deg;
  top: -0.5rem;
  left: calc(50% + 12.5rem);
  height: 70rem;
  -webkit-mask-image: linear-gradient(to bottom, black 25rem, rgba(0, 0, 0, 0) 42.5rem);
          mask-image: linear-gradient(to bottom, black 25rem, rgba(0, 0, 0, 0) 42.5rem);
  width: 8.5rem;
}

.lp-top__ribbon-vert {
  background: transparent url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_ribbon_down2.webp) center no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 5rem);
  width: 9.5rem;
}

.lp-top__grid {
  position: absolute;
  left: 50%;
  height: 100%;
  width: 100%;
  max-width: 80rem;
  z-index: 1;
  top: -5rem;
  transform-origin: top left;
  transform: scale(0.55) translateX(calc(-50% + 1rem)) translateY(16.25rem);
}
@media (min-width: 48em) {
  .lp-top__grid {
    transform: translateX(-50%);
  }
}

.lp-top__grid-shadow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 4rem;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.15));
}

.lp-top__grid-item {
  position: absolute;
  background: left top no-repeat;
  background-size: contain;
  animation: ease 1s both;
  transform-origin: center;
  z-index: 1;
}

.lp-top__grid-item--1 {
  animation-name: intro_moveGridItem;
  animation-delay: 2.25s;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_product_extremedevotion.webp);
  width: 11rem;
  height: 13.5rem;
  top: 30rem;
  left: calc(50% + 8rem);
  rotate: 4deg;
}

.lp-top__grid-item--2 {
  animation-name: intro_moveGridItem;
  animation-delay: 1.8s;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_product_gpj.webp);
  width: 9rem;
  height: 12rem;
  top: 42rem;
  left: calc(50% + 9rem);
  filter: drop-shadow(0 0.5rem 2rem rgba(0, 0, 0, 0.5));
  z-index: 2;
  rotate: -2deg;
}

.lp-top__grid-item--3 {
  animation-name: intro_moveGridItem;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_product_heroicfaithdvd.webp);
  animation-delay: 2.55s;
  width: 13.75rem;
  height: 18rem;
  top: 30rem;
  left: calc(50% - 25rem);
  rotate: 7deg;
}

.lp-top__grid-item--4 {
  animation-name: intro_moveGridItem;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_product_hof1.webp);
  animation-delay: 1.95s;
  width: 11rem;
  height: 13.5rem;
  top: 42.5rem;
  left: calc(50% - 30rem);
  rotate: 4deg;
  z-index: 2;
}

.lp-top__grid-item--5 {
  animation-name: intro_moveGridItem;
  animation-delay: 2.1s;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_product_hof2.webp);
  filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.5));
  width: 11rem;
  height: 13.5rem;
  top: 40.5rem;
  left: calc(50% - 21.25rem);
  z-index: 3;
  rotate: -4deg;
}

.lp-top__grid-item--6 {
  animation-name: intro_moveGridItem;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_product_iwi.webp);
  animation-delay: 1.2s;
  width: 10rem;
  height: 13rem;
  top: 35rem;
  left: calc(50% + 27rem);
  z-index: 2;
  rotate: 6deg;
}

.lp-top__grid-item--7 {
  animation-name: intro_moveGridItem;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_product_sabinadvd.webp);
  animation-delay: 1.5s;
  width: 12.5rem;
  height: 16.5rem;
  top: 25rem;
  left: calc(50% + 18.75rem);
  rotate: -3deg;
}

.lp-top__grid-item--8 {
  animation-name: intro_moveGridItem;
  animation-delay: 2.4s;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_product_tfcstudy.webp);
  width: 21rem;
  height: 15rem;
  top: 40rem;
  left: calc(50% + 24rem);
  rotate: -4deg;
  z-index: 2;
  filter: drop-shadow(0 0.5rem 2rem rgba(0, 0, 0, 0.5));
}

.lp-top__grid-item--9 {
  animation-name: intro_moveGridItem;
  animation-delay: 1.65s;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_product_torchlighters.webp);
  width: 11.5rem;
  height: 16rem;
  top: 36rem;
  left: calc(50% - 35rem);
  rotate: -5deg;
}

.lp-top__grid-item--10 {
  animation-name: intro_moveGridItem;
  animation-delay: 1.35s;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_product_whomshallifear.webp);
  width: 15rem;
  height: 18rem;
  top: 37.5rem;
  left: calc(50% + 13.75rem);
  rotate: 3deg;
  filter: drop-shadow(0 0.5rem 2rem rgba(0, 0, 0, 0.5));
}

.lp-top__grid-item--11 {
  animation-name: intro_moveGridItem;
  animation-delay: 0.85s;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_product_wurmbrandessentials.webp);
  width: 28rem;
  height: 17rem;
  top: 37.5rem;
  left: calc(50% - 15.5rem);
}

@keyframes intro_moveGridItem {
  0% {
    opacity: 0;
    transform: rotateX(10deg) translateY(5rem);
  }
  100% {
    translate: none;
  }
}
.lp-top__grid-holly {
  background: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_holly.webp) center no-repeat;
  background-size: contain;
  position: absolute;
  animation: intro_moveGridItem ease 1s both;
  transform-origin: center;
  height: 20rem;
  width: 15rem;
}

.lp-top__grid-holly--1 {
  animation-delay: 2.2s;
  top: 27rem;
  left: calc(50% - 35rem);
  rotate: -25deg;
}

.lp-top__grid-holly--2 {
  animation-delay: 2.5s;
  top: 29rem;
  left: calc(50% - 17.5rem);
  rotate: -75deg;
}

.lp-top__grid-holly--3 {
  animation-delay: 2.2s;
  top: 25rem;
  left: calc(50% + 10rem);
  rotate: -40deg;
}

.lp-top__grid-holly--4 {
  animation-delay: 3.1s;
  top: 31rem;
  left: calc(50% + 23.75rem);
  rotate: 55deg;
}

.lp-top__grid-holly--5 {
  animation-delay: 2.3s;
  top: 42.5rem;
  left: calc(50% + 1.5rem);
  filter: drop-shadow(0 0.5rem 2rem rgba(0, 0, 0, 0.5));
  rotate: -35deg;
  z-index: 3;
}

.products__section {
  background-color: #f7f6f1;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/bg.webp);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 60rem auto;
  background-attachment: fixed;
  overflow: hidden;
  padding: 8.75rem 1.875rem 5rem;
  position: relative;
}
@media (min-width: 48em) {
  .products__section {
    padding: 12.5rem 5rem 6.25rem;
  }
}
@media (min-width: 72em) {
  .products__section {
    background-size: 100rem auto;
  }
}
.products__section .product__name-main,
.products__section .product__read-more-button,
.products__section .qty__name {
  color: #657b76;
}

.products__section-ribbon {
  position: absolute;
  top: -5rem;
  left: 0;
  right: 0;
  height: 10rem;
}
.products__section-ribbon::before {
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.3));
  content: "";
  display: block;
  background: transparent url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_ribbon_down.webp) center no-repeat;
  background-size: contain;
  position: absolute;
  transform-origin: top left;
  rotate: 88deg;
  top: -0.25rem;
  left: calc(52.5rem + 50%);
  height: 50rem;
  width: 8rem;
  z-index: 1;
}
.products__section-ribbon.products__section-ribbon--alt::before {
  z-index: 2;
  top: 8.375rem;
  left: calc(50% - 52.5rem);
  rotate: 268.5deg;
}
.products__section-ribbon::after {
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.3));
  content: "";
  display: block;
  background: transparent url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_ribbon_down2.webp) center no-repeat;
  background-size: contain;
  position: absolute;
  transform-origin: top left;
  rotate: 91deg;
  top: 0.125rem;
  left: calc(50% + 12.5rem);
  height: 70rem;
  width: 8.5rem;
  z-index: 1;
}
.products__section-ribbon.products__section-ribbon--alt::after {
  top: 8.5rem;
  left: calc(50% - 15rem);
  rotate: 271deg;
}

.products__section-border {
  position: absolute;
  left: 0;
  right: 0;
  height: 0.5rem;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  z-index: 4;
  top: 0;
}

.products__section-holly,
.products__section-holly-2 {
  background: transparent url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/header_holly.webp) left top no-repeat;
  background-size: contain;
  position: absolute;
  top: -15.25rem;
  left: calc(50% - 5rem);
  height: 30rem;
  width: 15rem;
  transform: rotateX(-145deg);
  z-index: 3;
}
@media (min-width: 60em) {
  .products__section-holly,
  .products__section-holly-2 {
    top: -22rem;
    left: calc(50% - 14rem);
    height: 40rem;
    width: 20rem;
  }
}
.products__section-holly.products__section-holly--2, .products__section-holly.products__section-holly--5,
.products__section-holly-2.products__section-holly--2,
.products__section-holly-2.products__section-holly--5 {
  left: calc(50% - 15.75rem);
  top: -12.5rem;
  transform: rotateZ(115deg);
}
@media (min-width: 60em) {
  .products__section-holly.products__section-holly--2, .products__section-holly.products__section-holly--5,
  .products__section-holly-2.products__section-holly--2,
  .products__section-holly-2.products__section-holly--5 {
    left: calc(50% - 10rem);
    top: -19rem;
  }
}
.products__section-holly.products__section-holly--3, .products__section-holly.products__section-holly--6,
.products__section-holly-2.products__section-holly--3,
.products__section-holly-2.products__section-holly--6 {
  left: calc(50% - 4rem);
  top: -14rem;
  transform: rotateZ(225deg);
}
@media (min-width: 60em) {
  .products__section-holly.products__section-holly--3, .products__section-holly.products__section-holly--6,
  .products__section-holly-2.products__section-holly--3,
  .products__section-holly-2.products__section-holly--6 {
    left: calc(50% - 7rem);
    top: -19rem;
    transform: rotateZ(230deg);
  }
}

.products__section-holly-2 {
  top: -15rem;
  left: calc(50% - 17.5rem);
  transform: rotateZ(105deg);
  z-index: 2;
}
@media (min-width: 60em) {
  .products__section-holly-2 {
    top: -15.5rem;
    left: calc(50% - 13rem);
    height: 40rem;
    width: 20rem;
    transform: rotateZ(95deg);
  }
}
.products__section-holly-2.products__section-holly-2--2, .products__section-holly-2.products__section-holly-2--5 {
  left: calc(50% - 9rem);
  top: -13.5rem;
  transform: rotateZ(95deg);
}
@media (min-width: 60em) {
  .products__section-holly-2.products__section-holly-2--2, .products__section-holly-2.products__section-holly-2--5 {
    left: calc(50% - 11rem);
    top: -20rem;
    transform: rotateZ(222deg);
  }
}
.products__section-holly-2.products__section-holly-2--3, .products__section-holly-2.products__section-holly-2--6 {
  left: calc(50% - 5rem);
  top: -18rem;
  transform: rotateZ(170deg);
}
@media (min-width: 60em) {
  .products__section-holly-2.products__section-holly-2--3, .products__section-holly-2.products__section-holly-2--6 {
    left: calc(50% - 9rem);
    top: -18rem;
    transform: rotateZ(110deg);
  }
}

.products__title {
  background: center no-repeat;
  background-size: contain;
  display: block;
  margin: 0 auto 3.75rem;
  position: relative;
  text-indent: -999rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.5s ease 0.5s;
}
@media (min-width: 60em) {
  .products__title {
    margin-bottom: 5rem;
  }
}

.products__section.start-animation .products__title {
  opacity: 1;
  transform: translateY(0);
}

.products__list {
  display: grid;
  grid-gap: 3.75rem;
  margin: 0 auto;
  max-width: 25rem;
}
@media (min-width: 48em) {
  .products__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 85rem;
  }
}
@media (min-width: 60em) {
  .products__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 72em) {
  .products__list {
    grid-gap: 5rem;
  }
}

.products__section--inspirefaith {
  background-color: #928658;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/bg_gold.webp);
}
.products__section--inspirefaith .products__title {
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/title_inspireyourfaith.webp);
  height: 5.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 60em) {
  .products__section--inspirefaith .products__title {
    height: 7.75rem;
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 84em) {
  .products__section--inspirefaith .products__title {
    height: 9rem;
  }
}
.products__section--inspirefaith .product__name {
  position: relative;
}
.products__section--inspirefaith .product__name-main {
  color: #372f1d;
}
.products__section--inspirefaith .product__price-desc {
  background-color: white;
  color: #816e43;
  z-index: 2;
}
.products__section--inspirefaith .product__desc {
  color: white;
}
@media (min-width: 48em) {
  .products__section--inspirefaith .products__list {
    max-width: 25rem;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 60em) {
  .products__section--inspirefaith .products__list {
    max-width: 75rem;
  }
}
.products__section--inspirefaith .qty__name {
  color: #444;
}
.products__section--inspirefaith .products__wurmbrandessentials-main {
  margin-bottom: 1.875rem;
}
@media (min-width: 60em) {
  .products__section--inspirefaith .products__wurmbrandessentials-main .product__price-desc {
    top: 30%;
    right: 85%;
  }
}
@media (min-width: 60em) {
  .products__section--inspirefaith .product-wrap--wurmrandessentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    align-items: center;
    max-width: 60rem;
    margin: 0 auto;
  }
}
.products__section--inspirefaith .product-wurmbrand-includes {
  color: white;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0.625rem 1.25rem;
  margin-bottom: 2.5rem;
}
.products__section--inspirefaith .products__wurmbrandessentials-trio {
  display: grid;
  gap: 1.875rem;
}
@media (min-width: 60em) {
  .products__section--inspirefaith .products__wurmbrandessentials-trio {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 60em) {
  .products__section--inspirefaith .products__wurmbrandessentials-trio .product__qtys.product__qtys {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (min-width: 84em) {
  .products__section--inspirefaith .products__wurmbrandessentials-trio .product__qtys.product__qtys {
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 60em) {
  .products__section--inspirefaith .products__wurmbrandessentials-trio .product__price-desc {
    top: 30%;
    right: 70%;
  }
}
@media (min-width: 60em) {
  .products__section--inspirefaith .product-wrap--biblesmuggler {
    display: grid;
    grid-template-columns: 1fr 27.5rem;
    gap: 3.75rem;
  }
}
@media (min-width: 84em) {
  .products__section--inspirefaith .product-wrap--biblesmuggler {
    margin: 0 auto;
    max-width: 65rem;
    width: 100%;
  }
}
.products__section--inspirefaith .product-wrap--biblesmuggler .product__price-desc {
  background-color: #828c63;
  color: white;
}
.products__section--inspirefaith .product-wrap--biblesmuggler .product__desc p:last-child {
  padding-bottom: 0;
}
.products__section--inspirefaith .product-wrap--biblesmuggler .product__fields h4 {
  color: white;
  margin: 1.25rem 0 0.5rem;
}
.products__section--inspirefaith .product-wrap--biblesmuggler .product__fields h5 {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: normal;
  margin: 0.625rem 0 0.3125rem;
  text-transform: uppercase;
}
@media (min-width: 60em) {
  .products__section--inspirefaith .product-wrap--biblesmuggler .product__fields .product__qtys {
    row-gap: 0;
  }
}
.products__section--inspirefaith .product__images--biblesmuggler {
  margin: 0 auto;
  max-width: 20rem;
  padding-top: 30rem;
  position: relative;
  width: 100%;
}
@media (min-width: 84em) {
  .products__section--inspirefaith .product__images--biblesmuggler {
    max-width: 90%;
  }
}
.products__section--inspirefaith .product__image--biblesmuggler-bible {
  position: absolute;
  left: -5rem;
  top: 0;
  width: 17.5rem;
}
@media (min-width: 84em) {
  .products__section--inspirefaith .product__image--biblesmuggler-bible {
    width: 75%;
  }
}
.products__section--inspirefaith .product__image--biblesmuggler-bible .product__price-desc {
  right: 43%;
  top: 3%;
}
@media (min-width: 84em) {
  .products__section--inspirefaith .product__image--biblesmuggler-bible .product__price-desc {
    right: 52%;
    top: 6%;
  }
}
.products__section--inspirefaith .product__image--biblesmuggler-shirt {
  position: absolute;
  right: -1rem;
  top: 7rem;
  width: 16rem;
}
@media (min-width: 84em) {
  .products__section--inspirefaith .product__image--biblesmuggler-shirt {
    width: 72%;
    top: 25%;
  }
}
.products__section--inspirefaith .product__image--biblesmuggler-hat {
  position: absolute;
  right: -1rem;
  top: 18.75rem;
  width: 11rem;
}
@media (min-width: 84em) {
  .products__section--inspirefaith .product__image--biblesmuggler-hat {
    width: 45%;
    top: 60%;
    right: 3%;
  }
}
.products__section--inspirefaith .product__image--biblesmuggler-hat .product__price-desc {
  top: -2.25rem;
  right: -0.25rem;
}
.products__section--inspirefaith .product__image--biblesmuggler-wristband {
  position: absolute;
  left: 1rem;
  top: 22rem;
  width: 11rem;
}
@media (min-width: 84em) {
  .products__section--inspirefaith .product__image--biblesmuggler-wristband {
    width: 45%;
    top: 70%;
    right: 24%;
  }
}

.products__section--inspirefaith-2 {
  background-color: #dcecec;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/bg_lightblue.webp);
}
.products__section--inspirefaith-2 .product__price-desc {
  right: 10%;
}
.products__section--inspirefaith-2 .product-wrap--whomshallifear .product__price-desc {
  background-color: #828c63;
}

.products__section--inspireprayer {
  background-color: #394227;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/bg_green.webp);
}
.products__section--inspireprayer .products__title {
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/title_inspireprayer.webp);
  height: 3.875rem;
}
@media (min-width: 60em) {
  .products__section--inspireprayer .products__title {
    height: 5.25rem;
  }
}
@media (min-width: 84em) {
  .products__section--inspireprayer .products__title {
    height: 6.25rem;
  }
}
.products__section--inspireprayer .product__price-desc {
  background-color: white;
  color: #a39662;
}
.products__section--inspireprayer .product__name-main {
  color: white;
}
.products__section--inspireprayer .product__desc {
  color: white;
}
.products__section--inspireprayer .product__qtys {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.products__section--inspireprayer .product__desc .note {
  color: rgba(255, 255, 255, 0.5);
}
.products__section--inspireprayer .qty__name {
  color: #d2c8b0;
}
@media (min-width: 48em) {
  .products__section--inspireprayer .products__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 55rem;
    margin: 0 auto;
  }
}
@media (min-width: 48em) {
  .products__section--inspireprayer .product-wrap--oneyearbible {
    grid-column: 1/3;
    gap: 2.5rem;
  }
}
@media (min-width: 60em) {
  .products__section--inspireprayer .product-wrap--oneyearbible {
    gap: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 84em) {
  .products__section--inspireprayer .product-wrap--oneyearbible {
    margin: 0 -10rem;
  }
}
@media (min-width: 48em) {
  .products__section--inspireprayer .product-wrap--oneyearbible .product__image {
    max-width: 30rem;
    margin: 0 auto;
  }
}
@media (min-width: 60em) {
  .products__section--inspireprayer .product-wrap--oneyearbible .product__image {
    max-width: none;
    aspect-ratio: auto;
    margin: -2rem -2.5rem 0;
  }
}
.products__section--inspireprayer .product-wrap--oneyearbible .product__price-desc {
  top: 10%;
  right: 10%;
}
.products__section--inspireprayer .product-wrap--oneyearbible .product__fields .qty__name {
  padding-top: 0;
}
.products__section--inspireprayer .product-wrap--prayercalendar .product__price-desc {
  z-index: 1;
}
.products__section--inspireprayer .product-wrap--prayercalendar img {
  display: block;
  margin: -2.5rem 0;
  rotate: -5deg;
}
@media (min-width: 48em) {
  .products__section--inspireprayer .product-wrap--prayercalendar img {
    margin: 0;
  }
}

.products__section--inspirewitness {
  background-color: #dcecec;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/bg_lightblue.webp);
}
.products__section--inspirewitness .products__title {
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/title_inspireaboldwitness.webp);
  height: 4.375rem;
}
@media (min-width: 60em) {
  .products__section--inspirewitness .products__title {
    height: 6.25rem;
  }
}
@media (min-width: 84em) {
  .products__section--inspirewitness .products__title {
    height: 7.125rem;
  }
}
@media (min-width: 60em) {
  .products__section--inspirewitness .products__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 55rem;
  }
}
@media (min-width: 48em) {
  .products__section--inspirewitness .product-wrap--heroicfaith {
    grid-column: 1/3;
    display: grid;
    gap: 1.25rem;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
  }
}
.products__section--inspirewitness .product-wrap--heroicfaith .product__price-desc {
  background-color: #657b76;
}
@media (min-width: 48em) {
  .products__section--inspirewitness .product-wrap--heroicfaith .product__price-desc {
    top: 65%;
    right: 75%;
  }
}

.products__section--kids {
  background-color: #516a68;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/bg_darkblue.webp);
}
.products__section--kids .products__title {
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/title_inspirekidsandteens.webp);
  height: 5rem;
}
@media (min-width: 60em) {
  .products__section--kids .products__title {
    height: 7rem;
  }
}
@media (min-width: 84em) {
  .products__section--kids .products__title {
    height: 7.75rem;
  }
}
@media (min-width: 60em) {
  .products__section--kids .products__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 55rem;
  }
}
.products__section--kids .product__name-main {
  color: white;
}
.products__section--kids .product__desc {
  color: white;
}
.products__section--kids .product__qtys {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.products__section--kids .product__desc .note {
  color: rgba(255, 255, 255, 0.75);
}
.products__section--kids .qty__name {
  color: #d2c8b0;
}
.products__section--kids .product-wrap--courageous .product__image {
  margin: -2.5rem;
}
.products__section--kids .product-wrap--courageous .product__price-desc {
  top: 2.5rem;
  right: 2.5rem;
}

.products__section--unshakable {
  background-color: #f0efe6;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/bg_tan.webp);
}
.products__section--unshakable .products__title {
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/title_unshakablefaith.webp);
  height: 3.375rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 60em) {
  .products__section--unshakable .products__title {
    height: 4.5rem;
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 84em) {
  .products__section--unshakable .products__title {
    height: 5.125rem;
  }
}
.products__section--unshakable .products__desc {
  border-bottom: 0.25rem dotted rgba(101, 123, 118, 0.65);
  color: #657b76;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  margin: 0 auto 3.75rem;
  max-width: 90rem;
  padding-bottom: 1.25rem;
  text-align: center;
}
@media (min-width: 60em) {
  .products__section--unshakable .products__desc {
    padding: 0 0 1.875rem;
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
.products__section--unshakable .products__desc-inner {
  max-width: 25rem;
  margin: 0 auto;
}
@media (min-width: 60em) {
  .products__section--unshakable .products__desc-inner {
    max-width: 41.25rem;
  }
}
@media (min-width: 60em) {
  .products__section--unshakable .products__list--study {
    grid-template-columns: repeat(2, 1fr);
    max-width: 55rem;
  }
}
.products__section--unshakable .product-wrap--dvd .product__price-desc {
  background-color: #ccc7b7;
  color: rgba(68, 68, 68, 0.8);
}
.products__section--unshakable .product-wrap--wurmbrand .product__price-desc {
  background-color: #828c63;
  color: white;
}
@media (min-width: 60em) {
  .products__section--unshakable .product-wrap--wurmbrand {
    grid-row: span 2;
  }
}
.products__section--unshakable .product-wrap--study .product__image {
  aspect-ratio: 800/452;
}
.products__section--unshakable .product-wrap--study .product__price-desc {
  top: -2rem;
}

.lp-donate {
  max-width: 80rem;
  margin: 0 auto 5rem;
  display: grid;
  gap: 3.75rem;
}
@media (min-width: 72em) {
  .lp-donate {
    overflow: visible;
    gap: 5rem;
    grid-template-columns: 1fr 1fr;
    padding: 0 2.5rem;
    align-items: center;
  }
}
.lp-donate h2 {
  margin: 0 0 1.5rem;
  background: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/title_globalministry.webp) center top no-repeat;
  background-size: contain;
  text-indent: -999rem;
  height: 5rem;
  margin-bottom: 1rem;
}
@media (min-width: 72em) {
  .lp-donate h2 {
    height: 7rem;
  }
}
@media (min-width: 84em) {
  .lp-donate h2 {
    height: 8.5rem;
    margin-bottom: 1.25rem;
  }
}
.lp-donate.start-animation h2 span,
.lp-donate.start-animation h2 strong, .lp-donate.start-animation h2::after {
  opacity: 1;
  transform: translateY(0);
}
.lp-donate p {
  padding-bottom: 1.875rem;
}
@media (min-width: 84em) {
  .lp-donate p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.lp-donate .field--donation > label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
  font-size: 0.8125rem;
  padding-top: 0;
}
.lp-donate .field--donation > label strong {
  color: #657b76;
  display: block;
  letter-spacing: 0;
  font-size: 16px;
  font-size: 1rem;
  text-transform: none;
}
.lp-donate .field-recurring {
  padding-top: 0;
}
@media (min-width: 48em) {
  .lp-donate .field-recurring {
    padding-left: 1.25rem;
    padding-top: 0.1rem;
  }
}
@media (min-width: 84em) {
  .lp-donate .field-recurring {
    margin-top: 0.375rem;
  }
}
.lp-donate .field-recurring label {
  text-transform: none;
  letter-spacing: normal;
  font-size: 13px;
  font-size: 0.8125rem;
}

.lp-donate__photo {
  margin: 0 auto 3.75rem;
  max-width: 30rem;
  position: relative;
}
@media (min-width: 72em) {
  .lp-donate__photo {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0;
    gap: 0.625rem;
  }
}
.lp-donate__photo img {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 13px 38px rgba(0, 0, 0, 0.25);
  display: block;
  animation: showDonationPhoto 0.5s ease 0.35s both;
  animation-play-state: paused;
  object-fit: cover;
}
.start-animation .lp-donate__photo img {
  animation-play-state: running;
}
@media (min-width: 72em) {
  .lp-donate__photo img {
    box-shadow: 0 13px 38px rgba(0, 0, 0, 0.22);
  }
}
@media (min-width: 72em) {
  .lp-donate__photo img:nth-child(1) {
    aspect-ratio: 1;
  }
}
.lp-donate__photo img:nth-child(2) {
  position: absolute;
  bottom: -5rem;
  width: 62%;
  left: 7.5%;
  animation-delay: 0.5s;
}
@media (min-width: 72em) {
  .lp-donate__photo img:nth-child(2) {
    aspect-ratio: 1.2;
    position: static;
    width: 100%;
    align-self: end;
  }
}
.lp-donate__photo img:nth-child(3) {
  position: absolute;
  top: -10%;
  aspect-ratio: 1;
  width: 28%;
  left: -3%;
  animation-delay: 0.75s;
}
@media (min-width: 72em) {
  .lp-donate__photo img:nth-child(3) {
    aspect-ratio: 1.2;
    position: static;
    width: 100%;
  }
}
.lp-donate__photo img:nth-child(4) {
  position: absolute;
  top: 50%;
  aspect-ratio: 1;
  transform: translateY(-50%);
  width: 28%;
  right: -10%;
  animation-delay: 1s;
}
@media (min-width: 72em) {
  .lp-donate__photo img:nth-child(4) {
    transform: none;
    position: static;
    width: 100%;
  }
}

@keyframes showDonationPhoto {
  0% {
    opacity: 0;
    scale: 0.85;
  }
}
.lp-donate__content {
  margin: 0 auto;
  max-width: 25rem;
}
@media (min-width: 72em) {
  .lp-donate__content {
    max-width: 100%;
    padding: 3.75rem 0;
  }
}

.donations .title,
.ordersummary .title,
.lp-your-email label,
.ordersummary .ordersummary__total .ordersummary__total-label {
  color: #a39662;
}

.lp-share-band {
  margin-top: 7.5rem;
}

.share-band {
  background-color: #657b76;
}

.products {
  margin-bottom: 5rem;
}

.product-wrap {
  position: relative;
}
@media (min-width: 48em) {
  .product-wrap {
    margin-bottom: 0;
  }
}

.product__name {
  position: static;
  margin-bottom: 0.625rem;
}

.product__name-main {
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
  text-wrap: balance;
  font-size: 21px;
  font-size: 1.3125rem;
  padding-bottom: 0;
}

.product__price-desc {
  position: absolute;
  top: -1.25rem;
  background-color: #a39662;
  height: 5.25rem;
  right: 1.25rem;
  width: 5.25rem;
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
  font-size: 10px;
  font-size: 0.625rem;
}
@media (min-width: 48em) {
  .product__price-desc {
    top: 0;
  }
}
.product__price-desc strong {
  font-size: 26px;
  font-size: 1.625rem;
  margin-bottom: 0.25rem;
}

.product__name-sub {
  font-family: Georgia, serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: normal;
  margin-top: 0.375rem;
}
.product__name-sub em {
  font-style: normal;
}

.product__desc {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 0;
}
.product__desc .is-hidden {
  display: none;
}
.product__desc .note {
  font-size: 14px;
  font-size: 0.875rem;
  font-style: italic;
  color: #888;
}
.product__desc .note em {
  font-style: normal;
}

.product__read-more-button {
  background: none;
  color: #9e3135;
  padding: 0;
  box-shadow: none;
  text-decoration: underline;
}
.product__read-more-button:hover {
  color: #9e3135;
  background: none;
  text-decoration: none;
}

.qty__name {
  color: #9e3135;
}

.product__qtys {
  border-color: rgba(0, 0, 0, 0.1);
}

.qty__price {
  border-color: rgba(0, 0, 0, 0.15);
}

.product__offer-desc {
  border-top: 0.125rem solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
  margin-top: 0.25rem;
  text-align: left;
  font-weight: bold;
}

.product-wrap .product__image {
  aspect-ratio: 1;
}

.product-wrap .product__fields .product {
  padding: 0;
  margin: 0;
}
.product-wrap .product__fields .qty__price,
.product-wrap .product__fields .qty__desc {
  display: none;
}
.product-wrap .product__fields .qty__name {
  padding-top: 0.625rem;
  font-weight: normal;
  font-size: 16px;
  font-size: 1rem;
}
.product-wrap .product__fields .qty {
  padding-left: 5rem;
  padding-bottom: 1.5rem;
}
.product-wrap .product__fields .product__image,
.product-wrap .product__fields .product__name,
.product-wrap .product__fields .product__desc {
  display: none;
}
@media (min-width: 60em) {
  .product-wrap .product__fields .product__qtys {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.product-wrap--torchlighters .product__fields .product__qtys,
.product-wrap--oneyearbible .product__fields .product__qtys {
  gap: 0;
  grid-template-columns: 1fr;
}

.lp-end {
  padding: 0 1.875rem;
}

.lp-donations {
  padding: 0 2.5rem 2.5rem;
  max-width: 30rem;
  margin: 0 auto;
}
@media (min-width: 48em) {
  .lp-donations {
    max-width: 60rem;
    padding-bottom: 5rem;
  }
}
.lp-donations h3 {
  color: #9e3135;
  text-transform: uppercase;
  margin-top: 0;
  letter-spacing: 0.2em;
  font-weight: normal;
}
.lp-donations p {
  font-style: italic;
  color: rgba(0, 0, 0, 0.6);
  padding-bottom: 1.5rem;
}
.lp-donations .donations {
  border-bottom: none;
  max-width: 40rem;
  margin: 0 0 2.5rem;
}
@media (min-width: 48em) {
  .lp-donations .donations {
    background-color: #ccc7b7;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.375rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 3.125rem 2.5rem 2.5rem;
    max-width: 43.5rem;
  }
}
.lp-donations .donations .title {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #ddd;
}
@media (min-width: 48em) {
  .lp-donations .donations .title {
    grid-column: 1/3;
  }
}
.lp-donations .donations__note {
  border-top: 1px solid #ddd;
  font-size: 13px;
  font-size: 0.8125rem;
  font-style: italic;
  margin-top: 1.25rem;
  padding: 1.25rem 0 0;
}
@media (min-width: 48em) {
  .lp-donations .donations__note {
    text-align: center;
    grid-column: 1/3;
  }
}
.lp-donations .field--donation {
  margin-bottom: 1.25rem;
}
@media (min-width: 48em) {
  .lp-donations .field--donation {
    margin: 0 1.25rem;
  }
}
@media (min-width: 48em) {
  .lp-donations .field--donation:nth-of-type(2) strong {
    max-width: 13rem;
  }
}
@media (min-width: 48em) {
  .lp-donations .field--donation label {
    padding: 0;
  }
}
@media (min-width: 48em) {
  .lp-donations .field--donation label {
    font-size: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
  }
}
.lp-donations .field--donation label strong {
  color: #9e3135;
}
@media (min-width: 48em) {
  .lp-donations .field--donation label strong {
    padding-top: 0.125rem;
    font-size: 16px;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
    display: block;
  }
}
@media (min-width: 48em) {
  .lp-donations .field--donation .field__input-wrapper {
    position: relative;
    left: 0;
  }
}
@media (min-width: 48em) {
  .lp-donations .field--donation .field-recurring {
    padding-top: 0.25rem;
    padding-left: 1.25rem;
  }
}
@media (min-width: 48em) {
  .lp-donations .field--donation .field-recurring [type=checkbox] {
    left: 0;
  }
}

.lp-donations__special-offer {
  grid-column: 1/3;
  padding-top: 1rem;
  position: relative;
  padding-left: 4rem;
}
@media (min-width: 48em) {
  .lp-donations__special-offer {
    padding-left: 9.5rem;
  }
}
.lp-donations__special-offer strong {
  background-color: #9e3135;
  border-radius: 0.25rem;
  color: white;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
.lp-donations__special-offer::before {
  content: "";
  display: block;
  background-image: url(https://assets.persecution.com/public/graphics/lp_specific/lp_202509_LP7_gifts/intro_atanycost.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 8rem;
  height: 7rem;
  left: -4rem;
  top: 1rem;
  position: absolute;
}
@media (min-width: 48em) {
  .lp-donations__special-offer::before {
    top: 0.625rem;
    left: 0.25rem;
    width: 9.5rem;
  }
}

.lp-continue-submit [type=submit],
.lp-continue-submit .button--processing {
  background-color: #a39662;
}
.lp-continue-submit [type=submit]:hover,
.lp-continue-submit .button--processing:hover {
  background-color: #84794e;
}

.field--free-check {
  display: none;
}