/** Shopify CDN: Minification failed

Line 524:0 Unexpected "}"

**/
/* Add top margin for first element unless it's the hero container */
.article-template > *:first-child:not(.article-template__hero-container) {
  margin-top: 5rem;
}

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

@media screen and (min-width: 1320px) {
  .article-template__hero-container:first-child {
    margin-top: 5rem;
  }
}

/* Smaller image height for more compact header */
.article-template__hero-medium {
  height: 18rem;
}

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

@media screen and (min-width: 750px) {
  .article-template__hero-medium {
    height: 30rem;
  }
  .article-template__hero-large {
    height: 36rem;
  }
}

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

/* Article header styling */
.article-template header {
  margin-top: 4.4rem;
  margin-bottom: 2rem;
  text-align: left;
}

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

/* Title block */
.article-template__title {
  margin-top: 0;
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
  font-family: Playfair Display, Georgia, serif !important;
 
  
}

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

.article-template__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 10rem;
  height: 0.3rem;
  background-color: currentColor;
}

@media (min-width: 767px) {
    .article-template__title {
        font-size: 32px;
        line-height: 40px}}

/* Content block below title */
.article-template__title ~ * {
  font-family: var(--font-heading-family); /* ← CHANGE this font below */
  color: rgba(var(--color-foreground), 0.75);
}

/* Link icons */
.article-template__link .icon {
  width: 1.5rem;
  height: 1.5rem;
  transform: rotate(180deg);
  margin-inline-end: 1rem;
  position: relative;
  top: calc(0rem - var(--font-button-baseline));
}

/* Main content spacing */
.article-template__content {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

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

.article-template__hero-container + .article-template__social-sharing,
.article-template .breadcrumb-wrapper + .article-template__social-sharing {
  display: flex;
  justify-content: center;
}

/* Next/Previous navigation */
.article-template__navigation {
  border-top: 0.1rem solid rgb(var(--color-border));
  border-bottom: 0.1rem solid rgb(var(--color-border));
  padding-top: 3rem;
  padding-bottom: 3rem;
  list-style: none;
}

@media screen and (min-width: 750px) {
  .article-template__navigation {
    padding-top: 5rem;
    padding-bottom: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
  }
}

.article-template__navigation li {
  flex-grow: 1;
  position: relative;
  text-align: center;
}

.article-template__navigation li + li {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.article-template__navigation li + li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 10rem;
  margin-left: -5rem;
  height: 0.1rem;
  background-color: rgb(var(--color-border));
}

.article-template__navigation .h3 {
  font-weight: 400;
}

@media screen and (min-width: 750px) {
  .article-template__navigation .navigation__previous {
    text-align: start;
  }

  .article-template__navigation .navigation__next {
    text-align: end;
  }

  .article-template__navigation li + li {
    padding-top: 0;
    margin-top: 0;
  }

  .article-template__navigation li + li::after {
    top: -50%;
    left: -1.5rem;
    margin-left: 0;
    width: 0.1rem;
    height: 200%;
  }
}

.article-template__navigation a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  color: rgb(var(--color-link));
}

.article-template__navigation .icon {
  margin-inline-start: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  width: 1.5rem;
  height: 1.5rem;
}

.article-template__navigation .navigation__previous .icon {
  margin-inline-start: 0;
  margin-inline-end: 0.8rem;
  transform: scaleX(-1);
}

/* Breadcrumbs */
.article-template .breadcrumb-wrapper {
  margin-top: 5rem;
  margin-bottom: 3rem;
}

.article-template .breadcrumb-wrapper + header {
  margin-top: 3rem;
}

/* Comment section */
.article-template__comment-wrapper {
  margin-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 0.1rem solid rgb(var(--color-border));
}

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

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

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

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

.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 0 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 2rem;
  column-gap: 2rem;
}

.article-template__comments-comment + .article-template__comments-comment {
  border-top: 0.1rem solid rgb(var(--color-border));
}

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

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

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

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

.article-template__comment-warning {
  margin: -1rem 0 3rem;
  color: rgba(var(--color-foreground), 0.7);
}

.article-template__comment-button {
  margin-top: 3rem;
}

@media screen and (min-width: 750px) {
  .article-template__comment-button {
    margin-top: 4rem;
  }
}

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

/* Gravatar and author info */
.comment__gravatar {
  border-radius: 100%;
  max-width: 5.6rem;
  margin-top: 0.6rem;
  display: block;
  height: auto;
}

.comment__author {
  color: rgb(var(--color-foreground));
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.13rem;
}

.comment__date {
  font-size: 1.4rem;
}

.comment__content .rte {
  margin-top: 1rem;
}

/* -------------------------------
   👇 FONTS — This is what you change
---------------------------------- */

body,
h1, h2, h3, h4, h5, h6,
p,
.article-template__content p {
  font-family: 'aktiv-grotesk', sans-serif !important; /* ← your desired font */
}


.article-layout__wrapper {
  display: flex;
  flex-direction: column;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  gap: 4rem;
}

@media screen and (min-width: 990px) {
  .article-layout__wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    gap: 4rem;
  }

  .article-layout__main {
    flex: 0 1 65%;
    max-width: 65%;
    padding-top: 3rem; /* Add top spacing to match sidebar start */
  }

  .article-layout__sidebar {
    flex: 0 1 30%;
    max-width: 30%;
    margin-top: 0; /* 👈 this aligns it with the text, not the image */
  }
}

/* Ensure consistent spacing inside article */
.article-template__title {
  margin-top: 0;
}

