.ribbon-banner-wrapper-4f384183 {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.ribbon-banner-container-4f384183 {
    --ribbon-border-color: #dbac7b;
    --ribbon-bg-color: #ffffff;
    
    position: relative;
    display: inline-flex;
    align-items: stretch;
    justify-content: center;
    min-width: 250px;
    /* We use drop-shadow to apply the border to the custom clipped shape */
    filter: drop-shadow(0px -3px 0px var(--ribbon-border-color))
            drop-shadow(0px 3px 0px var(--ribbon-border-color))
            drop-shadow(-3px 0px 0px var(--ribbon-border-color))
            drop-shadow(3px 0px 0px var(--ribbon-border-color));
}

.ribbon-main-4f384183 {
    background-color: var(--ribbon-bg-color);
    padding: 15px 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Create the flat ribbon shape with indented ends using clip-path */
    clip-path: polygon(
        15px 50%, /* Left indent point */
        0% 0%, 
        100% 0%, 
        calc(100% - 15px) 50%, /* Right indent point */
        100% 100%, 
        0% 100%
    );
}

.ribbon-text-4f384183 {
    font-weight: bold;
    font-size: 18px;
    display: block;
}
