
.diamond {
    --clippingNum: 32px;
    width: fit-content;
    max-width: 512px;
    padding: 16px calc(var(--clippingNum) + 8px);
    position: relative;
    filter: drop-shadow(0px 0px 20px var(--nimbrewBlack));
    margin-bottom: 64px;
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.diamond .diamondBG {
    background: var(--nimbrewWhite);
    clip-path: polygon(var(--clippingNum) 0%, calc(100% - var(--clippingNum)) 0%, 100% 50%, calc(100% - var(--clippingNum)) 100%, var(--clippingNum) 100%, 0% 50%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.diamond .credits{
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 8px;
}

.diamond .credits .entry  {
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0px;
    color: var(--nimbrewText);
    font-family: beaufort-pro;
    text-align: center;
    font-weight:900;
    line-height: 18px;
}
.diamond .credits .entry .tag {
    font-size: 14px;
    line-height: 14px;
    opacity: 0.5;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
    text-align: inherit;
    white-space: inherit;
}
.diamond .credits .entry .name{
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
    text-align: inherit;
    font-size: 18px;
    line-height: 18px;
    white-space: inherit;
}
.diamond .credits .entry .name .help{
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
    text-align: inherit;
    font-size: 14px;
    opacity: 0.5;
}

.diamond .disclaimer {
    color: var(--nimbrewText);
    font-family: beaufort-pro;
    font-weight: 900;
    text-align: center;
    font-size: 14px;
    width: fit-content;
}
