/** Shopify CDN: Minification failed

Line 20:12 Expected identifier but found whitespace
Line 20:14 Unexpected "{"
Line 20:23 Expected ":"
Line 20:51 Unexpected "{"
Line 20:60 Expected ":"
Line 20:95 Unexpected "{"
Line 20:104 Expected ":"
Line 20:133 Expected ":"
Line 134:14 Expected identifier but found whitespace
Line 134:16 Unexpected "{"
... and 5 more hidden warnings

**/


/* CSS from section stylesheet tags */
.blog-category-nav {
    padding: {{ section.settings.padding_top }}px {{ section.settings.padding_horizontal }}px {{ section.settings.padding_bottom }}px;
    background-color: transparent;
  }

  .blog-category-nav__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .blog-category-nav__header {
    text-align: center;
    margin-bottom: 48px;
  }

  .blog-category-nav__title {
    font-size: 28px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    color: #000000;
    margin: 0;
    letter-spacing: -0.5px;
  }

  .blog-category-nav__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px;
    padding: 0 16px;
  }

  .blog-category-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
  }

  .blog-category-nav__item:hover {
    transform: translateY(-8px);
  }

  .blog-category-nav__item:hover .blog-category-nav__label {
    color: #98bbad;
  }

  .blog-category-nav__icon-wrapper {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .blog-category-nav__item:hover .blog-category-nav__icon-wrapper {
    background-color: rgba(152, 187, 173, 0.08);
  }

  .blog-category-nav__icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .blog-category-nav__icon-placeholder {
    font-size: 48px;
    font-weight: 700;
    color: #98bbad;
  }

  .blog-category-nav__label {
    font-size: 18px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 140px;
  }

  /* Responsive - Tablet */
  @media (max-width: 768px) {
    .blog-category-nav__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      padding: 0 12px;
    }

    .blog-category-nav__icon-wrapper {
      width: 100px;
      height: 100px;
      margin-bottom: 18px;
    }

    .blog-category-nav__label {
      font-size: 16px;
    }

    .blog-category-nav__title {
      font-size: 24px;
    }
  }

  /* Responsive - Mobile */
  @media (max-width: 480px) {
    .blog-category-nav {
      padding: {{ section.settings.padding_top | times: 0.7 | round }}px 12px {{ section.settings.padding_bottom | times: 0.7 | round }}px;
    }

    .blog-category-nav__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      padding: 0;
    }

    .blog-category-nav__icon-wrapper {
      width: 80px;
      height: 80px;
      margin-bottom: 12px;
    }

    .blog-category-nav__label {
      font-size: 14px;
      max-width: 120px;
    }

    .blog-category-nav__title {
      font-size: 20px;
    }

    .blog-category-nav__header {
      margin-bottom: 36px;
    }
  }

  /* Accessibilité */
  .blog-category-nav__item:focus-visible {
    outline: 2px solid #98bbad;
    outline-offset: 4px;
    border-radius: 8px;
  }