/* --- Pill Architecture --- */
.pill-inner {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    padding: 6px 6px 6px 12px;
    gap: 16px;
}

/* --- Overlapping Avatars --- */
.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    overflow: hidden;
    margin-left: -10px; /* The overlap magic */
}

.avatar-circle:first-child { margin-left: 0; }
.avatar-circle img { width: 100%; height: 100%; object-fit: cover; }

/* --- Proof & Button --- */
.proof-label {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 !important;
}

.pill-btn {
    background: #1e2b5e; /* Deep Cora Blue */
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.pill-btn:hover { transform: scale(1.02); }