/* Center the item */
.centering {
  margin: auto !important;
}

/* Adds bottom margin */
.block-margin {
  margin-bottom: 2.5em !important;
}

/* Gold background used in header section */
.header-gold {
  background: rgb(209, 179, 91);
  background: -moz-linear-gradient(
    130deg,
    rgba(209, 179, 91, 1) 10%,
    rgba(243, 231, 180, 1) 30%,
    rgba(209, 179, 91, 1) 80%,
    rgba(243, 231, 180, 1) 100%
  );
  background: -webkit-linear-gradient(
    130deg,
    rgba(209, 179, 91, 1) 10%,
    rgba(243, 231, 180, 1) 30%,
    rgba(209, 179, 91, 1) 80%,
    rgba(243, 231, 180, 1) 100%
  );
  background: linear-gradient(
    130deg,
    rgba(209, 179, 91, 1) 10%,
    rgba(243, 231, 180, 1) 30%,
    rgba(209, 179, 91, 1) 80%,
    rgba(243, 231, 180, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d1b35b",endColorstr="#d1b35b",GradientType=1);
}

/* Gold background for other elements */
.gold {
  background: rgb(209, 179, 91);
  background: -moz-linear-gradient(
    130deg,
    rgba(209, 179, 91, 1) 10%,
    rgba(243, 231, 180, 1) 30%,
    rgba(235, 208, 119, 1) 55%,
    rgba(243, 231, 180, 1) 75%,
    rgba(209, 179, 91, 1) 100%
  );
  background: -webkit-linear-gradient(
    130deg,
    rgba(209, 179, 91, 1) 10%,
    rgba(243, 231, 180, 1) 30%,
    rgba(235, 208, 119, 1) 55%,
    rgba(243, 231, 180, 1) 75%,
    rgba(209, 179, 91, 1) 100%
  );
  background: linear-gradient(
    130deg,
    rgba(209, 179, 91, 1) 10%,
    rgba(243, 231, 180, 1) 30%,
    rgba(235, 208, 119, 1) 55%,
    rgba(243, 231, 180, 1) 75%,
    rgba(209, 179, 91, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d1b35b",endColorstr="#d1b35b",GradientType=1);
}

/* Gold gradient for title text */
.gold-text {
  background: rgba(93, 48, 0, 1);
  background: -moz-linear-gradient(
    130deg,
    rgba(93, 48, 0, 1) 10%,
    rgba(146, 117, 30, 1) 30%,
    rgba(120, 83, 1, 1) 55%,
    rgba(146, 117, 30, 1) 75%,
    rgba(93, 48, 0, 1) 100%
  );
  background: -webkit-linear-gradient(
    130deg,
    rgba(93, 48, 0, 1) 10%,
    rgba(146, 117, 30, 1) 30%,
    rgba(120, 83, 1, 1) 55%,
    rgba(146, 117, 30, 1) 75%,
    rgba(93, 48, 0, 1) 100%
  );
  background: linear-gradient(
    130deg,
    rgba(93, 48, 0, 1) 10%,
    rgba(146, 117, 30, 1) 30%,
    rgba(120, 83, 1, 1) 55%,
    rgba(146, 117, 30, 1) 75%,
    rgba(93, 48, 0, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5d3000",endColorstr="#5d3000",GradientType=1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* adds gradient border to element */
.gold-border {
  position: relative;
}
.gold-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 4px;
  background: linear-gradient(
      100deg,
      rgba(209, 179, 91, 1) 10%,
      rgba(243, 231, 180, 1) 30%,
      rgba(235, 208, 119, 1) 60%,
      rgba(243, 231, 180, 1) 80%,
      rgba(209, 179, 91, 1) 100%
    )
    border-box;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none; /* lets user to interact with elements inside pseudo element */
}

/* Makes the exit animation smoother */
.wp-block-button {
  transition: all 0.5s;
}

/* Adds animation with letter-spacing */
.wp-block-button:hover {
  letter-spacing: 1px;
  transition: 0.2s;
}

/* adjusts the button paddings to match font bottom paddings */
.wp-block-button__link {
  padding-top: 20px !important;
}

a.subscriber-text-link {
  display: block !important;
  margin: 16px auto 0 !important;
  text-align: center;
  font-size: 16px;
}

@media (max-width: 1090px) {
  .itemlist {
    flex-wrap: wrap !important;
  }
  .item {
    flex-basis: 100% !important;
    overflow-wrap: normal;
    word-break: normal;
  }
  .wp-container-core-columns-is-layout-4 {
    gap: 0;
  }
  .break {
    padding-top: 20px !important;
  }
}

@media (max-width: 781px) {
    .title {
        max-width: 200px !important;
    }
    .wp-block-button__link {
      padding-left: 30px !important;
      padding-right: 30px !important;
    }
    .mobile-padding {
      padding: 40px 15px 40px 15px !important;
    }
  }
