/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 272:0 Unexpected "<"

**/
<style>
  .journal-page {
    min-height: 100vh;
    padding: 0 0 120px;
  }

  /* ══════════════════════════════
     HERO
  ══════════════════════════════ */
  .journal-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 160px 60px 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .journal-hero__breadcrumb {
    display: block;
    font-family: 'Spectral', serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.25);
    margin-bottom: 32px;
  }

  .journal-hero__heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(56px, 7vw, 100px);
    font-weight: 300;
    letter-spacing: -3px;
    line-height: 0.95;
    background: linear-gradient(135deg, #f5f5f5 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 32px;
  }

  .journal-hero__sub {
    font-family: 'Spectral', serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(245, 245, 245, 0.4);
    max-width: 520px;
  }

  /* ══════════════════════════════
     FILTER — tab-style, sits on the border
  ══════════════════════════════ */
  .journal-filter {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .journal-filter::-webkit-scrollbar { display: none; }

  .journal-filter__btn {
    font-family: 'Spectral', serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.25);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 24px 20px 22px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.25s ease, border-color 0.25s ease;
    margin-bottom: -1px;
  }

  .journal-filter__btn:hover { color: rgba(245, 245, 245, 0.6); }

  .journal-filter__btn.is-active {
    color: rgba(245, 245, 245, 0.9);
    border-bottom-color: rgba(245, 245, 245, 0.5);
  }

  /* ══════════════════════════════
     POST INDEX — numbered rows like 01 / 02 / 03 commercial hub
  ══════════════════════════════ */
  .journal-index {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
  }

  .journal-row {
    display: grid;
    grid-template-columns: 56px 160px 1fr 80px;
    gap: 0 40px;
    align-items: center;
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: background 0.2s ease, padding 0.2s ease, margin 0.2s ease;
  }

  .journal-row:hover {
    background: rgba(255, 255, 255, 0.02);
    margin: 0 -60px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .journal-row__num {
    font-family: 'Fraunces', serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(245, 245, 245, 0.18);
  }

  .journal-row__category {
    font-family: 'Spectral', serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.28);
  }

  .journal-row__title {
    font-family: 'Fraunces', serif;
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: 300;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #f5f5f5 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    transition: opacity 0.2s ease;
  }

  .journal-row:hover .journal-row__title { opacity: 0.7; }

  .journal-row__date {
    font-family: 'Spectral', serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(245, 245, 245, 0.18);
    text-align: right;
    white-space: nowrap;
  }

  /* ── Hover image preview ── */
  .journal-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 210px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 200;
    overflow: hidden;
    background: #0a0a0a;
  }

  .journal-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .journal-preview.is-visible { opacity: 1; }

  /* Empty state */
  .journal-empty {
    padding: 80px 0;
    display: none;
  }

  .journal-empty__text {
    font-family: 'Spectral', serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.18);
  }

  /* ══════════════════════════════
     PAGINATION
  ══════════════════════════════ */
  .journal-pagination {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .journal-pagination__btn {
    font-family: 'Spectral', serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.3);
    text-decoration: none;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.25s ease, border-color 0.25s ease;
  }

  .journal-pagination__btn:hover {
    color: rgba(245, 245, 245, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
  }

  .journal-pagination__info {
    font-family: 'Spectral', serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(245, 245, 245, 0.18);
  }

  /* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
  @media screen and (max-width: 860px) {
    .journal-hero    { padding: 120px 24px 60px; }
    .journal-filter  { padding: 0 24px; }
    .journal-filter__btn { padding: 20px 12px 18px; font-size: 9px; }
    .journal-index   { padding: 0 24px; }

    .journal-row {
      grid-template-columns: 40px 1fr;
      grid-template-rows: auto auto;
      gap: 6px 16px;
      padding: 28px 0;
    }

    .journal-row:hover {
      margin: 0 -24px;
      padding-left: 24px;
      padding-right: 24px;
    }

    .journal-row__num      { grid-column: 1; grid-row: 1 / 3; align-self: center; }
    .journal-row__category { grid-column: 2; grid-row: 1; }
    .journal-row__title    { grid-column: 2; grid-row: 2; font-size: 18px; }
    .journal-row__date     { display: none; }
    .journal-preview       { display: none; }
    .journal-pagination    { padding: 0 24px; }
  }
</style>