  .amz-card {
            display: flex;
            gap: 24px;
            background: var(--cream-w);
            border: 1px solid var(--bdr);
            border-radius: 12px;
            padding: 24px;
            margin: 36px 0;
            box-shadow: var(--sh-s);
            transition: box-shadow 0.3s ease;
            align-items: center;
          }

          .amz-card:hover {
            box-shadow: var(--sh-m);
          }

          .amz-img-wrap {
            flex-shrink: 0;
            width: 140px;
            height: 140px;
            background: #fff;
            border-radius: 8px;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--bdr);
          }

          .amz-img-wrap img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
          }

          .amz-info {
            flex-grow: 1;
          }

          .amz-title {
            font-family: "Lora", serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--head);
            margin-bottom: 8px;
            line-height: 1.3;
          }

          .amz-desc {
            font-size: 0.9rem;
            color: var(--sec);
            margin-bottom: 16px;
            line-height: 1.6;
          }

          .amz-btn {
            display: inline-block;
            background: var(--teal);
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 10px 20px;
            border-radius: 6px;
            transition: background 0.2s ease;
            font-family: "Source Sans 3", sans-serif;
          }

          .amz-btn:hover {
            background: var(--teal-l);
          }

          .amz-tag {
            font-family: "JetBrains Mono", monospace;
            font-size: 0.7rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: block;
            margin-top: 12px;
          }

          /* Mobile Responsive */
          @media (max-width: 600px) {
            .amz-card {
              flex-direction: column;
              text-align: center;
              padding: 20px;
            }
            .amz-img-wrap {
              width: 100%;
              height: 180px;
            }
          }
