.Metadata {
    display: flex;
    flex-direction: column;

    .FormLabel {
        .form-label {
            margin-bottom: 0;
        }
    }

    .content {
        display: flex;
        align-items: center;
        gap: 4px;
        align-self: stretch;
    }

    &.horizontal {
        @include text-body-small;

        display: flex;
        flex-direction: row;
        align-items: center;
        gap: var(--padding-small, 4px);

        .form-label {
            @include text-body-small-bold;
        }

        .content {
            display: inline-flex;
            align-items: center;
        }
    }
}
