.article-template > *:first-child:not(.article-template__hero-container) {
  margin-top: 5rem;
}

@media screen and (min-width: 750px) {
  .article-template > *:first-child:not(.article-template__hero-container) {
    margin-top: calc(5rem + var(--page-width-margin));
  }
}

.article-template__hero-container {
  max-width: 130rem;
  margin: 0 auto;
}

.article-template__hero-small {
  height: 11rem;
}

.article-template__hero-medium {
  height: 22rem;
}

.article-template__hero-large {
  height: 33rem;
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .article-template__hero-small {
    height: 22rem;
  }

  .article-template__hero-medium {
    height: 44rem;
  }

  .article-template__hero-large {
    height: 66rem;
  }
}

@media screen and (min-width: 990px) {
  .article-template__hero-small {
    height: 27.5rem;
  }

  .article-template__hero-medium {
    height: 55rem;
  }

  .article-template__hero-large {
    height: 82.5rem;
  }
}

.article-template header {
  margin-top: 4.4rem;
  margin-bottom: 2rem;
  line-height: calc(0.8 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .article-template header {
    margin-top: 5rem;
  }
}

.article-template__title {
  margin: 0;
}

.article-template__title:not(:only-child) {
  margin-bottom: 1rem;
}

.article-template__link {
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.article-template__link .icon-wrap {
  display: flex;
  margin-right: 1rem;
  transform: rotate(180deg);
}

.article-template__content {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.article-template__social-sharing {
  margin-top: 3rem;
}

.article-template__social-sharing + header,
.article-template__social-sharing + .article-template__content {
  margin-top: 1.5rem;
}

.article-template__comment-wrapper {
  margin-top: 5rem;
  padding: 2.7rem 0;
}

@media screen and (min-width: 750px) {
  .article-template__comment-wrapper {
    margin-top: 6rem;
    padding: 3.6rem 0;
  }
}

.article-template__comment-wrapper h2 {
  margin-top: 0;
}

.article-template__comments {
  margin-bottom: 5rem;
}

@media screen and (min-width: 750px) {
  .article-template__comments {
    margin-bottom: 7rem;
  }
}

.article-template__comments-fields {
  margin-bottom: 4rem;
}

.article-template__comments-comment {
  color: rgba(var(--color-foreground), 0.75);
  background-color: rgb(var(--color-background));
  margin-bottom: 1.5rem;
  padding: 2rem 2rem 1.5rem;
}

@media screen and (min-width: 750px) {
  .article-template__comments-comment {
    padding: 2rem 2.5rem;
  }
}

.article-template__comments-comment p {
  margin: 0 0 1rem;
}

.article-template__comment-fields > * {
  margin-bottom: 3rem;
}

@media screen and (min-width: 750px) {
  .article-template__comment-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 4rem;
  }
}

.article-template__comment-warning {
  margin: 2rem 0 2.5rem;
}

@media screen and (min-width: 990px) {
  .article-template__comments .pagination-wrapper {
    margin: 5rem 0 8rem;
  }
}

.article-template__back:last-child {
  margin-bottom: 3.2rem;
}
.article-book-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 35px;
  align-items: start;
  margin: 70px 0;
}

.article-book-card__image img {
  width: 100%;
  border-radius: 3px;
}

.article-book-card__label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: lowercase;
  opacity: 0.5;
  margin-bottom: 10px;
}

.article-book-card__content h3 {
  font-size: 20px;
  margin: 0 0 6px 0;
}

.article-book-card__author {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 20px;
}

.article-book-card__genreRow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  justify-content: flex-end;
}

.article-book-card__genreLine {
  width: 42px;
  height: 1px;
  background: rgba(0, 0, 0, 0.22);
  flex: 0 0 auto;
}

.article-book-card__genre {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.52);
  line-height: 1;
  text-align: right;
}

