/**
* Applying the appropriate font styling to the classes generated by the quill package.
*/
@keyframes Fadeup {
  from {
    opacity: 0;
    transform: translate(0%, 25%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes Fadedown {
  from {
    opacity: 0;
    transform: translate(0%, -25%);
  }
  to {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}
@keyframes Faderight {
  from {
    opacity: 0;
    transform: translate(25%, 0%);
  }
  to {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}
@keyframes Fadeleft {
  from {
    opacity: 0;
    transform: translate(-25%, 0%);
  }
  to {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}
@keyframes LoadSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
* {
  display: flex;
}

article {
  flex-direction: row-reverse;
  gap: 100px;
  flex-wrap: wrap;
  margin-top: 7em;
}
article .Content {
  flex-basis: 40em;
  min-width: 1em;
  flex-grow: 1.75;
  max-width: 100%;
}
article .Content .Subtitle {
  font-family: var(--workSans);
  font-size: 1.3em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--orange);
}
article .Content .TitleWrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.2em;
  border-bottom: 0.15em dashed var(--orange);
  gap: 2em;
  margin: 0.8em 0 0.9em 0;
}
article .Content .TitleWrapper .Title {
  font-family: var(--contraltoBig);
  font-size: clamp(3em, 4vw, 4em);
  font-weight: 400;
}
article .Content .TitleWrapper .LikeButton {
  width: fit-content;
  flex-shrink: 0;
}
article .Content .TitleWrapper .LikeButton .Heart {
  height: 100%;
  width: auto;
  transition: transform 0.1s linear;
}
article .Content .TitleWrapper .LikeButton .Heart .Fill {
  transform: translate(50%, 50%) scale(0);
  transition: transform 0.15s ease-in-out;
}
article .Content .TitleWrapper .LikeButton .Heart .Fill.Activated {
  transform: translate(0%, 0%) scale(1);
}
article .Content .TitleWrapper .LikeButton .Heart:hover {
  transform: scale(1.11);
  cursor: pointer;
}
@keyframes Activated {
  from {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.125) rotate(-10deg);
  }
  50% {
    transform: scale(1.25) rotate(0deg);
  }
  75% {
    transform: scale(1.125) rotate(10deg);
  }
  to {
    transform: scale(1) rotate(0deg);
  }
}
article .Content .TitleWrapper .LikeButton {
  height: 2.25em;
}
article .Content .SocialLinkWrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 0.3em;
}
article .Content .SocialLinkWrapper .SocialLink {
  font-family: var(--workSans);
  padding: 0.5em 1.5em;
  color: var(--offWhite);
  fill: var(--offWhite);
  background: none;
  box-shadow: 0 0 0 0.05em var(--offWhite);
  border-radius: 10em;
  text-decoration: none;
  width: fit-content;
  text-align: center;
  transition: background-color 0.1s linear, transform 0.1s linear, color 0.1s linear, fill 0.1s linear;
  box-shadow: 0 0 0 0.07em var(--offWhite);
  padding: 0.35em 1em 0.35em 1.25em;
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
}
article .Content .SocialLinkWrapper .SocialLink:hover {
  cursor: pointer;
  background-color: var(--offWhite);
  color: var(--black);
  fill: var(--black);
  transform: scale(1.05);
}
article .Content .SocialLinkWrapper .SocialLink svg {
  height: 1.1em;
  width: auto;
  fill: inherit;
  margin-left: -0.4em;
}
article .Content .SocialLinkWrapper .SocialLink span {
  font-size: 1em;
}
article .Content .HTMLContent {
  font-size: 1.1em;
  margin-top: 4em;
  overflow: hidden;
  gap: 2em;
}
article .Content .HTMLContent * {
  line-height: 140%;
}
article .Gallery {
  flex-basis: 25em;
  flex-grow: 1;
  min-width: 1em;
  gap: 3em;
  max-width: 100%;
  height: fit-content;
}
article .Gallery .MerchantCard {
  width: 100%;
}
article .Gallery .MerchantCard .TopRow {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.5em;
  padding-bottom: 0.7em;
}
article .Gallery .MerchantCard .TopRow .Logo {
  flex-shrink: 0;
  width: 4.75em;
  height: 4.75em;
  border-radius: 0.3em;
  overflow: hidden;
}
article .Gallery .MerchantCard .TopRow .Logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
article .Gallery .MerchantCard .TopRow .Name {
  flex-basis: 10em;
  flex-grow: 1;
  font-family: var(--kepler);
  font-weight: 300;
  font-size: 2.5em;
}
article .Gallery .MerchantCard .TopRow .LikeButton {
  width: fit-content;
  flex-shrink: 0;
}
article .Gallery .MerchantCard .TopRow .LikeButton .Heart {
  height: 100%;
  width: auto;
  transition: transform 0.1s linear;
}
article .Gallery .MerchantCard .TopRow .LikeButton .Heart .Fill {
  transform: translate(50%, 50%) scale(0);
  transition: transform 0.15s ease-in-out;
}
article .Gallery .MerchantCard .TopRow .LikeButton .Heart .Fill.Activated {
  transform: translate(0%, 0%) scale(1);
}
article .Gallery .MerchantCard .TopRow .LikeButton .Heart:hover {
  transform: scale(1.11);
  cursor: pointer;
}
@keyframes Activated {
  from {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.125) rotate(-10deg);
  }
  50% {
    transform: scale(1.25) rotate(0deg);
  }
  75% {
    transform: scale(1.125) rotate(10deg);
  }
  to {
    transform: scale(1) rotate(0deg);
  }
}
article .Gallery .MerchantCard .TopRow .LikeButton {
  flex-shrink: 0;
  height: 2.25em;
}
article .Gallery .MerchantCard .Divider {
  width: 100%;
  border-bottom: 0.1em solid var(--orange);
}
article .Gallery .MerchantCard .BottomRow {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2em;
}
article .Gallery .MerchantCard .BottomRow .Tags {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.3em 1em;
  padding-top: 0.4em;
  padding-left: 0.4em;
}
article .Gallery .MerchantCard .BottomRow .Tags .Tag {
  color: var(--offWhite);
  padding: 0.1em;
  background: linear-gradient(to bottom, var(--offWhite) 0%, var(--offWhite) 100%);
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 0.05em 0.07em;
  border-radius: 0em;
  text-decoration: none;
  transition: background-size 0.15s ease-in-out, color 0.15s ease-in-out, border-radius 0.1s linear;
  font-size: 1.2em;
  font-weight: 300;
  width: fit-content;
  text-transform: uppercase;
}
article .Gallery .MerchantCard .BottomRow .Tags .Tag:hover {
  background-size: 0.05em 100%;
  color: var(--black);
  cursor: pointer;
  border-radius: 0.1em;
}
article .Gallery .MerchantCard .BottomRow .PageLink {
  color: var(--offWhite);
  text-decoration: none;
  font-size: 1.25em;
  font-weight: 300;
  border-left: 0.08em solid var(--orange);
  border-right: 0.08em solid var(--orange);
  border-bottom: 0.08em solid var(--orange);
  padding: 0.35em 1.5em;
  white-space: nowrap;
  transition: color 0.1s linear, background-color 0.1s linear;
}
article .Gallery .MerchantCard .BottomRow .PageLink:hover {
  background-color: var(--orange);
  color: var(--black);
}
article .Gallery .GalleryWrapper {
  width: 100%;
  flex-shrink: 0;
  height: fit-content;
  overflow: hidden;
}
article .Gallery .GalleryWrapper .ImageSlider {
  flex-direction: row;
  transition: transform 0.5s ease-in-out;
  gap: 1em;
}
article .Gallery .GalleryWrapper .ImageSlider .ImageWrapper {
  height: clamp(15em, 15vw, 20em);
  flex-shrink: 0;
}
article .Gallery .GalleryWrapper .ImageSlider .ImageWrapper img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
article .Gallery .Selector {
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 1em;
  margin-top: 1em;
}
article .Gallery .Selector .Left, article .Gallery .Selector .Right {
  align-items: center;
  justify-content: center;
}
article .Gallery .Selector .Left button, article .Gallery .Selector .Right button {
  padding: 0.75em;
  border-radius: 10em;
  transition: background-color 0.1s linear, transform 0.1s linear;
}
article .Gallery .Selector .Left button svg, article .Gallery .Selector .Right button svg {
  fill: var(--offWhite);
  height: 2em;
  width: auto;
  transition: fill 0.1s linear;
}
article .Gallery .Selector .Left button:hover, article .Gallery .Selector .Right button:hover {
  background-color: var(--offWhite);
  transform: scale(1.1);
  cursor: pointer;
}
article .Gallery .Selector .Left button:hover svg, article .Gallery .Selector .Right button:hover svg {
  fill: var(--black);
}
article .Gallery .Selector .Left {
  padding-right: 0.75em;
  margin-right: 0.7em;
  border-right: 0.13em dashed var(--orange);
}
article .Gallery .Selector .Right {
  padding-left: 0.75em;
  margin-left: 0.7em;
  border-left: 0.13em dashed var(--orange);
}
article .Gallery .Selector .Pagination {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}
article .Gallery .Selector .Pagination .Wrapper {
  height: 4.5em;
  width: 4.5em;
  border-radius: 0.3em;
  overflow: hidden;
  opacity: 0.75;
  transition: box-shadow 0.15s linear, transform 0.15s ease-in-out, opacity 0.15s linear;
}
article .Gallery .Selector .Pagination .Wrapper:hover, article .Gallery .Selector .Pagination .Wrapper.Activated {
  box-shadow: 0 0 0 0.2em var(--orange);
  transform: scale(1.05);
  opacity: 1;
  cursor: pointer;
}
article .Gallery .Selector .Pagination .Wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
article .GalleryPlaceholder {
  flex-basis: 25em;
  flex-grow: 1;
  min-width: 1em;
  max-width: 100%;
  pointer-events: none;
}

.Suggested {
  background-color: var(--offWhite);
  width: 100%;
  min-height: 15em;
  margin-top: 7em;
}
.Suggested .Contain {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4em 5em;
  padding: 6em 0 8em 0;
}
.Suggested .Contain .TitleRow {
  flex-direction: row;
  flex-basis: 100%;
  justify-content: space-between;
  border-bottom: 0.2em solid var(--orange);
  gap: 2em;
  margin-bottom: -1em;
}
.Suggested .Contain .TitleRow h2 {
  font-size: clamp(3em, 4.5vw, 4.5em);
  color: var(--black);
  font-family: var(--contraltoBig);
  font-weight: 500;
  line-height: 80%;
}
.Suggested .Contain .TitleRow a {
  font-size: clamp(1em, 1.4vw, 1.4em);
  font-weight: 500;
  color: var(--white);
  background-color: var(--orange);
  height: fit-content;
  padding: 0.5em 2.5em;
  margin-top: auto;
  border-top: 0.15em solid var(--orange);
  border-right: 0.15em solid var(--orange);
  border-left: 0.15em solid var(--orange);
  transition: color 0.1s linear, background-color 0.1s linear;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.Suggested .Contain .TitleRow a:hover {
  color: var(--black);
  background-color: var(--offWhite);
}
.Suggested .Contain .Previous, .Suggested .Contain .Next {
  flex-basis: 15em;
  flex-grow: 1;
  flex-direction: row;
  gap: 1em;
  align-items: center;
}
.Suggested .Contain .Previous .SpotlightCard {
  border-left: 0.125em solid var(--black);
  padding-left: 2.5em;
}
.Suggested .Contain .Next {
  justify-content: flex-end;
}
.Suggested .Contain .Next .SpotlightCard {
  border-right: 0.125em solid var(--black);
  padding-right: 2.5em;
}
.Suggested .Contain .Button {
  flex-direction: column;
  gap: 0.25em;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.25em, 1.5vw, 1.5em);
  text-decoration: none;
  color: var(--black);
  padding: 0.5em 0;
  width: 5em;
  border-radius: 0.5em;
  transition: background-color 0.1s linear, color 0.1s linear, fill 0.1s linear, transform 0.1s linear;
}
.Suggested .Contain .Button svg {
  width: 1em;
  height: auto;
}
.Suggested .Contain .Button:hover {
  transform: scale(1.05);
  background-color: var(--black);
  color: var(--offWhite);
  fill: var(--offWhite);
}
@media (max-width: 1200px) {
  .Suggested .Contain .Button {
    display: none;
  }
  .Suggested .Contain .Previous, .Suggested .Contain .Next {
    justify-content: center;
  }
  .Suggested .Contain .SpotlightCard {
    border: 0px !important;
    padding: 0px !important;
  }
}
.Suggested .Contain .SpotlightCard {
  flex-direction: column;
  min-width: 40%;
  max-width: 50em;
  flex-basis: 30em;
  flex-grow: 1;
  gap: 1em;
}
.Suggested .Contain .SpotlightCard .PreviewImage {
  width: 100%;
  height: 17.5em;
  background-color: var(--white);
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
.Suggested .Contain .SpotlightCard .PreviewImage:hover img {
  opacity: 0.3;
}
.Suggested .Contain .SpotlightCard .PreviewImage img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: opacity 0.1s linear;
}
.Suggested .Contain .SpotlightCard .TitleWrapper {
  width: 100%;
  align-items: center;
  flex-direction: column;
}
.Suggested .Contain .SpotlightCard .TitleWrapper .Row {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.5em;
}
.Suggested .Contain .SpotlightCard .TitleWrapper .Title {
  font-family: var(--kepler);
  font-size: clamp(2em, 2.5vw, 2.5em);
  line-height: 95%;
  margin: 0;
}
.Suggested .Contain .SpotlightCard .TitleWrapper .Title a {
  color: var(--orange);
  padding: 0.1em;
  background: linear-gradient(to bottom, var(--orange) 0%, var(--orange) 100%);
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 0.05em 0em;
  border-radius: 0em;
  text-decoration: none;
  transition: background-size 0.15s ease-in-out, color 0.15s ease-in-out, border-radius 0.1s linear;
  padding: 0.1em 0.1em 0.2em 0.1em;
  color: var(--black);
  font-weight: 400;
}
.Suggested .Contain .SpotlightCard .TitleWrapper .Title a:hover {
  background-size: 0.05em 100%;
  color: var(--black);
  cursor: pointer;
  border-radius: 0.1em;
}
.Suggested .Contain .SpotlightCard .TitleWrapper .Title a:hover {
  border-radius: 0.1em 0.1em 0 0;
}
.Suggested .Contain .SpotlightCard .TitleWrapper .LikeButton {
  width: fit-content;
  flex-shrink: 0;
}
.Suggested .Contain .SpotlightCard .TitleWrapper .LikeButton .Heart {
  height: 100%;
  width: auto;
  transition: transform 0.1s linear;
}
.Suggested .Contain .SpotlightCard .TitleWrapper .LikeButton .Heart .Fill {
  transform: translate(50%, 50%) scale(0);
  transition: transform 0.15s ease-in-out;
}
.Suggested .Contain .SpotlightCard .TitleWrapper .LikeButton .Heart .Fill.Activated {
  transform: translate(0%, 0%) scale(1);
}
.Suggested .Contain .SpotlightCard .TitleWrapper .LikeButton .Heart:hover {
  transform: scale(1.11);
  cursor: pointer;
}
@keyframes Activated {
  from {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.125) rotate(-10deg);
  }
  50% {
    transform: scale(1.25) rotate(0deg);
  }
  75% {
    transform: scale(1.125) rotate(10deg);
  }
  to {
    transform: scale(1) rotate(0deg);
  }
}
.Suggested .Contain .SpotlightCard .TitleWrapper .LikeButton {
  height: 2.25em;
}
.Suggested .Contain .SpotlightCard .TitleWrapper .Divider {
  width: 100%;
  border-bottom: 0.15em solid var(--orange);
}
.Suggested .Contain .SpotlightCard .TitleWrapper .Tags {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.25em 1em;
  padding-top: 0.25em;
}
.Suggested .Contain .SpotlightCard .TitleWrapper .Tags .Tag {
  font-size: clamp(1.1em, 1.25vw, 1.25em);
  font-family: var(--workSans);
  text-transform: uppercase;
  font-weight: 300;
  white-space: nowrap;
}
.Suggested .Contain .SpotlightCard .TitleWrapper .Tags .Tag a {
  padding: 0.1em;
  color: var(--black);
  padding: 0.1em;
  background: linear-gradient(to bottom, var(--black) 0%, var(--black) 100%);
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 0.05em 0.1em;
  border-radius: 0em;
  text-decoration: none;
  transition: background-size 0.15s ease-in-out, color 0.15s ease-in-out, border-radius 0.1s linear;
  font-weight: 400;
}
.Suggested .Contain .SpotlightCard .TitleWrapper .Tags .Tag a:hover {
  background-size: 0.05em 100%;
  color: var(--black);
  cursor: pointer;
  border-radius: 0.1em;
}
.Suggested .Contain .SpotlightCard .TitleWrapper .Tags .Tag a:hover {
  color: var(--offWhite);
}
.Suggested .Contain .SpotlightCard .TitleWrapper .ReadMore {
  padding: 0.5em 2.5em;
  font-size: clamp(0.8em, 2.5vw, 1.1em);
  color: var(--offWhite);
  font-family: var(--workSans);
  border-bottom: 0.075em solid var(--orange);
  border-left: 0.075em solid var(--orange);
  border-right: 0.075em solid var(--orange);
  text-decoration: none;
  white-space: nowrap;
  margin-bottom: auto;
  transition: color 0.1s linear, background-color 0.1s linear, font-weight 0.1s linear;
  background-color: var(--orange);
  border-bottom: 0.15em solid var(--orange);
  border-left: 0.15em solid var(--orange);
  border-right: 0.15em solid var(--orange);
}
.Suggested .Contain .SpotlightCard .TitleWrapper .ReadMore:hover {
  color: var(--black);
  background-color: var(--offWhite);
}
.Suggested .Contain .SpotlightCard .PreviewText {
  font-family: var(--workSans);
  font-weight: 300;
  font-size: clamp(1.1em, 1.25vw, 1.25em);
  line-height: 140%;
  margin-top: 0.25em;
}
.Suggested .Contain .SpotlightCard {
  flex-basis: 15em;
  flex-grow: 1;
  max-width: 28em;
}

/*# sourceMappingURL=SpotlightArticle.css.map */
