/* ==========================================================================
   Book Lines Divider — Smith 2.0 (Figma node 10754:5864)
   Gold "book spine" rule motif: two rows of offset gold segments.
   ========================================================================== */

.book-lines {
    /* Figma Book Lines V1: exactly 40px tall — the 2px vertical padding sat
       the top rule 2px low and pushed the bottom rule outside the section. */
    padding: 0 clamp(20px, 5vw, 64px);
    background-color: transparent;
}

.book-lines__inner {
    position: relative;
    max-width: 1280px;
    height: 40px;
    margin: 0 auto;
}

.book-lines__seg {
    position: absolute;
    height: 2px; /* Figma hairline weight */
    background-color: var(--color-selective-yellow, #f0b200);
}

/* Bottom row */
.book-lines__seg--1 { left: 0;      width: 23.9%; bottom: 0; } /* Path 3513 */
.book-lines__seg--2 { left: 51.6%;  width: 48.4%; bottom: 0; } /* Path 3514 */

/* Top row */
.book-lines__seg--3 { left: 65.9%;  width: 34.1%; top: 0; }    /* Path 3516 */
.book-lines__seg--4 { left: 21.7%;  width: 11.8%; top: 0; }    /* Path 3515 */


/* BugZap #60 / #69 / #79 — "lost a line, should be 4 (see others)".
   The V2 variant was plotted off the older Figma V2 frames: three segments
   at 3px, with seg--4 hidden outright. The Agentis design export has no V2 plot —
   every divider on the site uses the four-segment 2px V1 geometry above
   (verified pixel-identical against the reference: 306 / 620 / 436 / 151).
   The --v2 class is left in place on existing content; it simply no longer
   changes anything. */