.article-book-card__tropes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.article-book-card__trope {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--trope-bg, #f7d4e4);
  border: 1px solid color-mix(in srgb, var(--trope-bg, #f7d4e4) 78%, #ffffff 22%);
  color: var(--trope-text, #8f1d53);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.article-book-card__trope:hover,
.article-book-card__trope:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--trope-bg, #f7d4e4) 68%, #ffffff 32%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  background: color-mix(in srgb, var(--trope-bg, #f7d4e4) 88%, #ffffff 12%);
}

.article-book-card__ratings {
  margin-bottom: 18px;
}

.article-book-card__ku {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.article-book-card__ku--yes {
  color: #1f7a45;
}

.article-book-card__ku--no {
  color: #b23a3a;
}

.article-book-card__buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.article-book-card__buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #e85a9b;
  border: 1px solid #e85a9b;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b0b0b;
  text-decoration: none;
  transition: 0.25s ease;
}

.article-book-card__buttons a:hover {
  background: #ff8ac7;
  border-color: #ff8ac7;
  color: #0b0b0b;
}

.article-book-card__buttons .article-book-card__button--amazon {
  background: #ffffff;
  border-color: #ffffff;
  color: #e85a9b;
}

.article-book-card__buttons .article-book-card__button--amazon:hover {
  background: #fff4fa;
  border-color: #fff4fa;
  color: #d94c8e;
}

.article-book-card__buttons .article-book-card__button--bookshop {
  background: #e85a9b;
  border-color: #e85a9b;
  color: #ffffff;
}

.article-book-card__buttons .article-book-card__button--bookshop:hover {
  background: #ff8ac7;
  border-color: #ff8ac7;
  color: #ffffff;
}

.article-book-card__buttonText--short {
  display: none;
}

.article-book-card__newsletter {
  display: inline-block;
  font-size: 14px;
  color: #e86aa5; /* soft pink */
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.article-book-card__newsletter:hover {
  opacity: 0.7;
}
@media screen and (max-width: 749px) {
  .article-book-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .article-book-card__image {
    max-width: 160px;
  }
}
.article-book-card__newsletter {
  color: #e86aa5 !important;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: opacity 0.2s ease;
}

.article-book-card__newsletter:hover {
  opacity: 0.7;
}
.article-signoff {
  margin: 80px 0 60px 0;
  text-align: left;
}

.article-template__content .article-signoff__link {
  color: #e86aa5;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
}

.article-template__content .article-signoff__link:hover {
  opacity: 0.7;
}

/* Shopify-style blog quick stats */
.article-template__content .blog-quickstats {
  margin: 3.2rem 0 4rem;
  padding: clamp(1.2rem, 2.5vw, 1.65rem);
  border: 1px solid rgba(232, 90, 155, .42);
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(232, 90, 155, .09), rgba(255, 255, 255, .025)),
    #171315;
  box-shadow: 0 1.8rem 4rem rgba(0, 0, 0, .26);
  color: #f6f6f6;
  text-transform: lowercase;
}

.article-template__content .blog-quickstats__head {
  margin: 0 0 1rem;
  padding: 0 0 .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.article-template__content .blog-quickstats__kicker {
  margin: 0;
  font-family: "Cormorant Garamond", "Cormorant", Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3.45rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: 0;
  text-transform: lowercase;
  color: #ff9ccb;
}

.article-template__content .blog-quickstats__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
  margin: 0;
}

.article-template__content .blog-quickstats__row {
  min-width: 0;
  margin: 0;
  padding: .9rem 1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .035);
}

.article-template__content .blog-quickstats__row--wide {
  grid-column: 1 / -1;
}

.article-template__content .blog-quickstats dt {
  margin: 0 0 .35rem;
  font-family: "Cormorant Garamond", "Cormorant", Georgia, serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: lowercase;
  color: rgba(246, 246, 246, .58);
}

.article-template__content .blog-quickstats dd {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: #f7f1f4;
  text-transform: lowercase;
}

.article-template__content .blog-quickstats__scale,
.article-template__content .blog-quickstats__dot {
  color: rgba(246, 246, 246, .56);
}

.article-template__content .blog-quickstats__dot {
  display: inline-block;
  margin: 0 .48rem;
}

.article-template__content .blog-quickstats__availability {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  font-weight: 800;
}

.article-template__content .blog-quickstats__availability--yes {
  color: #74e0a4;
}

.article-template__content .blog-quickstats__availability--no {
  color: #ff7f8f;
}

@media screen and (max-width: 749px) {
  .article-template__content .blog-quickstats {
    margin: 2.4rem 0 3rem;
    padding: 1rem;
    border-radius: 1.35rem;
  }

  .article-template__content .blog-quickstats__head {
    margin-bottom: .9rem;
    padding-bottom: .85rem;
  }

  .article-template__content .blog-quickstats__kicker {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .article-template__content .blog-quickstats__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-template__content .blog-quickstats__row {
    padding: .82rem;
    border-radius: 1rem;
  }

  .article-template__content .blog-quickstats__row--mobile-wide {
    grid-column: 1 / -1;
  }

  .article-template__content .blog-quickstats dd {
    font-size: .96rem;
  }
}

/* FINAL INLINE BLOG BOOK CTA STANDARD */
.article-template__content .article-book-card__buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
}

.article-template__content .article-book-card__buttons .article-book-card__button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:44px !important;
  padding:12px 18px !important;
  border-radius:0 !important;
  border:1px solid transparent !important;
  box-sizing:border-box !important;
  font-size:12px !important;
  font-weight:700 !important;
  letter-spacing:.08em !important;
  text-transform:uppercase !important;
  text-decoration:none !important;
  transition:.25s ease !important;
}

.article-template__content .article-book-card__buttons .article-book-card__button--amazon{
  background:#ffffff !important;
  border-color:#ffffff !important;
  color:#e85a9b !important;
}

.article-template__content .article-book-card__buttons .article-book-card__button--amazon:hover,
.article-template__content .article-book-card__buttons .article-book-card__button--amazon:focus-visible{
  background:#fff4fa !important;
  border-color:#fff4fa !important;
  color:#d94c8e !important;
}

.article-template__content .article-book-card__buttons .article-book-card__button--bookshop{
  background:#e85a9b !important;
  border-color:#e85a9b !important;
  color:#ffffff !important;
}

.article-template__content .article-book-card__buttons .article-book-card__button--bookshop:hover,
.article-template__content .article-book-card__buttons .article-book-card__button--bookshop:focus-visible{
  background:#ff8ac7 !important;
  border-color:#ff8ac7 !important;
  color:#ffffff !important;
}

@media screen and (max-width: 749px) {
  .article-template__content .article-book-card__buttons {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .article-template__content .article-book-card__buttons a {
    width: 100% !important;
    min-height: 46px !important;
    padding: 10px 8px !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    letter-spacing: .06em !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .article-template__content .article-book-card__buttonText--full {
    display: none !important;
  }

  .article-template__content .article-book-card__buttonText--short {
    display: inline !important;
  }
}
