main .section-sliver {
    padding: 1.5rem 0;
}

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

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

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

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

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

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

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

main .section-sliver .flex-box > div:nth-of-type(3) .button-like, 
main .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;
}

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

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

main .section-sliver .flex-box > div:nth-of-type(3) .button-like:not(:first-of-type), 
main .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);
}

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

main .section-sliver .flex-box > div:nth-of-type(3) .button-like:not(:first-of-type):hover, 
main .section-sliver .flex-box > div:nth-of-type(3) .button-like:not(:first-of-type):focus, 
main .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);
}

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

@media (min-width: 48rem) { /* 768 px */
    main .section-sliver .flex-box {
        align-items: center;
        display: grid;
        grid-template-columns: 4.5rem 1fr max-content;
    }

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

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

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

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

    main .section-sliver .flex-box > div:nth-of-type(3) {
        grid-column: 3;
        grid-row: 1;
        margin-left: 1.5rem;
    }

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

    main .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 */
    main .section-sliver .flex-box {
        align-items: center;
    }
    
    main .section-sliver .flex-box > div:nth-of-type(3) {
        grid-column: 3;
        grid-row: 1;
        margin-left: 1.5rem;
    }
}