/* =========================================================
   Shortcode: [plus_acf_lines]  —  Project Highlights
   Renders ACF "value — label" lines as an editorial stat strip.
   Markup:
     .plus-acf-lines              responsive grid wrapper
       .plus-acf-lines__item        one highlight
         .plus-acf-lines__value       the metric (e.g. 5+, 10K+)
         .plus-acf-lines__label       the description
   Brand: Controlled Blackout Studio — monochrome, Space Grotesk,
   square edges, fine hairline rules, tabular figures. Tuned for the
   light (white) section it currently sits in.
   ========================================================= */

.plus-acf-lines {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 40px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.plus-acf-lines__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(0, 0, 0, 0.16); /* fine editorial rule */
    font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
}

.plus-acf-lines__value {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #050505; /* blackout */
    font-variant-numeric: tabular-nums;
}

.plus-acf-lines__label {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.01em;
    color: #5f5f5f; /* muted on light */
}

/* On a dark (blackout) section, swap to the inverted palette:
.plus-acf-lines__item { border-top-color: rgba(255, 255, 255, 0.14); }
.plus-acf-lines__value { color: #f5f5f5; }
.plus-acf-lines__label { color: rgba(255, 255, 255, 0.58); }
*/
