.wlf-roster-container-a467dcf5 {
    display: flex;
    flex-direction: column;
    width: 100%;
    animation: fadeInUpRoster 0.8s ease forwards;
}

.wlf-roster-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.wlf-indicator-dot {
    width: 8px;
    height: 8px;
    background-color: #d15ce2; /* Default highlight */
}

.wlf-indicator-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    font-weight: 600;
}

.wlf-roster-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 24px;
}

.wlf-headline {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    color: #111;
    flex: 1;
}

.wlf-highlight {
    color: #d15ce2;
}

.wlf-description {
    flex: 1;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    max-width: 500px;
}

.wlf-description p {
    margin: 0;
}

.wlf-roster-divider {
    height: 1px;
    background-color: #ddd;
    width: 100%;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .wlf-roster-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .wlf-description {
        max-width: 100%;
    }
}

@keyframes fadeInUpRoster {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
