.sunshine-marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: transparent;
    user-select: none;
}

.sunshine-track {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
    gap: 40px;
}

.sunshine-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sunshine-item {
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.sunshine-img-wrap {
    z-index: 2;
    width: auto;
    height: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-right: -10px;
    position: relative;
}

.sunshine-img-wrap img {
    height: var(--img-h);
    width: auto;
    max-width: none;
    object-fit: contain;
    margin-bottom: 0;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.15));
}

.sunshine-badge {
    display: flex;
    align-items: center;
    background-color: var(--badge-bg);
    color: white;
    text-decoration: none;
    padding: 8px 25px 8px 20px;
    border-radius: 0 100px 100px 0;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.sunshine-badge span {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.sunshine-dot {
    width: 12px;
    height: 12px;
    background-color: var(--dot-bg);
    border-radius: 50%;
    flex-shrink: 0;
}

@media screen and (max-width:768px){
    .sunshine-marquee-container{
        padding: 10px 0;
    }
    .sunshine-badge span {
        font-size: 12px;
    }
    .sunshine-img-wrap{
        height: 60px;
    }
}