/* PROJECT STORY */
    .story-card {
      padding: 18px 20px;
      border-radius: var(--r2);
      background: rgba(4, 12, 28, .8);
      border: 1px solid rgba(59, 130, 246, .18);
      margin-bottom: 16px;
    }

    .story-card .story-title {
      font-family: 'Syne', sans-serif;
      font-size: 16px;
      font-weight: 800;
      color: var(--st);
      margin-bottom: 10px;
    }

    .story-card .story-body {
      font-size: 13px;
      color: var(--tx);
      line-height: 1.7;
    }

    .story-card .story-body p {
      margin-bottom: 8px;
    }

    .story-card .story-body b {
      color: #93c5fd;
    }

    .story-sections {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 14px;
    }

    .story-sec {
      padding: 12px 14px;
      border-radius: var(--r3);
      background: rgba(8, 18, 42, .8);
      border: 1px solid var(--sk2);
    }

    .story-sec .ss-title {
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .9px;
      color: var(--mu);
      margin-bottom: 8px;
    }

    .story-sec ul {
      list-style: none;
      display: grid;
      gap: 5px;
    }

    .story-sec ul li {
      font-size: 12px;
      color: var(--tx);
      display: flex;
      gap: 7px;
      align-items: flex-start;
    }

    .story-sec ul li::before {
      content: '▸';
      color: var(--bl);
      flex-shrink: 0;
      font-size: 10px;
      margin-top: 2px;
    }
