#bernard {
    display: grid;

    grid-template-columns:
    minmax(220px, 0.7fr)
    minmax(500px, 1.8fr)
    minmax(250px, 0.65fr);

    align-items: center;
    gap: 12px;

    min-height: 100vh;

    padding: 8px 36px;

    background: #ffffff;

    overflow: hidden;
}

/* Progress. */

.progress-panel {
    position: relative;
    z-index: 3;

    align-self: center;
}

.eyebrow,
.date {
    margin-bottom: 24px;

    color: var(--dark-gray);

    font-size: 12px;
    letter-spacing: 4px;
}

.progress-panel h2 {
    max-width: 260px;

    font-size: 30px;
    font-weight: 300;
    line-height: 1.25;
}

.progress-value {
    margin-top: 36px;

    font-size: 72px;
    font-weight: 200;
    letter-spacing: -4px;

    white-space: nowrap;
}

.progress-line {
    width: 100%;
    max-width: 270px;
    height: 1px;

    margin-top: 24px;

    background: var(--light-gray);
}

.progress-line span {
    display: block;

    width: 0%;
    height: 100%;

    background: var(--black);

    transition: width 0.8s ease;
}

.sequence {
    margin-top: 18px;

    color: var(--dark-gray);
    font-size: 14px;

    white-space: nowrap;
}

/* Bernard presence. */

.bernard-presence {
    position: relative;
    z-index: 1;

    width: 100%;
    height: calc(100vh - 16px);

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;
}

/*
    Mantido apenas por segurança,
    embora o placeholder antigo já tenha sido removido.
*/

.face-placeholder {
    width: min(34vw, 520px);
    aspect-ratio: 0.72;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(17, 17, 17, 0.16);

    border-radius:
        50% 50% 46% 46% /
        42% 42% 58% 58%;

    color: #99958d;

    font-size: 12px;
    letter-spacing: 5px;
}

.completed-forms {
    margin-top: 28px;
    display: grid;
    gap: 7px;
}

.completed-form {
    margin: 0;
    color: var(--dark-gray);
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.completed-form:last-child {
    color: var(--black);
}
