.discovery-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: auto;
    max-width: 100%;
    padding: 0.5rem 0.875rem 0.5rem 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 24, 39, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    overflow: visible;
}

.discovery-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    border-color: rgba(17, 24, 39, 0.25);
}

.discovery-pill__faces {
    display: flex;
    flex-shrink: 0;
    position: relative;
}

.discovery-pill__faces img {
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 9999px;
    border: 2px solid #4b5563;
    object-fit: cover;
    display: block;
    position: relative;
    background: #374151;
}

.discovery-pill__faces img:last-child {
    margin-left: -0.75rem;
    z-index: 2;
}

.discovery-pill__faces img:first-child {
    z-index: 1;
}

.discovery-pill__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    gap: 0.125rem;
}

.discovery-pill__title {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25;
    color: #111827;
    white-space: nowrap;
}

.discovery-pill__sub {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    color: #4b5563;
    white-space: nowrap;
}

.discovery-pill__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: #111827;
    color: #fff;
    transition: background 0.2s, transform 0.2s;
    margin-left: 0.25rem;
}

.discovery-pill:hover .discovery-pill__icon {
    background: #ab1e23;
    transform: translateX(2px);
}

.discovery-pill__icon svg {
    width: 0.875rem;
    height: 0.875rem;
    fill: currentColor;
}

@media (max-width: 639px) {
    .discovery-pill {
        gap: 0.5rem;
        padding: 0.4375rem 0.625rem 0.4375rem 0.4375rem;
    }
    .discovery-pill__faces img {
        width: 2.25rem;
        height: 2.25rem;
    }
    .discovery-pill__faces img:last-child {
        margin-left: -0.625rem;
    }
    .discovery-pill__title {
        font-size: 0.8125rem;
    }
    .discovery-pill__sub {
        font-size: 0.6875rem;
    }
    .discovery-pill__icon {
        width: 1.75rem;
        height: 1.75rem;
    }
    .discovery-pill__icon svg {
        width: 0.75rem;
        height: 0.75rem;
    }
}
