.sliver-padded {
    padding: 3rem 0;
}

.section-sliver .flex-box > div:not(:last-of-type) {
    margin-bottom: 1.5rem;
}

.section-sliver .flex-box > div:first-of-type {
    display: none;
}

.section-sliver .flex-box > div p:last-of-type {
    margin-bottom: 0;
}

.section-sliver .flex-box > div:nth-of-type(2) h2 {
    margin-bottom: 0;
}

.section-sliver .flex-box > div:nth-of-type(2) p {
    margin-bottom: 0;
}

.section-sliver .flex-box > div:nth-of-type(2) h2 + p {
    margin-top: 0.5rem;
}

.section-sliver .flex-box > div:nth-of-type(3) .button-like, 
.section-sliver .flex-box > div:nth-of-type(3) .button-like:visited {
    border: 2px solid var(--color-link-normal);
    display: flex;
    flex-wrap: wrap;
    width: max-content;
}

.section-sliver .flex-box > div:nth-of-type(3) .button-like:hover, 
.section-sliver .flex-box > div:nth-of-type(3) .button-like:focus, 
.section-sliver .flex-box > div:nth-of-type(3) .button-like:active {
    border-color: var(--color-link-hover);
}

.section-sliver .flex-box > div:nth-of-type(3) .button-like:not(:last-of-type) {
    margin-bottom: 1rem;
}

.section-sliver .flex-box > div:nth-of-type(3) .button-like:not(:first-of-type), 
.section-sliver .flex-box > div:nth-of-type(3) .button-like:not(:first-of-type):visited {
    background-color: transparent;
    border-color: var(--color-link-normal);
    color: var(--color-link-normal);
}

.section-sliver .flex-box > div:nth-of-type(3) .button-like:not(:first-of-type) svg,
.section-sliver .flex-box > div:nth-of-type(3) .button-like:not(:first-of-type):visited svg {
    fill: var(--color-link-normal);
}

.section-sliver .flex-box > div:nth-of-type(3) .button-like:not(:first-of-type):hover, 
.section-sliver .flex-box > div:nth-of-type(3) .button-like:not(:first-of-type):focus, 
.section-sliver .flex-box > div:nth-of-type(3) .button-like:not(:first-of-type):active {
    background-color: transparent;
    border-color: var(--color-link-hover);
    color: var(--color-link-hover);
}

.section-sliver .flex-box > div:nth-of-type(3) .button-like:not(:first-of-type):hover svg, 
.section-sliver .flex-box > div:nth-of-type(3) .button-like:not(:first-of-type):focus svg, 
.section-sliver .flex-box > div:nth-of-type(3) .button-like:not(:first-of-type):active svg {
    fill: var(--color-link-hover);
}

.solutions-container .solution-content .section-sliver {
    border-bottom: 1px solid var(--color-border);
    border-top: 1px solid var(--color-border);
    padding: 1.5rem 0;
}

@media (min-width: 48rem) { /* 768 px */
    .section-sliver .flex-box {
        display: grid;
        gap: 1.5rem;
        grid-template-columns: 4rem auto;
    }

    .section-sliver .flex-box:has(.no-cta) {
        grid-template-columns: 3rem 1fr;
    }

    .section-sliver .flex-box > div:not(:last-of-type) {
        margin-bottom: 0;
    }

    .section-sliver .flex-box > div:first-of-type {
        display: block;
        grid-column: 1;
        grid-row: 1;
        width: 3rem;
    }

    .section-sliver .flex-box > div:first-of-type svg {
        fill: var(--color-foreground);
        display: block;
        margin: 0;
        width: 3rem;
    }

    .section-sliver .flex-box > div:nth-of-type(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .section-sliver .flex-box > div:nth-of-type(2) h2 {
        font-size: var(--font-size-heading-3);
    }

    .section-sliver .flex-box > div:nth-of-type(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .section-sliver .flex-box > div:nth-of-type(3) .button-like:is(:link,:visited) {
        align-items: center;
        display: inline-flex;
    }

    .section-sliver .flex-box > div:nth-of-type(3) .button-like:not(:last-of-type) {
        margin-bottom: 0;
        margin-right: 1rem;
    }
}

@media (min-width: 64rem) { /* 1024 px */
    .section-sliver .flex-box {
        align-items: center;
        grid-template-columns: 4rem 1fr auto;
    }
    
    main:not(.solution-block-page) .section-sliver .flex-box > div:nth-of-type(3) {
        grid-column: 3;
        grid-row: 1;
        margin-left: 1.5rem;
    }
}