/* Score of the Week Banner */
.sotw-banner {
    background: linear-gradient(135deg, #1b2434 0%, #2d3a4e 100%);
    border-radius: 12px;
    overflow: hidden;
    margin: 0.75rem;
    border: 2px solid rgba(255,255,255,0.1);
    position: relative;
}

.sotw-banner.sotw-gold {
    border-color: #d4a017;
    box-shadow: 0 2px 16px rgba(212,160,23,0.3);
}

.sotw-banner.sotw-silver {
    border-color: #b0b0b0;
    box-shadow: 0 2px 12px rgba(176,176,176,0.25);
}

.sotw-banner.sotw-bronze {
    border-color: #cd7f32;
    box-shadow: 0 2px 12px rgba(205,127,50,0.25);
}

.sotw-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: linear-gradient(135deg, #d4a017, #f5d060);
    color: #1b2434;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    z-index: 2;
}

.sotw-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.sotw-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
}

.sotw-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.sotw-info {
    flex: 1;
    min-width: 0;
}

.sotw-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.sotw-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.25rem;
}

.sotw-meta span + span::before {
    content: "\00b7";
    margin-right: 0.5rem;
}

@media (max-width: 480px) {
    .sotw-image {
        width: 60px;
        height: 60px;
    }
    .sotw-score {
        font-size: 1.25rem;
    }
}
