/** Shopify CDN: Minification failed

Line 14:14 Expected identifier but found whitespace
Line 14:16 Unexpected "{"
Line 14:25 Expected ":"
Line 14:51 Expected ":"
Line 15:17 Expected identifier but found whitespace
Line 15:19 Unexpected "{"
Line 15:28 Expected ":"
Line 15:57 Expected ":"

**/
.article-hero {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.article-hero .page-width {
  margin-inline: auto;
  padding-inline: 16px;
}

@media (min-width: 768px) {
   .article-hero .page-width { 
     padding-inline: calc( 64px );
   }
}

@media (min-width: 990px) {
   .article-hero .page-width { 
     padding-inline: calc( 64px + 88px );
   }
}

.article-hero__image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    background: #f4f4f4;
    max-width: 1900px;
    margin-inline: auto;
    max-height: 600px;
    overflow: hidden;
}

.article-hero__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.breadcrumb {
  margin-bottom: 48px;
  color: #6B7280;
  font-size: 14px;
}

.breadcrumb a {
  text-decoration: none;
  color: inherit;
}

.article-hero__meta-info {
    margin-bottom: 16px;
    font-size: 16px;
    color: #6B7280;
    font-weight: 600;
}

.article-hero__separator {
  margin: 0 8px;
}

.article-hero__main-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

@media (min-width: 768px) {
    .article-hero__main-grid {
        display: grid;
        grid-template-columns: minmax(0px , 510px) 1fr;
        align-items: center;
        gap: 24px;
    }
}

.article-hero__title {
  margin: 0 0 24px 0;
  line-height: 1.2;
  font-size: 32px;
}

@media (min-width: 768px) {
    .article-hero__title {
        font-size: 40px;
    }
}

.article-hero__excerpt {
  line-height: 1.6;
}

.article-hero__share {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.share-label {
  font-size: 16px;
  text-transform: uppercase;
}

.share-icons {
  display: flex;
  gap: 15px;
}

.share-icons a, .copy-url-btn {
  color: #222;
  transition: opacity 0.2s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.share-icons a:hover, .copy-url-btn:hover {
  opacity: 1;
}

.copy-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: #ffffff;
  padding: 12px 24px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #eee;
}

.copy-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media screen and (max-width: 749px) {
  
  .article-hero__share {
    align-items: flex-start;
  }
}