.wcm-attendees-wrapper {
    margin: 24px 0;
}

.wcm-attendees-summary {
    margin-bottom: 12px;
    font-weight: 600;
}

.wcm-attendees-sort {
    margin-bottom: 16px;
}

.wcm-attendees-sort button {
    margin-right: 6px;
    padding: 4px 10px;
    border-radius: 5px;
    border: 1px solid #e2e2e2;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}

.wcm-attendees-sort button a,
.wcm-attendees-sort button a:visited {
  color: #000 !important; 
  text-decoration: none !important;
}




.wcm-attendees-sort button.active {
    background: #333;
    color: #ffffff;
    border-color: #333;
}

.wcm-attendees-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .wcm-attendees-wrapper.cols-auto .wcm-attendees-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wcm-attendees-wrapper.cols-2 .wcm-attendees-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wcm-attendees-wrapper.cols-3 .wcm-attendees-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.wcm-attendee-card {
    background: #ffffff;
	border:1px solid #ebebeb;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(15,23,42,0.06);
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 15px;
}

.wcm-attendee-name {
    font-weight: 700;
    color: #333;
}

.wcm-attendee-company {
    color: #333;
    font-size: 14px;
margin-top:-5px;
}

.wcm-attendee-meta {
    color: #777;
    font-size: 12px;
}

