/* Shared category card layout (coach-dashboard + client-dashboard) */
.business-category-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    min-height: 220px;
    padding: 1.25rem 1rem;
    text-align: center;
    box-sizing: border-box;
}

.business-category-box__media {
    flex-shrink: 0;
    width: 6rem;
    height: 6rem;
    overflow: hidden;
    border-radius: 9999px;
}

.business-category-box__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease-in-out;
}

.business-category-box:hover .business-category-box__media img {
    transform: scale(1.05);
}

.business-category-box__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 auto;
    width: 100%;
    max-width: 13rem;
    margin-top: 1rem;
    min-height: 4.5rem;
}

.business-category-box__title {
    width: 100%;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.business-category-box__meta {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-height: 1.25rem;
}

.business-category-dashboard__empty {
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    padding: 1.5rem 1rem;
    text-align: center;
    color: #4b5563;
}

.coaches-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 16rem;
    text-align: center;
    padding: 2rem 1rem;
}

.coaches-empty-state__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-top: -2rem;
}

.coaches-empty-state__lead {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #6b7280;
    max-width: 28rem;
}
