/* Awards Ticker Styles */
.awards-ticker-container {
    position: absolute;
    bottom: 0px;
    left: 0;
    display: flex;
    align-items: center;
    width: 70%;
    overflow: hidden;
    background: rgba(48, 32, 115, 1);
    backdrop-filter: blur(5px);
    padding: 8px 0;
    z-index: 10;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.awards-ticker-label {
    padding: 0 15px;
    font-weight: 600;
    color: #BAFFE3;
    white-space: nowrap;
    border-right: 2px solid rgba(186, 255, 227, 0.5);
    margin-right: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 80px;
}

.awards-ticker {
    overflow: hidden;
    width: calc(100% - 110px);
    position: relative;
}

.awards-ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 90s linear infinite;
    padding-right: 50px; /* Space between the end and start for looping */
}

.awards-ticker-content span {
    display: inline-block;
    padding: 0 30px;
    color: white;
    position: relative;
    font-size: 16px;
}

.awards-ticker-content span::after {
    content: "•";
    position: absolute;
    right: -4px;
    color: #BAFFE3;
}

.awards-ticker-content span:last-child::after {
    content: "";
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .awards-ticker-container {
        bottom: 0;
        width: 100%;
        border-radius: 0;
        mask-image: none;
        -webkit-mask-image: none;
    }
    
    .awards-ticker-label {
        font-size: 12px;
        padding: 0 10px;
        min-width: 60px;
    }
    
    .awards-ticker-content span {
        font-size: 12px;
        padding: 0 20px;
    }
}
