.share-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 34px 0 4px;
    padding: 18px 0;
    border-top: 1px solid var(--border-lt);
    border-bottom: 1px solid var(--border-lt);
}

.share-label {
    margin-right: auto;
    color: var(--text-soft);
    font-family: "DM Mono", monospace;
    font-size: .66rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.share-button {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: rgba(255, 253, 250, .72);
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.share-button:hover,
.share-button:focus-visible {
    border-color: rgba(33, 122, 86, .35);
    background: rgba(33, 122, 86, .08);
    color: var(--mint);
    outline: none;
}

@media (max-width: 640px) {
    .share-strip {
        align-items: flex-start;
    }

    .share-label {
        width: 100%;
        margin-right: 0;
    }
}
