/* ============================================================
   BLOC PRINT — shokola_print
   Section « print & édition » : texte éditorial en colonnes + nuancier.
   CSS scoppé. Tokens framework. Réutilise .shk-section, .shk-wrap,
   .shk-regmark (custom.css).
   ============================================================ */
.shk-print {
    background: var(--color-paper);
    position: relative;
    overflow: hidden;
}

.shk-print-tear {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent 0 60px, var(--shk-line) 60px 61px);
    opacity: .4;
    z-index: 0;
    pointer-events: none;
}

.shk-print-in {
    position: relative;
    z-index: 1;
}

.shk-print-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.shk-print-kicker {
    font-family: var(--font-2);
    font-size: .74rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--color-secondaire);
}

.shk-print-title {
    font-family: var(--font-3);
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.02;
    font-size: clamp(2.4rem, 7vw, 6rem);
    max-width: 14ch;
}

.shk-print-title i {
    color: var(--color-secondaire);
}

.shk-print-body {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(36px, 6vw, 80px);
    align-items: start;
}

.shk-print-cols {
    column-count: 2;
    column-gap: 34px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-ink-2);
}

.shk-print-cols p {
    margin-bottom: 16px;
    break-inside: avoid;
}

.shk-print-cols p:first-child::first-letter {
    font-family: var(--font-3);
    font-size: 3.4em;
    float: left;
    line-height: .78;
    padding: 6px 10px 0 0;
    color: var(--color-secondaire);
    font-weight: 500;
}

.shk-swatches {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.shk-swatch {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--shk-line);
    border-radius: 3px;
    font-family: var(--font-2);
    font-size: .78rem;
    background: var(--color-paper);
}

.shk-swatch .chip {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    flex: none;
    position: relative;
}

.shk-swatch .chip::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12);
}

.shk-swatch .meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.shk-swatch .meta .nm {
    color: var(--color-dark);
    font-weight: 600;
    letter-spacing: .02em;
}

.shk-swatch .meta .vl {
    color: var(--color-ink-soft);
    font-size: .72rem;
}

@media (max-width: 780px) {
    .shk-print-body {
        grid-template-columns: 1fr;
    }
    .shk-print-cols {
        column-count: 1;
    }
}
