.srv.v6 {
    --bdr-clr-o: .2;
    --srv-v6-icn-s: 2.5rem;
    --srv-v6-icn-path-1: var(--white);
    --srv-v6-icn-path-2: var(--buttons);

    .srv-icn {
        font-size: var(--srv-v6-icn-s);
        flex: 0 0 auto;
    }
    .services-v6-header {
        display: grid;
        gap: 1.5rem;

        @media screen and (min-width: 1280px) {
            grid-template-columns: 1fr 1fr;
            align-items: end;
        }
    }

    li {
        /* Make every card a full-height column so cards in a row match
           heights and the button can pin to the bottom. The grid + li
           already stretch to the tallest card in the row. */
        .crd {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .bg-bx {
            border: 1px solid hsl(from var(--bdr-clr) h s l / .08);

            padding: 1.78rem;
        }
        p {
            color: hsl(from var(--text-color) h s l / .6);
        }

        /* Title + description grows to fill the slack, pushing the
           button to the bottom edge regardless of content length. */
        .ato {
            flex: 1 1 auto;
        }

        .btn-bx {
            margin-top: auto;
            align-self: flex-end;
        }

        .btn svg {
            > path:first-child {
                fill: var(--srv-v6-icn-path-1);
                opacity: 1;
            }

            > path:nth-child(2) {
                fill: var(--srv-v6-icn-path-2);
            }
        }
    }

    .fnt_pl {
        font-family: var(--fnt-t);
    }
}
