/* Minimal, Bootstrap-first styling for the landing page */

html, body {
    height: 100%;
}

body {
    background: var(--bs-body-bg);
    color: var(--bs-body-color);
}

.hero {
    background: var(--bs-primary-bg-subtle);
    border-bottom: 1px solid var(--bs-border-color);
    padding: 4rem 0;
}

@media (max-width: 575.98px) {
    .hero {
        padding: 3rem 0;
    }
}

.icon-badge {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 1.25rem;
}

.user-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    max-width: min(32rem, 70vw);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--bs-border-color);
    background: var(--bs-body-bg);
    color: var(--bs-body-color);
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

.user-chip__email {
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
