/* custom2.css - aparte stylesheet voor losse aanpassingen */

/* Gesloten-ribbon op projecten (overzicht + detail). */
.project-card,
.artikel-header {
    position: relative;
    overflow: hidden;
}

.project-status-ribbon {
    position: absolute;
    top: 22px;
    right: -72px;
    z-index: 0;
    width: 280px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f05d14;
    color: #fff;
    text-align: center;
    font-weight: 900;
    font-size: 19px;
    line-height: 1.1;
    padding: 0 6px 0 24px;
    transform: rotate(45deg);
    text-transform: none;
    white-space: nowrap;
    pointer-events: none;
}

.project-status-ribbon--detail {
    top: 26px;
    right: -78px;
    width: 300px;
    font-size: 24px;
    min-height: 64px;
    padding: 0 8px 0 26px;
}

@media (max-width: 991.98px) {
    .project-status-ribbon {
        width: 230px;
        right: -56px;
        top: 18px;
        font-size: 19px;
        min-height: 50px;
        padding: 0 5px 0 21px;
    }

    .project-status-ribbon--detail {
        top: 18px;
        right: -58px;
        width: 240px;
        font-size: 20px;
        min-height: 54px;
        padding: 0 6px 0 22px;
    }
}
