.proof-strip {
    padding: 30px 0;
    border-block: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .045);
    backdrop-filter: blur(16px);
}

.proof-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.proof-line p {
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
    line-height: 1.55;
}

.proof-mark {
    width: 132px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(52, 144, 255, .42);
    background: radial-gradient(circle, rgba(52, 144, 255, .28), rgba(255, 255, 255, .04));
    font-family: 'Unbounded', sans-serif;
    font-size: 25px;
    color: var(--owu-green);
    box-shadow: 0 22px 70px rgba(52, 144, 255, .2);
}

.proof-mark-since {
    font-family: 'Commissioner', sans-serif;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: lowercase;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 2px;
}

@media screen and (max-width: 860px) {
    .proof-line {
        grid-template-columns: 1fr;
    }

    .proof-mark {
        width: 106px;
        justify-self: center;
    }
}