/** Shopify CDN: Minification failed

Line 217:2 Unexpected "<"

**/
    .learn-hero {
      background: var(--ink);
      padding: clamp(20px, 2.5vw, 32px) var(--gutter);
    }
    .learn-hero-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .learn-hero-eyebrow {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 8px;
    }
    .learn-hero h1 {
      font-family: var(--font-display);
      font-size: 45px;
      color: var(--paper);
      line-height: 0.95;
    }
    .learn-hero-sub {
      font-size: 14px;
      font-weight: 300;
      color: var(--paper);
      margin-top: 10px;
      max-width: 420px;
      line-height: 1.6;
    }

    /* ---- Sub nav / filter bar ---- */
    .learn-filter {
      background: #fff;
      border-bottom: 1px solid var(--line);
      position: sticky;
      top: 0;
      z-index: 10;
    }
    .learn-filter-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      align-items: center;
      padding: 0 var(--gutter);
      overflow-x: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .learn-filter-inner::-webkit-scrollbar { display: none; }
    .learn-filter-btn {
      padding: 14px 20px;
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(17,17,17,0.4);
      cursor: pointer;
      transition: color 0.15s, border-color 0.15s;
      white-space: nowrap;
    }
    .learn-filter-btn:hover { color: var(--ink); }
    .learn-filter-btn.active {
      color: var(--ink);
      border-bottom-color: var(--sky);
    }

    /* ---- Canvas ---- */
    body { background: var(--paper); min-height: 100vh; }

    .lib-wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 48px);
    }

    /* ---- Callout ---- */
    .lib-callout {
      background: #fff;
      border-left: 3px solid var(--sky);
      padding: 16px 20px;
      margin-bottom: 32px;
      font-size: 15px;
      font-weight: 300;
      color: var(--ink-2);
      line-height: 1.6;
    }
    .lib-callout strong { color: var(--ink); font-weight: 600; letter-spacing: 0.02em; }

    /* ---- Grid (2 cols on desktop, 1 on mobile) ---- */
    .lib-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    @media (max-width: 720px) { .lib-grid { grid-template-columns: 1fr; } }

    /* ---- Card ---- */
    .lib-card {
      background: #fff;
      border: 1px solid var(--line);
      padding: 28px 28px 32px;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .lib-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(17,17,17,0.08);
      border-color: var(--ink);
    }
    .lib-card a {
      color: inherit;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .lib-card-tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sky-deep);
      margin-bottom: 10px;
    }
    .lib-card-title {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: clamp(24px, 2.4vw, 32px);
      line-height: 1;
      letter-spacing: 0.02em;
      color: var(--ink);
      margin: 0 0 14px;
    }
    .lib-card-desc {
      font-size: 14px;
      font-weight: 300;
      color: var(--ink-2);
      line-height: 1.65;
      margin: 0 0 22px;
      flex: 1;
    }
    .lib-card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: auto;
    }
    .lib-card-read {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink-3);
    }
    .lib-card-cta {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink);
      padding-bottom: 4px;
      border-bottom: 1.5px solid var(--ink);
    }
    .lib-card:hover .lib-card-cta { color: var(--sky-deep); border-color: var(--sky-deep); }

    /* ---- Featured / Start Here card ---- */
    .lib-card.rec {
      border: 2px solid var(--ink);
      position: relative;
    }
    .lib-card.rec::after {
      content: 'Featured';
      position: absolute;
      top: -10px;
      right: 20px;
      background: var(--ink);
      color: var(--paper);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 4px 10px;
    }

    /* ---- Footnote ---- */
    .lib-foot {
      margin-top: 40px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
      font-size: 12px;
      font-weight: 300;
      color: var(--ink-3);
      line-height: 1.6;
    }

    /* ---- Scroll reveal ---- */
    .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.4s ease, transform 0.4s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  </style>
</head>