.article-template header {
  margin-top: 5rem;
}


.promo-block {
  background: #f7f7f7;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.promo-block img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.promo-block h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.promo-block p {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.promo-block .button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.article-layout__wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media screen and (min-width: 990px) {
  .article-layout__wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 4rem; /* spacing on left */
    padding-right: 4rem; /* spacing on right */
  }

  .article-layout__main {
    width: 65%;
  }

  .article-layout__sidebar {
    width: 35%;
    position: relative;
    top: 0;
  }
}

/* Optional: Prevent sidebar from rising above title spacing */
.article-layout__main,
.article-layout__sidebar {
  margin-top: 2rem;
}

.promo-block {
  background: #f7f7f7;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 0 1px #e1e1e1;
}

.promo-block img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.promo-block h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.promo-block p {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.promo-block .button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.2rem;
}

@media screen and (min-width: 990px) {
  .sidebar-spacer {
    height: 5rem; /* Adjust this based on the distance from top of hero image to blog title */
  }
}

/* === Article Grid Layout (2x2) === */
.article-grid-layout {
  display: grid;
  grid-template-columns: 65% 35%;
  grid-template-rows: auto auto;
  column-gap: 4rem;
  row-gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem; /* slightly more side spacing on mobile */
}

@media screen and (min-width: 800px) {
  .article-grid-layout {
    max-width: 80%; /* 👈 limits total width like in Starface layout */
    padding: 0 4rem;    /* adds more side whitespace on large screens */
  }
}


}

/* Grid regions */
.article-top-left {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.article-top-right {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.article-bottom-left {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.article-bottom-right {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* Responsive fallback for smaller screens */
@media screen and (max-width: 989px) {
  .article-grid-layout {
    display: block;
  }

  .article-bottom-right {
    margin-top: 4rem;
  }
}
/* Reduce top margin on hero image */
.article-template__hero-container {
  margin-top: 2rem !important;
}

/* Optional: remove top margin completely */
.article-template > *:first-child:not(.article-template__hero-container) {
  margin-top: 0 !important;
}

/* Match title/author width with featured image */
.article-header-full {
  max-width: 130rem; /* same as .article-template__hero-container */
  margin: 0 auto;
  padding-right: 15%;
}


/* Style breadcrumb as a section label */
.article-section-label {
  font-family: var(--font-heading-family);
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 700;
  color: rgb(var(--color-foreground));
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

/* Title: Large, left-aligned, strong */
.article-title-custom {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: rgb(var(--color-foreground));
  margin: 0 0 2rem 0;
  text-align: left;
}

/* Remove underline from previous title styling */
.article-template__title::after {
  display: none !important;
}

/* Author byline like "BY WENDY GOULD" */
.article-byline {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1rem;
  color: rgb(var(--color-foreground));
  margin: 0 0 1.5rem 0; /* 👈 reduce bottom margin */
}

/* Remove dot (•) before author if present */
.circle-divider::before {
  display: none !important;
}
.breadcrumb-wrapper {
  display: none;
}

.article-section-label {
  font-family: var(--font-heading-family);
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 700;
  color: rgb(var(--color-foreground));
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-block;
}

.article-section-label:hover {
  text-decoration: underline;
}

.article-title-custom {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
  color: rgb(var(--color-foreground));
  margin: 0 0 2rem 0;
  text-align: left;
}

.article-byline {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1rem;
  color: rgb(var(--color-foreground));
}

/* Remove dotted separator */
.circle-divider::before {
  display: none !important;
}
.article-content-full {
  max-width: 130rem; /* same as hero image */
  margin: 0 auto;
  padding: 0 ;
  font-family: var(--font-heading-family);
  color: rgba(var(--color-foreground), 0.9);
}

/* Section label (e.g. "NEWS") */
.article-section-label {
  font-family: var(--font-heading-family);
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  display: inline-block;
}

/* Blog post title */
.article-title-custom {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  color: #000;
  margin: 0 0 1.5rem 0;
  text-align: left;
}

/* Author line */
.article-byline {
  font-family: var(--font-heading-family);
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #111;
  margin: 0 0 3rem 0;
}

/* Main article body */
.article-content-full {
  font-family: var(--font-heading-family);
  color: #222;
  font-size: 16px;
  line-height: 1.65;
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 ;
}

@media screen and (min-width: 990px) {
  .article-content-full {
    padding: 0 ;
    font-size: 2rem;
  }
}

/* Bold italic highlight (mimic Starface intro emphasis) */
.article-content-full em {
  font-style: italic;
  font-weight: bold;
}



.article-template::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 22rem; /* Mobile default */
  background: linear-gradient(
    to bottom,
    #e7d7d4 0%,
    #feece9 20%,
    #feece9 100%
  );
  box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.08);
  z-index: -1;
}

/* Tablet: 750px and up */
@media screen and (min-width: 750px) {
  .article-template::before {
    height: 30rem;
  }
}

/* Desktop: 990px and up */
@media screen and (min-width: 990px) {
  .article-template::before {
    height: 36rem;
  }
}


.header{
  background: #f1fafa !important;}


.is-blogs {
  background-color: #a0d4d7; /* Replace with exact color if needed */
  padding: 0;
  text-align: center;
  width: 100%;
}

.is-blogs {
  font-family: Playfair Display, Georgia, serif !important;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  color: #000;
}

@media screen and (max-width: 768px) {
  .is-blogs {
    font-size: 1.6rem;
  }
}

