.prt-ribbon-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 999;
}
.prt-ribbon-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}
.prt-ticker {
    display: flex;
    width: max-content;
    will-change: transform;
}
.prt-ticker-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 0;
}
.prt-item {
    display: inline-block;
    padding: 0 15px;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.prt-item:hover {
    opacity: 0.85;
    text-decoration: underline;
}
.prt-separator {
    display: inline-block;
    color: inherit;
    opacity: 0.6;
    font-weight: 300;
    margin-right: 5px;
}
.prt-close-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    border: none;
    color: white;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}
.prt-close-btn:hover {
    background: rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
    body.prt-mobile-responsive .prt-item {
        font-size: 0.85rem !important;
        padding: 0 10px;
    }
    body.prt-mobile-responsive .prt-ribbon-container {
        padding: 6px 0 !important;
    }
    .prt-close-btn {
        width: 24px;
        height: 24px;
        font-size: 20px;
        right: 5px;
    }
}
