/** Shopify CDN: Minification failed

Line 161:19 Expected identifier but found whitespace
Line 161:21 Unexpected "{"
Line 161:30 Expected ":"
Line 161:60 Expected identifier but found "!"
Line 162:8 Expected identifier but found whitespace
Line 162:10 Unexpected "{"
Line 162:19 Expected ":"
Line 162:43 Expected identifier but found "!"

**/


/* CSS from section stylesheet tags */
.article-template {
  margin-bottom: 3rem;
}

.article-header {
  margin-bottom: 2rem;
}

.article-title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.article-meta {
  color: rgba(var(--color-foreground), 0.75);
  font-size: 0.9rem;
}

.article-featured-image {
  margin-bottom: 2rem;
}

.article-featured-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.article-content {
  font-size: 1.3rem;
  line-height: 1.8;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.article-content img {
  max-width: 100%;
  height: auto;
}

.content-box {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--color-background);
  border: 1px solid rgba(var(--color-foreground), 0.1);
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(var(--color-foreground), 0.05);
}

.content-box__heading {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.content-box__button {
  margin-top: 1rem;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 2rem 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.instagram-container {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.article-social-sharing {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}

.article-social-sharing__label {
  margin-right: 1rem;
}

.article-social-sharing__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;  /* Reduced from 36px */
  height: 30px;  /* Reduced from 36px */
  border-radius: 50%;
  margin-right: 0.8rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.article-social-sharing__link:hover {
  opacity: 0.8;
}

.article-social-sharing__link--facebook {
  background-color: #1877F2;
}

.article-social-sharing__link--x {
  background-color: #000000;  /* Updated to X's black color */
}

.article-social-sharing__link--pinterest {
  background-color: #E60023;
}

.article-social-sharing__link--linkedin {
  background-color: #0077B5;
}

.social-icon {
  width: 12px;  /* Reduced from 16px */
  height: 12px;  /* Reduced from 16px */
  fill: currentColor;
}
.sidebar-cta {
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 1.5rem;
  background-color: {{ section.settings.background_color }} !important;
  color: {{ section.settings.text_color }} !important;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 150px;
}

.sidebar-cta__title {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.sidebar-cta__content {
  margin-bottom: 1rem;
}

.sidebar-cta__button {
  display: inline-flex; 
  align-items: center;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  text-decoration: underline; /* Changed from none to underline */
  font-weight: 500;
  padding: 10px 20px;
  min-width: 50px;
  max-width: 100px;
  text-align: left;
  margin-left: 0;
  justify-content: flex-start;
  align-self: flex-start;
  position: relative; /* Ensure positioning works */
}

.sidebar-cta__arrow {
  margin-left: 0.5rem;
}
.blog-toc {
  position: sticky;
  top: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(var(--color-foreground), 0.1);
  border-radius: 4px;
  background: var(--color-background);
}

.blog-toc__title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.blog-toc__content ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.blog-toc__content li {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  line-height: 1.6rem;
}

.blog-toc__content a {
  color: rgba(var(--color-foreground), 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-toc__content a:hover {
  color: rgba(var(--color-foreground), 1);
}

.blog-toc__content .toc-h2 {
  padding-left: 0;
}

.blog-toc__content .toc-h3 {
  padding-left: 0;
}

.blog-toc__content .toc-h4 {
  padding-left: 2rem;
}