.values {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: calc(30px + 3vw);
}

.value-tag {
    font: bold calc(11px + 0.6vw) "Courier New", Courier, monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--navy);
    background-color: transparent;
    border: 2px solid var(--navy);
    border-radius: 999px;
    padding: 8px 20px;
}

.stack {
    display: flex;
    flex-direction: column;
    gap: calc(8px + 1.5vw);
}

.stack-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
}

.stack-row.single {
    justify-content: flex-start;
}

.stack-row .plus {
    font: bold calc(18px + 2vw) "Courier New", Courier, monospace;
    color: var(--yellow);
    -webkit-text-stroke: 1px #000;
    text-stroke: 1px #000;
    text-shadow:
        1px 1px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000;
}

.headline {
    font: bold clamp(14px, 3vw, 30px) "Courier New", Courier, monospace;
    color: var(--yellow);
    -webkit-text-stroke: 1px #000;
    text-stroke: 1px #000;
    text-shadow:
        1px 1px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000;
    line-height: 1.05;
    letter-spacing: 1px;
    white-space: nowrap;
}
