/** Shopify CDN: Minification failed

Line 189:0 Expected "}" to go with "{"

**/
/* =========================================================
   DoubleZero Blog: Instagram Embeds
   - 2-up grid on desktop
   - 1-up on mobile
   - Consistent single embeds
   - Optional full-width featured embed
   ========================================================= */

/* Reset Instagram inline sizing quirks */
.instagram-media {
  max-width: none;
}

/* === Instagram Grid (2-up desktop, 1-up mobile) === */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 32px 0;
}

.insta-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.insta-grid .instagram-media {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

@media (max-width: 1024px) {
  .insta-grid {
    grid-template-columns: 1fr;
  }
}

/* === Standard Single Instagram Embed (column-sized) === */
.insta-single {
  width: 100%;
  display: block;
  margin: 32px 0;
}

.insta-single .instagram-media {
  display: block !important;
  width: 100% !important;
  max-width: 500px !important; /* matches grid column width */
  margin: 0 auto 6px !important;
  float: none !important;
}

/* === Instagram Video Credit === */
.insta-credit {
  display: block;
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.85em;
  color: #666;
  text-align: left;
}

/* === Full-Width Featured Instagram Embed (exception case) === */
.insta-single--full {
  width: 100%;
  display: block;
  margin: 40px 0;
}

.insta-single--full .instagram-media {
  width: 100% !important;
  max-width: 900px !important; /* hero size, editorial */
  margin: 0 auto 8px !important;
  display: block !important;
  float: none !important;
}

.insta-single--full .insta-credit {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* =========================================================
   Blog Typography & Spacing
   ========================================================= */

.blog-article p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-article h2 {
  margin-top: 32px;
  margin-bottom: 20px;
  line-height: 1.25;
}

.blog-article h3,
.blog-article h4,
.blog-article h5,
.blog-article h6 {
  margin-top: 24px;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* === Blog Figures (images + captions) === */
.blog-article figure {
  margin: 0 0 24px;
  text-align: left;
}

.blog-article figure img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
}

.blog-article figcaption {
  font-size: 0.9em;
  font-style: italic;
  color: #555;
  text-align: left;
  margin-top: 6px;
  line-height: 1.4;
}
/* Globo equal product card heights */
.spf-product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.spf-product-card__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.spf-product__info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.spf-product-card__title {
    min-height: 48px;
    line-height: 1.4;
    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.spf-product-card__price-wrapper {
    min-height: 24px;
}

.spf-product__form {
    margin-top: auto;

/* Collection page spacing fix
Purpose:
- Reduces the gap between collection rich text sections
  and the product search/filter/product grid area.
- Applies only to collection pages.
*/

.template-collection .page-collections {
  padding-top: 0 !important;
}

/* Mobile: tighter collection spacing */
@media screen and (max-width: 768px) {
  .template-collection .page-collections {
    padding-top: 0 !important;
  }
}
