/** Shopify CDN: Minification failed

Line 189:0 Unexpected "{"
Line 189:1 Expected identifier but found "%"
Line 190:2 Unexpected "="
Line 196:1 Expected identifier but found "%"
Line 198:0 Unexpected "<"
Line 513:0 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;
  margin-top: 0;
}

/* custpm css */
{% comment %}
  ============================================================
  CLOG DESIGNS — Blog Article Page CSS Enhancement
  IMPORTANT: Paste this <style> block at the TOP of
  your existing main-article.liquid — before everything else.
  DO NOT change any existing liquid/HTML code.
  ============================================================
{% endcomment %}

<style>
  /* ============================================================
     ARTICLE TEMPLATE — CLOG DESIGNS STYLE
     Only overrides visual styles — zero functionality change
     ============================================================ */

  /* ── Page background ── */
  .article-template {
    background: #ffffff;
    font-family: inherit;
  }

  /* ── Hero Image ── */
  .article-template__hero-container {
    margin-bottom: 0;
  }

  .article-template__hero-adapt,
  .article-template__hero-small,
  .article-template__hero-medium,
  .article-template__hero-large {
    border-radius: 0 0 20px 20px;
    overflow: hidden;
  }

  .article-template__hero-adapt img,
  .article-template__hero-small img,
  .article-template__hero-medium img,
  .article-template__hero-large img {
    object-fit: cover;
    width: 100%;
    display: block;
  }

  /* ── Article Header ── */
  .article-template .page-width--narrow header,
  .article-template header.page-width--narrow {
    padding-top: 40px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8e0d5;
    margin-bottom: 32px;
  }

  /* Title */
  .article-template__title {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1a1008;
    margin: 0 0 16px;
  }

  /* Date + Author */
  .article-template .circle-divider,
  .article-template .caption-with-letter-spacing {
    font-size: 12px;
    color: #9a8878;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* Circle divider dot */
  .article-template .circle-divider + .caption-with-letter-spacing::before {
    content: '·';
    margin: 0 6px;
    color: #d4a96a;
  }

  /* ── Article Body ── */
  .article-template__content {
    padding-top: 0;
    padding-bottom: 0;
    color: #3d2e22;
    font-size: 16px;
    line-height: 1.85;
  }

  /* Headings inside content */
  .article-template__content h2,
  .article-template__content h3,
  .article-template__content h4 {
    color: #1a1008;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-top: 36px;
    margin-bottom: 12px;
  }

  .article-template__content h2 { font-size: clamp(20px, 2.5vw, 28px); }
  .article-template__content h3 { font-size: clamp(17px, 2vw, 22px); }
  .article-template__content h4 { font-size: 16px; text-transform: uppercase; letter-spacing: 0.08em; color: #d4a96a; }

  /* Paragraphs */
  .article-template__content p {
    margin-bottom: 20px;
    color: #4a3728;
  }

  /* Lists */
  .article-template__content ul,
  .article-template__content ol {
    padding-left: 20px;
    margin-bottom: 20px;
  }

  .article-template__content li {
    margin-bottom: 8px;
    color: #4a3728;
  }

  .article-template__content ul li::marker {
    color: #d4a96a;
  }

  /* Strong / Bold */
  .article-template__content strong {
    color: #1a1008;
    font-weight: 700;
  }

  /* Links inside content */
  .article-template__content a {
    color: #d4a96a;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
  }
  .article-template__content a:hover { color: #b8903a; }

  /* Blockquote */
  .article-template__content blockquote {
    border-left: 3px solid #d4a96a;
    padding: 12px 0 12px 20px;
    margin: 28px 0;
    font-style: italic;
    font-size: 17px;
    color: #1a1008;
    background: #faf8f5;
    border-radius: 0 8px 8px 0;
  }

  /* Images inside content */
  .article-template__content img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    margin: 24px 0;
  }

  /* Horizontal rule */
  .article-template__content hr {
    border: none;
    border-top: 1px solid #e8e0d5;
    margin: 36px 0;
  }

  /* ── Share Button ── */
  .article-template__social-sharing {
    padding-top: 20px;
    padding-bottom: 32px;
    border-top: 1px solid #e8e0d5;
    margin-top: 8px;
  }

  .article-template__social-sharing .share-button__button {
    border: 1px solid #e8e0d5;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1008;
    background: #faf8f5;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
    margin: auto;
  }
  .article-template__social-sharing .share-button__button:hover {
    border-color: #d4a96a;
    background: #fff;
  }

  /* ── Back to Blog Link ── */
  /* .article-template__back {
    padding: 32px 0 48px;
    border-top: 1px solid #e8e0d5;
    margin-top: 8px;
  } */

  .article-template__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1008;
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
  }
  .article-template__link:hover {
    color: #d4a96a;
    gap: 12px;
  }

  .article-template__link .icon-wrap svg {
    /* transform: rotate(180deg); */
  }

  /* ── Comments Section ── */
  .article-template__comment-wrapper {
    background: #faf8f5;
    border-top: 1px solid #e8e0d5;
  }

  .article-template__comment-wrapper h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #1a1008;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
  }

  .article-template__comments-comment {
    background: #fff;
    border: 1px solid #e8e0d5;
    border-radius: 10px;
    padding: 20px 22px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #4a3728;
  }

  .article-template__comments-comment footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #e8e0d5;
  }

  /* Comment form fields */
  .article-template__comment-fields .field,
  .article-template__comment-wrapper .field {
    margin-bottom: 16px;
  }

  .article-template__comment-wrapper .field__input,
  .article-template__comment-wrapper .text-area {
    border: 1px solid #e8e0d5;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #1a1008;
    background: #fff;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
  }
  .article-template__comment-wrapper .field__input:focus,
  .article-template__comment-wrapper .text-area:focus {
    border-color: #d4a96a;
    box-shadow: 0 0 0 3px rgba(212,169,106,0.12);
    outline: none;
  }

  /* Comment submit button */
  .article-template__comment-wrapper input[type="submit"].button,
  .article-template__comment-wrapper .button {
    background: #1a1008;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 13px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.22s, transform 0.18s;
  }
  .article-template__comment-wrapper input[type="submit"].button:hover,
  .article-template__comment-wrapper .button:hover {
    background: #d4a96a;
    color: #1a1008;
    transform: translateY(-2px);
  }

  /* Form success / error messages */
  .article-template .form-status {
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  /* ── Responsive ── */
  @media (max-width: 749px) {
    .article-template__title {
      font-size: 26px;
    }

    .article-template__content {
      font-size: 15px;
      line-height: 1.75;
    }

    .article-template__hero-adapt,
    .article-template__hero-small,
    .article-template__hero-medium,
    .article-template__hero-large {
      border-radius: 0;
    }
  }
</style>

