/** Shopify CDN: Minification failed

Line 9:0 Unexpected bad string token
Line 9:18 Unterminated string token
Line 303:1 Unexpected bad string token
Line 303:2 Unterminated string token

**/
"/* Base Styles */
.article-template {
  max-width: 840px;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  background-color: #fff;
  word-wrap: break-word;
}

/* Hero Section */
.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: 7rem;
  }
}

.article-template__hero-container {
  max-width: 100%;
  margin: 0 auto 3rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-template__hero-small,
.article-template__hero-medium,
.article-template__hero-large {
  width: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  transition: transform 0.5s ease;
}

.article-template__hero-small { height: 18rem; }
.article-template__hero-medium { height: 32rem; }
.article-template__hero-large { height: 48rem; }

.article-template__hero-small:hover,
.article-template__hero-medium:hover,
.article-template__hero-large:hover {
  transform: scale(1.02);
}

@media screen and (min-width: 750px) {
  .article-template__hero-small { height: 28rem; }
  .article-template__hero-medium { height: 42rem; }
  .article-template__hero-large { height: 58rem; }
}

/* Header */
.article-template header {
  margin-top: 4rem;
  margin-bottom: 3rem;
  position: relative;
}

.article-template header::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 6rem;
  height: 0.3rem;
  background: linear-gradient(90deg, #0070f3, #66b1ff);
  border-radius: 0.15rem;
}

.article-template__title {
  font-size: 3.4rem;
  font-weight: 800;
  margin-bottom: 1.8rem;
  line-height: 1.2;
  color: #222;
  letter-spacing: -0.02em;
}

/* Headings */
.article-template__content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 1.8rem;
  color: #222;
  letter-spacing: -0.01em;
}

.article-template__content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 3.2rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.article-template__content h4 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  color: #333;
}

.article-template__content h5 {
  font-size: 1.7rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #555;
  letter-spacing: 0.05em;
}

/* Paragraphs & Links */
.article-template__content p {
  margin: 1.8rem 0;
}

.article-template__content a {
  color: #0070f3;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 112, 243, 0.3);
  transition: all 0.3s ease;
  padding-bottom: 0.1rem;
}

.article-template__content a:hover {
  color: #005bcc;
  border-bottom-color: #0070f3;
}

/* Blockquotes */
.article-template__content blockquote {
  font-style: italic;
  border-left: 4px solid #0070f3;
  padding: 0.8rem 0 0.8rem 2rem;
  margin: 2.5rem 0;
  color: #444;
  background-color: rgba(0, 112, 243, 0.05);
  border-radius: 0 0.5rem 0.5rem 0;
}

/* Images and Videos */
.article-template__content img,
.article-template__content video {
  display: block;
  margin: 3rem auto;
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.article-template__content img:hover,
.article-template__content video:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Tables */
.article-template__content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 3rem 0;
  font-size: 1.5rem;
  overflow-x: auto;
  display: block;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.article-template__content table thead {
  background-color: #f7f9fc;
}

.article-template__content table th,
.article-template__content table td {
  text-align: left;
  padding: 1.4rem;
  border: 1px solid #edf0f7;
}

.article-template__content table th {
  font-weight: 600;
  color: #444;
  border-bottom: 2px solid #e1e5ee;
}

.article-template__content table tr:nth-child(even) {
  background-color: #f9fbff;
}

.article-template__content table tr:hover {
  background-color: #f0f5ff;
}

/* Link Back Button */
.article-template__link {
  display: inline-flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #0070f3;
  text-decoration: none;
  margin-top: 4rem;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  background-color: rgba(0, 112, 243, 0.06);
}

.article-template__link:hover {
  background-color: rgba(0, 112, 243, 0.12);
  transform: translateX(-5px);
}

.article-template__link .icon-wrap {
  margin-right: 0.75rem;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.article-template__link:hover .icon-wrap {
  transform: rotate(180deg) translateX(-3px);
}

/* Comments Section */
.article-template__comment-wrapper {
  border-top: 1px solid #eee;
  padding-top: 4rem;
  margin-top: 6rem;
}

.article-template__comments-comment {
  background: #f8fafc;
  padding: 2.2rem;
  border-radius: 0.75rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.article-template__comments-comment:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.article-template__comments-comment p:last-child {
  margin-bottom: 0;
}

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

.article-template__comment-fields input,
.article-template__comment-fields textarea {
  border: 1px solid #e1e5ee;
  border-radius: 0.5rem;
  padding: 1rem 1.2rem;
  transition: all 0.3s ease;
}

.article-template__comment-fields input:focus,
.article-template__comment-fields textarea:focus {
  border-color: #0070f3;
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.15);
  outline: none;
}

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

/* Back Button Margin */
.article-template__back:last-child {
  margin-bottom: 4rem;
}"