/** Shopify CDN: Minification failed

Line 244:2 Unexpected "{"

**/
.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 CONTENT SYSTEM */
/* ============================= */

.article-template__content .comparison-table-wrapper {
  width: 100%;
  padding: 40px 0;
}

.article-template__content .comparison-table {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-radius: 12px;
  overflow: hidden;
}

/* Header */
.article-template__content .comparison-table thead {
  background-color: #3c6b71;
  text-align: left;
  padding: 20px;
  width: 50%;
}

.article-template__content .comparison-table thead p {
  color: #ffffff;
  margin: 0;
}

.article-template__content .comparison-table thead h3 {
  color: #ffffff;
  margin: 0;
}

/* Body cells */
.article-template__content .comparison-table td {
  padding: 16px;
  vertical-align: top;
}

/* Divider between columns */
.article-template__content .comparison-table td:first-child {
  border-right: 1px solid #eeeeee;
}

/* Lists */
.article-template__content .comparison-table ul {
  margin: 0;
  padding-left: 18px;
}

.article-template__content .comparison-table li {
  margin-bottom: 8px;
}

/* Responsive improvement */
@media screen and (max-width: 749px) {
  .article-template__content .comparison-table thead,
  {
    display: block;
    width: 100%;
  }

  .article-template__content .comparison-table td:first-child {
    border-right: none;
    border-bottom: 1px solid #eeeeee;
  }
}

/* ============================= */
/* CARD SYSTEM (FINAL REAL FIX) */
/* ============================= */

.article-template__content .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
  align-items: stretch;
}

/* Base: cards grow */
.article-template__content .card-container > .info-card {
  flex: 1 1 300px; /* base width */
  min-width: 250px;
  display: flex;
  flex-direction: column;
  height: auto;
}

/* Limit max columns on desktop */
@media (min-width: 990px) {
  .article-template__content .card-container > .info-card {
    flex: 1 1 calc(33.333% - 20px);
  }
}

/* Card */
.article-template__content .info-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-top: 4px solid #3c6b71; /* same as table header */
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Title */
.article-template__content .info-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #3c6b71; /* brand consistency */
}

/* Text */
.article-template__content .info-card p {
  margin: 0;
  line-height: 1.6;
}

/* ============================= */
/* CONTENT BOX SYSTEM (BASE) */
/* ============================= */

.article-template__content .highlight-box,
.article-template__content .highlight-box2,
.article-template__content .strategy-section {
  border-radius: 12px;
  padding: 20px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.article-template__content .highlight-box h3,
.article-template__content .highlight-box2 h3,
.article-template__content .strategy-section h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.article-template__content .highlight-box p,
.article-template__content .highlight-box2 p,
.article-template__content .strategy-section p {
  margin: 0;
  line-height: 1.6;
}

.article-template__content .highlight-box {
  background:rgba(255, 255, 255, 0.92);
  border-left: 4px solid #3c6b71;
}

.article-template__content .highlight-box h3 {
  color: #3c6b71;
}

.article-template__content .highlight-box2 {
  background: #3c6b71;
  color: #ffffff;
}

.article-template__content .highlight-box2 h3 {
  color: #ffffff;
}

.article-template__content .highlight-box2 p {
  color: rgba(255,255,255,0.9);
}

.article-template__content .strategy-section {
  background: #fafafa;
  border: 1px solid #eeeeee;
  border-left: 4px solid #3c6b71;
}

/* Lists inside strategy */
.article-template__content .strategy-section ul {
  margin-top: 10px;
  padding-left: 18px;
}

.article-template__content .strategy-section li {
  margin-bottom: 6px;
}